@charset "utf-8";
/* CSS Document */

/* これはいらないかも */
html,body { height:100%; }
*{ font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "YuGothic M", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", Osaka, "ヒラギノ角ゴ Pro W3", sans-serif; }
*, *:before, *:after {
box-sizing: border-box;  /* paddingやborderに依存しないwidth,height指定 */
}
html { font-size: 62.5%; -webkit-text-size-adjust: 100%; } /* スマホで勝手に文字が大きくなるのを制御　-webkit-text-size-adjust:100% */
body {
color: #2a2a2a;
background: #fff;
line-height: 1.65em;
letter-spacing: 0.05em;
font-size: 1.5rem; /* 15px */
font-weight: 500;
}
@media screen and (max-width: 767px) {
  body { font-size: 1.4rem; /* 14px */ }
}

/* 	ふわっと切り替え */
a {
text-decoration: none;
color: #2a2a2a;
transition: 0.5s;
}
a:hover {
text-decoration: none;
color: #2a2a2a;
opacity: 0.7;
}

dt, dd {
line-height: 1.7em;
}
ul, ol, ul li, ol li {
list-style: none;
}
img { vertical-align: top } /* 画像の下の余白を消す */

/* Pタグで改行するとlightheightが効かないのを防ぐ */
br { line-height: 1; }
h1 { margin: 0px; }

.br-pc { display: block !important; }
.br-sp { display: none !important; }
.notel { pointer-events: none; } /* 電話無効 */
@media screen and (max-width: 833px) {
  .br-pc { display: none !important; }
  .br-sp { display: block !important; }
  .notel { pointer-events: auto; } /* 電話有効 */
}

/*************************************************/
/*    drawer
/*************************************************/

@media (max-width: 767px) {
  .drawer-hamburger-icon, .drawer-hamburger-icon:before, .drawer-hamburger-icon:after {
  background: #999 !important;
  }
}
.drawer-open .drawer-hamburger:hover .drawer-hamburger-icon {
background-color: transparent !important;
}
.drawer-hamburger {
z-index: 200;
}

/*************************************************/
/*    visual
/*************************************************/

.visual {
position: relative;
padding-bottom: 110px;
overflow: hidden;
}
.visual-container {
position: relative;
width: 100%;
height: 400px;
background-image: url("../images/visual-sp.webp");
background-position: left center;
background-repeat: no-repeat;
background-size: cover;
vertical-align: bottom; /* 画像の下の余白を消す */
z-index: 50;
}
/* webp非対応 */
.no-webp .visual-container { background-image: url("../images/visual-sp.jpg"); }
.logo {
width: 110px;
height: auto;
margin: 10px 0px 0px 10px;
filter: drop-shadow(0px 0px 3px rgba(112, 147, 108, 1.0)); 
}
.visual-right {
position: absolute;
bottom: 12%;
right: 20px;
display: flex;
justify-content: flex-end;
width: 100%;
}
.visual-text-area {
width: 50%;
}
svg#all, svg#child {
width: 100%;
margin-bottom: 5px;
filter: drop-shadow(0px 3px 4px rgba(5, 21, 46, 1.0)); 
}
svg#child {
width: 90%;
margin-top: -2px;
margin-bottom: 5px;
}
svg#lets {
width: 97%;
filter: drop-shadow(0px 0px 3px rgba(0, 32, 84, 1.0)); 
}
svg#start {
margin-top: -2px;
filter: drop-shadow(0px -2px 2px rgba(255, 255, 255, 1.0)); 
}
span.path01 {
content: "";
position: absolute;
bottom: 100px;
left: -5%;
width: 100%;
height: 10%;
background: #002054;
transform: rotate(-4deg);
z-index: 10;
}
span.path02 {
content: "";
position: absolute;
bottom: 45px;
left: -5%;
width: 110%;
height: 200px;
background: #000;
transform: rotate(-4deg);
z-index: -10;
}

/* 流れるテキスト */
.loading {
position: absolute;
bottom: 60px;
left: 0px;
width: 100%;
z-index: 100;
}
.loading-wrp {
align-items: center;
color: #404a7a;
display: flex;
width: 100%;
white-space: nowrap;
z-index: 100;
transform: rotate(-4deg); /* 角度を指定 */
}
.loading-wrp ul.loop {
animation: flowing 30s linear infinite;
font-size: 5.0rem;
font-weight: 600;
letter-spacing: 0.05em;
transform: translateX(100%);
margin: 0;
padding: 0;
}
.loading-wrp ul.loop li {
font-family: "Fjalla One", sans-serif;
display: inline-block;
padding-right: 10px;
}
@keyframes flowing {
  0% { transform:translateX(0); }
  100% { transform:translateX(-100%); }
}
@media (min-width: 768px) and (max-width: 833px) {
  .visual-container {
  height: 500px;
  }
  .visual-text-area {
  width: 45%;
  }
}
@media screen and (min-width: 834px) {
  .logo {
  width: 200px;
  }
  .visual-container {
  height: 600px;
  background-image: url("../images/visual-pc.webp");
  background-position: center center;
  }
  /* webp非対応 */
  .no-webp .visual-container { background-image: url("../images/visual-pc.jpg"); }
  .visual-right {
  bottom: 50%;
  right: 50px;
  transform: translate(0%, 50%); /* positionに対して要素を中央に配置させる */
  }
  .visual-text-area {
  width: 40%;
  }
}
@media screen and (min-width: 1024px) {
  .visual {
  padding-bottom: 180px;
  }
  svg#lets {
  width: 96%;
  filter: drop-shadow(0px 2px 2px rgba(0, 32, 84, 0.6));
  }
  svg#start {
  filter: drop-shadow(0px 3px 2px rgba(255, 255, 255, 1.0)); 
  }
  span.path01 {
  bottom: 160px;
  }
  span.path02 {
  bottom: 70px;
  }
  .loading {
  bottom: 100px;
  }
  .loading-wrp ul.loop {
  font-size: 9.0rem;
  }
}
@media screen and (min-width: 1200px) {
  .logo {
  width: 250px;
  }
  .visual-container {
  height: 780px;
  }
  .visual-right {
  right: 100px;
  }
  .visual-text-area {
  width: 465px;
  }
  svg#all {
  margin-bottom: 15px;
  }
  svg#child {
  margin-bottom: 33px;
  }
  svg#lets {
  margin-bottom: 5px;
  }
  svg#start {
  margin-top: 0px;
  }
  .loading-wrp ul.loop {
  font-size: 10rem;
  }
}
@media screen and (min-width: 1366px) {
  .logo {
  margin: 15px 0px 0px 15px;
  }
  .visual-container {
  height: 900px;
  }
  .visual-right {
  right: 140px;
  bottom: 55%;
  }
  svg#all {
  margin-bottom: 25px;
  }
  svg#child {
  margin-bottom: 45px;
  }
  svg#lets {
  margin-bottom: 13px;
  }
  span.path01 {
  bottom: 165px;
  }
  span.path02 {
  bottom: 55px;
  }
  .loading {
  bottom: 95px;
  }
  .loading-wrp ul.loop {
  animation: flowing 35s linear infinite;
  font-size: 12rem;
  font-weight: 500;
  letter-spacing: 0;
  }
}
@media screen and (min-width: 1536px) {
  .visual {
  padding-bottom: 220px;
  }
  span.path01 {
  bottom: 200px;
  }
  span.path02 {
  bottom: 80px;
  }
  .loading {
  bottom: 124px;
  }
}


/*************************************************/
/*    introduction
/*************************************************/

h1.h1_title {
padding: 15px 0px 0px;
font-size: 2.6rem;
font-weight: 700;
color: #1b4383;
text-align: center;
}
h2.h2_title {
padding: 10px 0px 0px;
font-size: 2.2rem;
font-weight: 600;
color: #74500a;
text-align: center;
line-height: 130%;
}
span.title_read {
font-family: "Fjalla One", sans-serif;
display: block;
padding-bottom: 8px;
font-size: 2.3rem;
font-weight: 600;
color: #002054;
line-height: 100%;
letter-spacing: 0.1em;
}
.intro-wrp {
width: 90%;
margin: 0px auto;
}
.intro-img-wrp {
width: 100%;
}
.intro-img {
margin: 0px 0px 10px;
padding: 20px 20px 15px;
width: 100%;
background: #472b17;
border-radius: 5px;
}
.intro-img img {
width: 100%;
max-width: 800px;
height: auto;
}
.intro-img .read {
margin: 15px auto 0px;
padding: 1px 0px;
width: 100%;
max-width: 568px;
background: #774c21;
transform: skew(-20deg);
}
.intro-img .read p.intro-r {
font-size: 1.3rem;
color: #fff;
text-align: center;
transform: skew(20deg);
}
.intro-txt {
margin: 15px auto 0px;
width: 90%;
font-size: 1.5rem;
line-height: 155%;
}
@media screen and (min-width: 961px) {
  h1.h1_title {
  font-size: 3.5rem;
  }
  h2.h2_title {
  padding: 25px 0px 0px;
  font-size: 3.0rem;
  font-weight: 700;
  }
  span.title_read {
  padding-bottom: 15px;
  font-size: 3.5rem;
  }
  .intro-wrp {
  margin-top: 20px;
  }
  .intro-img {
  margin: 0px 0px 40px;
  padding: 40px 20px 35px;
  text-align: center;
  border-top-left-radius: 0px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 20px;
  }
  .intro-img .read {
  margin: 25px auto 0px;
  padding: 5px 0px;
  }
  .intro-img .read p.intro-r {
  font-size: 1.5rem;
  }
  .intro-txt {
  margin: 35px auto 30px;
  width: 75%;
  font-size: 1.6rem;
  text-align: center;
  line-height: 200%;
  }
}
@media screen and (min-width: 1200px) {
  h1.h1_title {
  font-size: 3.0rem;
  text-align: left;
  }
  h2.h2_title {
  font-size: 2.8rem;
  text-align: left;
  }
  span.title_read {
  padding-bottom: 10px;
  font-size: 3.0rem;
  text-align: left;
  }
  .intro-wrp {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  width: 100%;
  }
  .intro-img-wrp {
  width: 60%;
  max-width: 910px;
  }
  .intro-img {
  padding: 70px 20px 65px;
  }
  .intro-text {
  width: 40%;
  margin: 0px 30px;
  }
  .intro-txt {
  margin: 15px 0px 0px;
  width: 100%;
  font-size: 1.5rem;
  text-align: left;
  line-height: 170%;
  }
}
@media screen and (min-width: 1366px) {
  h1.h1_title {
  font-size: 3.5rem;
  }
  h2.h2_title {
  padding: 33px 0px 5px;
  font-size: 3.0rem;
  }
  span.title_read {
  padding-bottom: 15px;
  font-size: 3.3rem;
  letter-spacing: 0.03em;
  }
  .intro-wrp {
  justify-content: flex-start;
  }
  .intro-img {
  padding: 110px 20px 70px;
  }
  .intro-img .read {
  padding: 6px 0px;
  }
  .intro-img .read p.intro-r {
  font-size: 1.6rem;
  }
  .intro-text {
  margin: 0px 60px 0px 50px;
  }
  .intro-txt {
  font-size: 1.6rem;
  }
}
@media screen and (min-width: 1600px) {
  .intro-text {
  width: 530px;
  margin: 0px 0px 0px 90px;
  }
}

/*************************************************/
/*    detail
/*************************************************/

h2.h2_detail {
position: relative;
padding: 0px 0px 60px;
text-align: center;
font-size: 2.3rem;
font-weight: 600;
color: #264577;
letter-spacing: 0.1em;
}
h2.h2_detail:after {
content: "";
position: absolute;
bottom: 27px;
left: 50%;
width: 40px;
height: 45px;
background-image: url(../images/detail-clock.png);
background-size: 100% 100%;
transform: translate(-50%, 50%); /* positionに対して要素を中央に配置させる */
}
h2.h2_detail.map:after { background-image: url(../images/detail-map.png); }
h2.h2_detail.schedule:after { background-image: url(../images/detail-schedule.png); }
h2.h2_detail.glove:after { background-image: url(../images/detail-glove.png); }
h3.h3_detail {
font-size: 1.5rem;
font-weight: 600;
}
.detail-wrp {
margin: 40px auto 30px;
width: 90%;
max-width: 1220px;
background: #fff;
border-radius: 10px;
filter: drop-shadow(0px 0px 3px rgba(217, 217, 217, 1.0)); 
}
ul.detail-cont li.waku {
position: relative;
padding: 35px 20px 30px;
}
ul.detail-cont li.waku:after {
content: "";
position: absolute;
bottom: 0px;
left: 10%;
border-bottom: 2px solid #e0e0e0;
width: 80%;
}
ul.detail-cont li.waku:last-of-type:after {
content: none;
}
dl.practice-t {
display: flex;
flex-wrap: wrap;
width: 75%;
max-width: 200px;
margin: 15px auto 10px;
}
dl.practice-t dt,
dl.practice-t dd {
padding: 1px 0px 0px;
width: 50px;
font-size: 1.5rem;
}
dl.practice-t.schedule {
width: 82%;
max-width: 250px;
}
dl.practice-t.schedule dt,
dl.practice-t.schedule dd {
padding: 3px 0px 0px;
font-size: 1.6rem;
}
dl.practice-t dd {
width: 75%;
}
.detail-place {
display: flex;
justify-content: center;
flex-wrap: wrap;
flex-direction: column;
}
.detail-pl-cont {
margin: 0px auto;
}
.detail-map {
padding: 15px 0px 0px;
width: 100%;
max-width: 361px;
}
.detail-map img {
width: 100%;
height: auto;
}
.detail-map-txt {
margin: 15px 0px 0px;
font-size: 1.4rem;
line-height: 160%;
}
.d-map {
display: flex;
padding: 5px 0px 0px;
font-size: 1.4rem; 
}
.d-map a {
font-size: 1.3rem;
line-height: 150%;
color: #15366b;
text-decoration: underline;
word-break: break-all;
}
.d-map a:hover {
text-decoration: none;
}
/* 練習日程 */
.nittei {
margin: 0px auto;
max-width: 600px;
}
ul.detail-this {
margin: 10px 0px;
}
ul.detail-this li {
padding: 5px 0px 0px;
font-size: 1.5rem;
}
.detail-chu {
margin: 15px 0px 0px;
padding: 10px;
font-size: 1.8rem;
font-weight: 700;
color: #264577;
text-align: center;
border: 2px solid #264577;
}
ul.detail-this li:after {
content: none;
}
.table {
display: table;
border-collapse: collapse; /* 隣接する要素のborderを共有 */
width: 100%;
max-width: 900px;
margin: 30px auto 0px;
border-bottom: #666 1px dotted;
}
.table.join {
margin: 0px auto;
width: 88%;
}
.table .row {
display: table-row;
}
.table .cell {
padding: 10px 10px 0px 10px;
border: #666 1px dotted;
border-bottom: none;
}
.table .cell.th {
padding: 10px;
font-size: 1.45rem;
font-weight: 700;
background: #ffeac5;
}
.table .cell .block {
padding: 0px 0px 10px;
}
.table.join .cell {
 padding: 12px 10px 12px 10px;
}
@media screen and (min-width: 961px) {
  .detail-wrp {
  border-radius: 20px;
  }
  ul.detail-cont li.waku {
  padding: 60px 20px 60px;
  }
  dl.practice-t dt,
  dl.practice-t dd {
  font-size: 1.6rem;
  }
  .detail-map-txt {
  font-size: 1.5rem;
  }
  .nittei {
  display: flex;
  justify-content: center;
  }
  ul.detail-this li {
  font-size: 1.6rem;
  }
  .detail-chu {
  margin: 15px 0px 0px;
  padding: 20px 35px;
  font-size: 2.3rem;
  }
  .table {
  margin: 40px auto 0px;
  }
  .table .cell {
  padding: 15px 15px 10px 25px;
  font-size: 1.6rem;
  }
  .table .cell.th {
  padding: 15px 25px;
  font-size: 1.7rem;
  }
}
@media screen and (min-width: 1024px) {
  h2.h2_detail {
  padding: 0px 0px 80px;
  }
  h2.h2_detail:after {
  width: 61px;
  height: 69px;
  }
  .detail-wrp {
  margin: 80px auto 80px;
  }
  dl.practice-t {
  margin: 35px auto 10px;
  }
  .detail-place {
  margin-top: 30px;
  }
  .nittei {
  margin-top: 0px;
  }
  .nittei:first-of-type  {
  margin-top: 25px;
  }
  .detail-chu {
  padding: 25px 45px;
  }
}
@media screen and (min-width: 1200px) {
  h2.h2_detail {
  padding: 0px 0px 80px;
  font-size: 2.2rem;
  }
  .detail-wrp {
  margin: 100px auto;
  }
  ul.detail-cont {
  display: flex;
  flex-wrap: wrap;
  }
  ul.detail-cont li.waku {
  padding: 60px 20px 30px;
  }
  ul.detail-cont li.waku:nth-child(-n+3) {
  width: 33.3333%;
  }
  ul.detail-cont li.waku:last-of-type {
  padding: 100px 20px 60px;
  width: 100%;
  }
  ul.detail-cont li.waku:nth-child(-n+2):after {
  bottom: auto;
  left: auto;
  top: 8%;
  right: 0px;
  width: 2px;
  height: 90%;
  background-color: #e0e0e0;
  }
  ul.detail-cont li.waku:nth-child(3):after {
  content: none;
  }
  ul.detail-cont li.waku:last-of-type:after {
  content: "";
  position: absolute;
  bottom: auto;
  top: 50px;
  left: 5%;
  width: 90%;
  border-top: 2px solid #e0e0e0;
  border-bottom: none;
  }
  .detail-map-txt {
  margin: 20px 0px 0px;
  }
  .d-map {
  padding: 10px 0px 0px;
  }
  .detail-chu {
  padding: 20px 45px;
  font-size: 3.0rem;
  font-weight: 500;
  }
  dl.practice-t dt,
  dl.practice-t dd {
  padding: 5px 0px 0px;
  font-size: 1.5rem;
  }
  .table {
  margin: 45px auto 30px;
  }
  .table .cell {
  display: table-cell;
  }
  .table .cell {
  padding: 20px 15px 20px 35px;
  }
  .table .cell.th {
  padding: 0px;
  vertical-align: middle;
  text-align: center;
  }
  .table.join .cell {
  padding: 20px 15px 20px 30px;
  width: 70%;
  font-size: 1.7rem;
  }
  .table.join .cell.th {
  padding: 20px 15px 20px 35px;
  width: 30%;
  }
}

/*************************************************/
/*    top contact
/*************************************************/

h2.h2_tcontact {
font-family: "Fjalla One", sans-serif;
padding: 38px 0px 0px;
font-size: 3.9rem;
font-weight: 500;
color: #002054;
text-align: center;
}
.t_contact_bg {
margin: 0px auto 30px;
padding: 0px 25px 30px;
width: 100%;
max-width: 1220px;
background: #becbe3;
}
.t-contact-txt {
margin: 15px 0px;
font-size: 1.4rem;
color: #002054;
text-align: center;
}
.t-contact-area {
margin: 0px auto;
}
.t-contact-area a {
position: relative;
display: block;
margin: 0px auto;
padding: 15px;
max-width: 370px;
font-size: 1.8rem;
font-weight: 600;
text-align: center;
background: #fff;
border-radius: 100px;
}
.t-contact-area a:hover {
color: #fff;
background: #002054;
opacity: 1;
}
.t-contact-area a:before,
.t-contact-area a:after {
content: "";
position: absolute;
top: 50%;
right: 20%;
width: 14px;
height: 13px;
background-image: url(../images/arrow.png);
background-size: 100% 100%;
background-repeat: no-repeat;
transform: translate(-50%,-50%); /* positionに対して要素を中央に配置させる */
}
.t-contact-area a:after {
background-image: url(../images/arrow_white.png);
opacity: 0;
}
.t-contact-area a:hover:before {
opacity: 0;
}
.t-contact-area a:hover:after {
opacity: 1;
}
@media screen and (min-width: 1024px) {
  h2.h2_tcontact {
  padding: 90px 0px 0px;
  font-size: 5.2rem;
  }
  .t_contact_bg {
  margin: 0px auto 80px;
  padding: 0px 25px 60px;
  }
  .t-contact-txt {
  margin: 25px 0px 20px;
  font-size: 1.6rem;
  }
  .t-contact-area a {
  padding: 20px 15px;
  font-size: 2.0rem;
  }
}
@media screen and (min-width: 1300px) {
  h2.h2_tcontact {
  padding: 70px 0px 0px;
  }
  .t_contact_bg {
  margin: 0px auto 110px;
  }
}

/*************************************************/
/*    baseball photo
/*************************************************/

.baseball-photo {
margin: 0px auto;
width: 100%;
max-width: 1220px;
}
.baseball-photo img {
width: 100%;
height: auto;
}

/*************************************************/
/*    joining
/*************************************************/

h2.h2_join {
padding: 25px 0px 0px;
font-size: 2.5rem;
font-weight: 700;
color: #fff;
text-align: center;
}
h3.h3_join {
position: relative;
padding: 6px 0px 6px 35px;
font-size: 1.7rem;
font-weight: 600;
color: #74500a;
}
h3.h3_join:before {
content: "";
position: absolute;
top: 0px;
left: 20px;
width: 2px;
height: 100%;
background: #aa8b4e;
}
h4.h4_join {
display: block;
margin-top: -10px;
padding: 0px 20px;
font-size: 1.3rem;
font-weight: 600;
}
span.title_join {
font-family: "Fjalla One", sans-serif;
display: block;
padding-bottom: 8px;
font-size: 2.3rem;
font-weight: 600;
color: #a8c4f3;
line-height: 100%;
letter-spacing: 0.1em;
}
.join-bg {
margin: 30px 0px;
padding: 30px 0px;
width: 100%;
background: #002054;
}
.join-wrp {
position: relative;
margin: 0px auto;
width: 90%;
max-width: 1180px;
background: #1b3d72;
}
.join-wrp:before {
content: "";
position: absolute;
top: 0px;
left: 0px;
border-top: solid 30px #002054;
border-right: solid 30px transparent;
}
.join-wrp:after {
content: "";
position: absolute;
top: 0px;
right: 0px;
border-top: solid 30px #002054;
border-left: solid 30px transparent;
}
.join-wrp-btm {
position: relative;
margin: 0px auto;
width: 90%;
max-width: 1180px;
height: 30px;
background: #1b3d72;
}
.join-wrp-btm:before {
content: "";
position: absolute;
top: 0px;
left: 0px;
border-bottom: solid 30px #002054;
border-right: solid 30px transparent;
}
.join-wrp-btm:after {
content: "";
position: absolute;
top: 0px;
right: 0px;
border-bottom: solid 30px #002054;
border-left: solid 30px transparent;
}
.join-text01 {
margin: 20px 0px 0px;
font-size: 1.9rem;
font-weight: 600;
text-align: center;
color: #cca14c;
}
.join-text02 {
margin: 20px 10% 0px;
font-size: 1.4rem;
color: #fff;
line-height: 150%;
}
.join-text03 {
padding: 8px 20px 20px;
font-size: 1.3rem;
line-height: 155%;
}
ul.join_list {
margin: 20px auto 0px;
width: 85%;
}
ul.join_list li {
margin-bottom: 15px;
padding: 20px 0px;
width: 100%;
background: #fff;
border-radius: 10px;
filter: drop-shadow(0px 0px 5px rgba(10, 8, 109, 1.0)); 
}
ul.join_list li:last-of-type {
margin-bottom: 0px;
}
a.reserve {
display: block;
padding: 0px 20px 20px;
font-size: 1.3rem;
line-height: 150%;
color: #15366b;
text-decoration: underline;
word-break: break-all;
}
a.reserve:hover {
text-decoration: none;
}
.table-chu {
width: 88%;
margin: 10px auto 0px;
font-size: 1.3rem;
line-height: 140%;
}
@media screen and (min-width: 961px) {
  h2.h2_join {
  padding: 70px 0px 0px;
  font-size: 3.5rem;
  }
  span.title_join {
  padding-bottom: 15px;
  font-size: 3.2rem;
  font-weight: 500;
  }
  h3.h3_join {
  padding: 6px 0px 6px 40px;
  font-size: 1.8rem;
  }
  .join-bg {
  margin: 100px 0px;
  padding: 80px 0px;
  }
  .join-text01 {
  margin: 40px 0px 0px;
  font-size: 2.9rem;
  }
  .join-text02 {
  margin: 30px 10% 0px;
  font-size: 1.5rem;
  line-height: 170%;
  text-align: center;
  }
  .join-text03 {
  font-size: 1.4rem;
  line-height: 170%;
  }
  ul.join_list {
  margin: 30px auto 0px;
  }
  ul.join_list li {
  margin-bottom: 30px;
  padding: 30px 0px;
  }
  .join-wrp {
  padding-bottom: 30px;
  }
}
@media screen and (min-width: 1024px) {
  h3.h3_join {
  padding: 10px 0px 10px 60px;
  font-size: 2.5rem;
  }
  h3.h3_join:before {
  left: 40px;
  }
  h4.h4_join {
  padding: 0px 40px;
  }
  ul.join_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 90%;
  max-width: 1015px;
  margin: 50px auto 0px;
  }
  ul.join_list li {
  margin-bottom: 50px;
  width: 47.5%;
  }
  ul.join_list li:last-of-type {
  margin-bottom: 30px;
  width: 100%;
  }
  .join-wrp:before {
  border-top: solid 50px #002054;
  border-right: solid 50px transparent;
  }
  .join-wrp:after {
  border-top: solid 50px #002054;
  border-left: solid 50px transparent;
  }
  .join-wrp-btm:before {
  top: -17px;
  border-bottom: solid 50px #002054;
  border-right: solid 50px transparent;
  }
  .join-wrp-btm:after {
  border-bottom: solid 50px #002054;
  border-left: solid 50px transparent;
  }
  .join-text03 {
  padding: 20px 40px 40px;
  }
  a.reserve {
  padding: 0px 40px 20px;
  }
}
@media screen and (min-width: 1200px) {
  h3.h3_join {
  padding: 15px 0px 15px 70px;
  font-weight: 600;
  }
  h3.h3_join:before {
  left: 50px;
  }
  h4.h4_join {
  padding: 0px 50px;
  font-size: 1.5rem;
  }
  .join-bg {
  margin: 100px 0px;
  padding: 95px 0px;
  }
  .join-wrp {
  padding-bottom: 50px;
  }
  .join-wrp:before {
  border-top: solid 100px #002054;
  border-right: solid 100px transparent;
  }
  .join-wrp:after {
  border-top: solid 100px #002054;
  border-left: solid 100px transparent;
  }
  .join-wrp-btm:before {
  top: -70px;
  border-bottom: solid 100px #002054;
  border-right: solid 100px transparent;
  }
  .join-wrp-btm:after {
  top: -70px;
  border-bottom: solid 100px #002054;
  border-left: solid 100px transparent;
  }
  ul.join_list li {
  margin-bottom: 60px;
  padding: 40px 0px 0px;
  border-radius: 15px;
  }
  ul.join_list li:last-of-type {
  padding: 60px 0px 50px;
  }
  .join-text03 {
  padding: 20px 50px 50px;
  font-size: 1.5rem;
  line-height: 190%;
  }
  a.reserve {
  padding: 0px 50px 20px;
  font-size: 1.5rem;
  }
  .table-chu {
  margin: 20px auto 0px;
  font-size: 1.4rem;
  }
}

/*************************************************/
/*    staff
/*************************************************/

h2.h2_staff {
padding-left: 5px;
font-size: 1.8rem;
font-weight: 600;
color: #15366b;
line-height: 120%;
}
.staff_ttl {
display: flex;
justify-content: center;
align-items: center;
margin: 40px 0px 20px;
}
span.staff_read {
font-family: "Fjalla One", sans-serif;
display: block;
font-size: 4.5rem;
font-weight: 600;
color: #002054;
line-height: 100%;
letter-spacing: 0.1em;
}
ul.stf-wrp {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
margin: 0px auto 30px;
width: 90%;
max-width: 1234px;
}
ul.stf-wrp li {
margin: 0px 0px 15px;
width: 47%;
aspect-ratio: 1;
background: #4c6da2;
border-radius: 50%;
filter: drop-shadow(0px 0px 10px rgba(172, 192, 224, 1));
}
ul.stf-wrp li:nth-child(even) {
background: #264577;
}
.staff-photo {
margin: 9px auto 0px;
width: 58%;
max-width: 110px;
}
.staff-photo img {
width: 100%;
height: auto;
}
.staff-position,
.staff-name {
margin: 0px;
padding: 4px 0px 4px;
font-size: 1.2rem;
font-weight: 600;
line-height: 100%;
color: #fff;
text-align: center;
}
.staff-name {
padding: 0px;
font-size: 1.5rem;
}
@media (min-width: 376px) and (max-width: 430px) {
  .staff-photo {
  width: 65%;
  }
}
@media screen and (min-width: 430px) {
  ul.stf-wrp {
  width: 70%;
  }
}
@media screen and (min-width: 768px) {
  ul.stf-wrp {
  position: relative;
  width: 85%;
  }
  ul.stf-wrp:after {
  display: block;
  content: "";
  width: 30%;
  }
  ul.stf-wrp li {
  margin-bottom: 20px;
  width: 30%;
  }
  .staff-photo {
  margin-top: 15px;
  }
  .staff-position {
  padding: 10px 0px 4px;
  font-size: 1.4rem;
  }
  .staff-name {
  font-size: 1.7rem;
  }
}
@media screen and (min-width: 961px) {
  h2.h2_staff {
  font-size: 2.0rem;
  }
  .staff_ttl {
  margin: 80px 0px 25px;
  }
  span.staff_read {
  font-size: 7.0rem;
  }
  ul.stf-wrp li {
  margin: 0px 7px 45px;
  width: 23%;
  }
}
@media screen and (min-width: 1204px) {
  .staff_ttl {
  margin: 80px 0px 35px;
  }
  span.staff_read {
  font-size: 8.0rem;
  }
  ul.stf-wrp:after {
  width: 60%;
  }
}
@media screen and (min-width: 1200px) {
  ul.stf-wrp:after {
  width: 15.5%;
  }
  ul.stf-wrp {
  width: 95%;
  }
  ul.stf-wrp li {
  width: 15.5%;
  }
  .staff-position {
  padding: 7px 0px 4px;
  font-weight: 500;
  }
}
@media screen and (min-width: 1366px) {
  h2.h2_staff {
  padding-left: 20px;
  font-size: 2.7rem;
  line-height: 145%;
  }
  .staff_ttl {
  justify-content: flex-start;
  margin: 95px auto 50px;
  width: 1200px;
  }
  span.staff_read {
  font-size: 13.0rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  }
  .staff-position {
  padding: 7px 0px 4px;
  font-weight: 500;
  }
  ul.stf-wrp {
  margin: 0px auto 70px;
  }
}

/*************************************************/
/*    FAQ
/*************************************************/

h2.h2_faq {
margin-bottom: 30px;
font-size: 3.5rem;
font-weight: 600;
color: #1b4383;
text-align: center;
letter-spacing: 0.1em;
}
h3.h3_faq {
position: relative;
padding: 6px 0px 6px 15px;
font-size: 1.9rem;
font-weight: 600;
}
h3.h3_faq:before {
content: "";
position: absolute;
top: 0px;
left: 0px;
width: 4px;
height: 100%;
background: #4c6da2;
}
h4.h4_qa {
font-size: 1.6rem;
font-weight: 600;
}
h4.h4_qa.large {
font-size: 1.5rem;
line-height: 130%;
}
span.qacont {
font-size: 1.5rem;
}
.qa_bg {
margin: 0px;
padding: 35px 0px;
width: 100%;
background: #f9f8f7;
}
.qa-content {
display: grid;
grid-template-columns: 1fr;
margin: 20px auto 0px;
width: 85%;
max-width: 1220px;
}
.qa-content:first-of-type {
margin-top: 0px;
}
.qa-item {
margin-bottom: 10px;
}
/* アコーディオン */
.accordion_wrp {
margin: 0px auto;
}
.accordion {
position: relative;
margin-bottom: 18px;
border-radius: 10px;
background: #fff;
filter: drop-shadow(0px 0px 10px rgba(235,235,235,1));
}
.accordion:before,
.accordion-content:before {
content: "Q";
position: absolute;
display: flex;
justify-content: center;
align-items: center;
font-size: 1.5rem;
font-weight: 600;
color: #fff;
top: 20px;
left: 10px;
width: 11%;
max-width: 48px;
aspect-ratio: 1;
background: #152e54;
border-radius: 50%;
z-index: 10;
}
.accordion-content:before {
content: "Ａ";
top: 0px;
font-size: 1.6rem;
color: #74500a;
background: #e7e0d9;
}
.accordion-content {
display: none;
}
.accordion-header {
position: relative;
display: flex;
align-items: center;
margin: 10px 0 0;
padding: 0px 45px 0px 16%;
height: 80px;
cursor: pointer;
background: #fff;
border-radius: 10px;
transition: background .3s ease;
}
span.qaicon {
display: inline-block;
position: absolute;
top: 50%;
right: 25px;
width: 9%;
max-width: 36px;
aspect-ratio: 1;
background: #4c6da2;
border-radius: 50%;
transform: translate(50%, -50%); /* positionに対して要素を中央に配置させる */
}
span.qaicon:before,
span.qaicon:after {
content: '';
position: absolute;
display: flex;
justify-content: center;
align-items: center;
top: 2px;
right: 50%;
bottom: 0;
width: 13px;
height: 2px;
margin: auto;
background: #fff;
transform: translate(50%, -50%); /* positionに対して要素を中央に配置させる */
}
span.qaicon:after {
transform:  translate(50%, -50%) rotate(-90deg);
transition: transform 0.3s;
}
.accordion-header.active span.qaicon:after {
transform:  translate(50%, -50%) rotate(0deg);
}
.accordion-content {
position: relative;
padding: 5px 20px 18px 16%;
background: #fff;
border-radius: 10px;
}
.qa-ind {
display: block;
padding-left: 1em;
text-indent: -1em;
}


@media screen and (min-width: 425px) {
  .accordion-header {
  padding: 0px 60px 0px 16%;
  }
  .accordion:before, .accordion-content:before {
  width: 10%;
  }
  span.qaicon {
  width: 10%;
  right: 30px;
  }
}
@media screen and (min-width: 768px) {
  .accordion-header {
  padding: 0px 90px 0px 80px;
  }
  .accordion-content {
  padding: 5px 50px 30px 80px;
  }
  .accordion:before {
  top: 15px;
  left: 20px;
  font-size: 1.7rem;
  }
  .accordion-content:before {
  font-size: 1.8rem;
  left: 20px;
  }
}
@media screen and (min-width: 961px) {
  h2.h2_faq {
  margin-bottom: 70px;
  font-size: 5.0rem;
  }
  h4.h4_qa,
  h4.h4_qa.large {
  font-size: 1.8rem;
  line-height: 160%;
  }
  span.qacont {
  font-size: 1.7rem;
  }
  .qa_bg {
  padding: 80px 0px;
  }
  .qa-content {
  margin-top: 30px;
  width: 85%;
  grid-template-columns: 200px 1fr;
  gap: 10px;
  }
  .item:nth-child(1) {
  grid-column: 1 / 3; /* ヘッダーは横いっぱい */
  }
  .accordion {
  margin-bottom: 27px;
  border-radius: 15px;
  }
  .accordion-header {
  padding: 0px 90px 0px 85px;
  border-radius: 15px;
  }
  .accordion-header:before,
  .accordion-header:after {
  right: 27px;
  width: 40px;
  height: 3px;
  }
  .accordion:before,
  .accordion-content:before {
  font-size: 2.2rem;
  }
  .accordion-content:before {
  top: 0px;
  }
  .accordion-content {
  margin-top: 10px;
  padding: 0px 90px 37px 85px;
  line-height: 180%;
  border-radius: 15px;
  }
  span.qaicon:before, span.qaicon:after {
  top: 3px;
  width: 15px;
  height: 3px;
  }
}
@media screen and (min-width: 1204px) {
  h2.h2_faq {
  margin-bottom: 80px;
  font-size: 5.3rem;
  }
  h3.h3_faq {
  margin-top: 25px;
  padding: 0px 0px 0px 22px;
  font-size: 2.6rem;
  line-height: 170%;
  }
  h3.h3_faq.digi:before {
  top: 5px;
  height: 40px;
  }
  .qa-content {
  margin-top: 60px;
  grid-template-columns: 315px 1fr;
  }
  .accordion {
  margin-bottom: 20px;
  }
  .accordion-header {
  margin: 0px;
  padding: 0px 90px 0px 95px;
  height: 94px;
  }
  .accordion:before {
  top: 25px;
  left: 30px;
  }
  .accordion-content:before {
  left: 30px;
  }
  .accordion-content {
  padding: 0px 70px 37px 95px;
  }
  span.qaicon {
  right: 45px;
  }
}

/*************************************************/
/*    garally
/*************************************************/

h2.h2_garally {
position: relative;
font-family: "Fjalla One", sans-serif;
display: inline-block;
margin: 30px 0px 20px;
padding: 0 55px;
font-size: 4.5rem;
font-weight: 500;
text-align: center;
color: #4c6da2;
line-height: 100%;
letter-spacing: 0.05em;
}
h2.h2_garally:before,
h2.h2_garally:after {
content: '';
position: absolute;
top: 50%;
display: inline-block;
width: 40px;
height: 2px;
background-color: #556783;
}
h2.h2_garally:before {
left: 0;
}
h2.h2_garally:after {
right: 0;
}
.garally-cont {
margin: 0px auto;
text-align: center;
}
/* slider */
.slider-wrapper {
display: flex; /* スライドのグループを横並び */
overflow: hidden; /* はみ出たスライドを隠す */
}
.slider {
animation: scroll-left 20s infinite linear .5s both;
display: flex; /* スライド3枚を横並び */
}
/* スライド */
.slide {
width: calc(100vw / 3); /* 3はスライドの枚数 */
}
/* スライドの画像 */
.slide img {
display: block;
width: 100%;
}
/* CSSアニメーション */
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.garally-full {
width: 100%;
}
.garally-full img {
width: 100%;
height: auto;
}
@media screen and (min-width: 961px) {
  h2.h2_garally {
  margin: 60px 0px 40px;
  padding: 0 100px;
  font-size: 9.0rem;
  }
  h2.h2_garally:before,
  h2.h2_garally:after {
  width: 80px;
  }
}
@media screen and (min-width: 1200px) {
  h2.h2_garally {
  margin: 80px 0px 50px;
  padding: 0 150px;
  font-size: 11.0rem;
  }
  h2.h2_garally:before,
  h2.h2_garally:after {
  width: 120px;
  }
  .slide {
  width: calc(100vw / 4); /* 4はスライドの枚数 */
  }
}
@media screen and (min-width: 1366px) {
  h2.h2_garally {
  margin: 105px 0px 65px;
  padding: 0 190px;
  font-size: 12.0rem;
  }
  h2.h2_garally:before,
  h2.h2_garally:after {
  width: 150px;
  }
  .slide {
  width: calc(100vw / 5); /* 5はスライドの枚数 */
  }
}
@media screen and (min-width: 1920px) {
  .slide {
  width: calc(100vw / 6); /* 6はスライドの枚数 */
  }
}

/*************************************************/
/*    contact
/*************************************************/

.h1_contact {
margin: 0px;
font-size: 3.3rem;
font-weight: 600;
line-height: 100%;
color: #fff;
text-align: center;
text-shadow: -1px -1px 5px #333, 1px 1px 5px #333;
letter-spacing: 0.05em;
}
.visual-contact {
display: flex;
justify-content: center;
align-items: center;
position: relative;
width: 100%;
height: 250px;
background: url("../images/visual-contact-sp.webp") center bottom / cover no-repeat;
}
.contact-bg {
padding: 0px;
width: 100%;
background: #daebff;
}
.contact-read {
padding: 25px 40px;
font-size: 1.7rem;
text-align: center;
line-height: 200%;
}
/* webp非対応 */
.no-webp .visual_contact { background-image: url("../images/visual-contact-sp.jpg"); }
.contact-thanks {
margin: 20px 0px;
}
.contact-top {
margin: 30px auto 40px;
text-align: center;
}
.contact-top a {
display: inline-block;
padding: 20px;
font-size: 1.7rem;
background: #ccc;
border-radius: 10px;
}
/* privacy */
.privacy {
margin: 20px auto;
padding: 15px 15px;
width: 87%;
max-width: 800px;
font-size: 1.3rem;
font-weight: 600;
text-align: center;
line-height: 170%;
color: #1b3d72;
background: #eaf4ff;
border: solid 1px #a9bed6;
border-radius: 10px;
}
.privacy .privacy-ttl {
margin-bottom: 3px;
font-size: 1.5rem;
font-weight: 700;
}
/* recaptcha */
.recaptcha_bg {
margin: 0px auto;
padding: 15px 15px;
width: 87%;
max-width: 380px;
font-size: 1.1rem;
font-weight: 600;
line-height: 150%;
color: #787878;
letter-spacing: 0;
background: #dff9d8;
border-radius: 8px;
}
.recaptcha_bg.buy { background: #fce5ca; }
.recaptcha_bg a { color: #229006; }
.recaptcha_bg.buy a { color: #fa8200; }
.recaptcha_bg a:hover { color: #265420; opacity: 1; }
.recaptcha_bg.buy a:hover { color: #b95e00; opacity: 1; }
/* rechaptureロゴ非表示 */
/*
.grecaptcha-badge { visibility: hidden; }
*/
@media screen and (min-width: 961px) {
  .h1_contact {
  font-size: 6.0rem;
  }
  .visual-contact {
  height: 400px;
  }
  .contact-read {
  padding: 50px 0px 40px;
  font-size: 2.0rem;
  line-height: 180%;
  }
  .content.contact.confirm {
  padding-top: 10px;
  }
  .visual-contact {
  background: url("../images/visual-contact-pc.webp") center bottom / cover no-repeat;
  }
  /* webp非対応 */
  .no-webp .visual-contact { background-image: url("../images/visual-contact-pc.jpg"); }
  .privacy {
  margin: 20px auto 10px;
  padding: 25px 15px 20px;
  font-size: 1.4rem;
  }
  .privacy .privacy-ttl {
  margin-bottom: 10px;
  font-size: 1.7rem;
  }
}
@media screen and (min-width: 1200px) {
  .contact-read {
  padding: 60px 0px;
  font-size: 1.8rem;
  line-height: 200%;
  }
  .contact-top a {
  font-size: 1.8rem;
  }
}

/*************************************************/
/*    scroll
/*************************************************/

.scroll-block {
position: fixed;
bottom: 20px;
right: 10px;
width: 80%;
max-width:  270px;
margin: 0px auto;
background: #fff;
border-radius: 8px;
box-shadow: 0 0 6px #b1b3c9;
z-index: 100;
}
.scroll-block .up {
display: flex;
margin-bottom: 4px;
background: #f0f1fd;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
}
.scroll-block .up .scroll_logo {
position: relative;
width: 52%;
padding: 9px 0px 6px 15px;
}
.scroll-block .up .scroll_logo h2.h2_name {
position: relative;
display: inline-block;
font-size: 1.5rem;
font-weight: 800;
line-height: 120%;
background: linear-gradient(90deg, #1a264e 0%, #4286e2 100%);
background: -webkit-linear-gradient(0deg, #1a264e 0%, #4286e2 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
z-index: 10;
}
.scroll-block .up .scroll_logo:after {
content: "";
position: absolute;
top: 0px;
right: 0px;
border-top: 22px solid #d4dcf3;
border-right: 22px solid #d4dcf3;
border-bottom: 22px solid transparent;
border-left: 22px solid transparent;
}
.scroll-block .scroll_illust {
position: relative;
width: 48%;
}
.scroll-block .scroll_illust img.sc_illust {
position: absolute;
top: -11px;
left: 41%;
width: 84px;
height: auto;
transform: translate(-50%, 0%); /* positionに対して要素を中央に配置させる */
}
.fade-block {  /* 画面外 */
transform: translateX(330px);
transition: all .5s ease-in;
}
.fade-block.blockIn {  /* 画面に入った時の動き */
transform: translateX(0);
}
.inner_title {
margin: 0px auto;
padding: 8px 10px 0px;
width: 75%;
max-width: 233px;
font-size: 1.5rem;
font-weight: 700;
}
a.scroll-cell,
a.scroll-buy {
position: relative;
display: block;
margin: 3px auto 0px;
padding: 0px;
width: 75%;
height: 38px;
font-size: 1.6rem;
font-weight: 500;
line-height: 38px;
color: #fff;
text-align: center;
z-index: 0;
}
a.scroll-cell:before,
a.scroll-buy:before {
content: "";
width: 100%;
height: 100%;
position: absolute;
z-index: -1;
left: 0;
transition: 0.5s;
background: linear-gradient(to right, #78d73f, #108c00);
border-radius: 50px;
}
a.scroll-buy:before {
background: linear-gradient(to right, #ffac2d, #ff7800);
}
a.scroll-cell:after,
a.scroll-buy:after {
content: "";
width: 100%;
height: 100%;
position: absolute;
z-index: -2;
left: 0;
background: linear-gradient(to right, #50cc7f 0%, #f5d100 100%);
border-radius: 50px;
}
a.scroll-buy:after {
background: linear-gradient(to right, #ff9000 0%, #f9d423 100%);
}
a.scroll-cell:hover,
a.scroll-buy:hover {
opacity: 1;
}
a.scroll-cell:hover:before,
a.scroll-buy:hover:before {
opacity: 0;
}
.scroll-tel {
margin: 12px auto 7px;
padding: 7px 0px;
width: 75%;
max-width: 233px;
font-size: 1.4rem;
font-weight: 600;
text-align: center;
border-top: 1px solid #cacce3;
}
.scroll-tel a.sctel {
margin: 0px auto;
padding: 8px 0px 0px;
width: 75%;
}
.scroll-tel a.sctel img {
width: 100%;
height: auto;
}
.close {
position: absolute;
display: inline-block;
margin: 0;
top: 4px;
right: 4px;
padding: 1px;
font-size: 1.4rem;
font-weight: 800;
vertical-align: middle;
text-decoration: none;
text-align: center;
color: #828799;
line-height: 1;
transition: .25s;
background: #fff;
border: solid 1px transparent;
border-radius: 50%;
z-index: 1;
cursor: pointer;
}
.close:hover {
opacity: .3;
}
.viewoff {
display: none;
}

@media screen and (min-width: 1024px) {
  .scroll-block .up .scroll_logo h2.h2_name {
  font-size: 1.6rem;
  }
  .scroll-block {
  bottom: 50px;
  right: 24px;
  }
  .scroll-block .up .scroll_logo {
  padding: 11px 0px 8px 15px;
  }
  .inner_title {
  width: 85%;
  }
  a.scroll-cell,
  a.scroll-buy {
  margin: 2px auto 0px;
  width: 85%;
  font-size: 1.7rem;
  }
  .scroll-tel {
  padding: 7px 0px;
  width: 85%;
  }
  .scroll-tel a.sctel {
  display: block;
  padding: 0px;
  width: 85%;
  max-width: 200px;
  }
  .close {
  font-size: 1.6rem;
  }
}

/*************************************************/
/*    footer
/*************************************************/

footer {
margin: 25px 0px 0px;
padding: 20px 0px;
text-align: center;
width: 100%;
background: #4c6da2;
}
.fttl {
display: block;
text-align: center;
font-size: 1.7rem;
font-weight: 600;
color: #fff;
margin-bottom: 5px;
}
.copyright {
font-size: 1.1rem;
text-align: center;
color: #fff;
font-weight: 500;
line-height: 150%;
letter-spacing: 0.1em;
}
@media (min-width: 834px) {
  footer {
  margin-top: 80px;
  padding: 40px 0px;
  }
  .copyright {
  letter-spacing: 0.1em;
  font-weight: 400;
  }
}