@charset "utf-8";

html {
  margin: 0;
}

body {
  margin: 0;
}
.bg_aqua {
  background-color: #F3F7FF;
}

/* pc//* 消去*/
@media all and (min-width:769px){
  .sp {
	  display: none;
  }
}
 /* sp*//* 消去*/
 @media (max-width:768px) {
  .pc {
	  display: none;
  }
 }

 
/* @media screen and (min-width: 960px) {
  .wrapper {
    max-width: 1020px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 959px) {
  .wrapper {
    max-width: 100%;
    margin: 0 auto;
  }
} */

/* main ////////////////////////*/

.main {
  width: 100%;
  height: 400px;
  background: #fff;
  margin: 30px auto;
  background-image: url(https://glovemusashi.itembox.design/item/assets/img/lp/common/tel_main_pc.jpg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: bottom 0% right 0%;
}
h2 {
  color: #fff;
  background-color: #243b75;
  font-size: 48px;
  padding: 5px;
  text-align: center;
}
 
.main_text {
  max-width: 50%;
  text-align: center;
}
.main_tel {
  display: flex;
  align-items: center;
  margin: 20px auto;
}
.icon {
  width: 20%;
  height: auto;
  align-items: center;
  margin-left: 30px;
}
.anime {
  animation: poyopoyo 5s ease-out infinite;
  opacity: 1;
}
@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1.0);
  }
  50%, 70% {
    transform: scale(0.95);
  }
}

.icon img {
  width: 50%;
}
.tel_no {
  width: 80%;
}
h1 {
  font-size: 46px;
  color:#243b75;
  text-align: left;
  font-weight: bold;
}
.main_text2 {
  text-align: center;
}
h3 {
  font-size: 24px;
  margin-top: 0;
  margin-bottom: 5px;
}
.main_text2 p {
  font-size: 18px;
  margin-bottom: 5px;
  line-height: 20px;
}
.move_img {
  animation: popup 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes popup {
  0% {
    transform: translateY(40px) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1.0);
  }
  80%, 100% {
    opacity: 1;
  }
}

/* @media screen and (max-width: 1290px) {
  .main {
    background-image: url(https://glovemusashi.itembox.design/item/assets/img/lp/common/tel_main_pc.jpg);
    background-repeat: no-repeat;
    background-position: right;
    background-size: 90%;
    height: auto;
  }
  .icon {
    width: 20%;
    margin-left: 30px;
  }
  .tel_no {
    width: 80%;
    text-decoration: none;
  }
  .main a {
    text-decoration: none;
  }
} */

@media screen and (max-width: 960px) {
  h2 {
    font-size: 36px;
    margin: 30px 0;
  }
  .icon {
    width: 20%;
    height: auto;
    margin-left: 0;
  }
  .tel_no {
    width: 80%;
  }
  h1 {
    font-size: 36px;
  }
  h3 {
    font-size: 22px;
    margin-top: 0;
  }
  .main_text p {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  .main {
    width: 100%;
    height: 550px;
    background-image: url(https://glovemusashi.itembox.design/item/assets/img/lp/common/tel_main_sp.jpg);
    background-position: bottom;
    z-index: 999;

  }
  .main_text {
    max-width: 100%;
    display: block;
    margin: 0 auto;
  }
  h2 {
    font-size: 28px;
    margin: 30px 0;
  }
  .main_tel {
    display: inline-flex;
    align-items: center;
    margin: 0 auto;
  }
  .icon {
    width: 20%;
    height: auto;
    align-items: center;
    margin-left: 30px;
  }
  .icon img {
    width: 40%;
  }
  .tel_no {
    width: 80%;
  }
  h1 {
    font-size: 26px;
    color:#243b75;
  }
  .main_text2 {
    text-align: center;
  }
  h3 {
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 5px;
  }
  .main_text p {
    font-size: 16px;
    margin-bottom: 5px;
  }  
}

@media screen and (max-width: 468px) {
  h1 {
    font-size: 24px;
  }
}




/* howto ////////////////////////*/


.howto {
  text-align: center;
  padding: 30px;
  margin: 0 auto;
}
.howto_inner {
  max-width: 1020px;
  margin: 0 auto;
}
.howto_title {
  color: #243b75;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
}
.howto_flow {
  display: flex;
  margin: 20px auto;
  margin-top: 50px;
  align-items: start;
}
.howto_no {
  width:15%;
  overflow: hidden;
  position: relative;
}
.howto_no img{
  width: 100px;
}
.howto_ttl {
  width: 55%;
  font-size: 20px;
  font-weight: bold;
  color:#243b75;
  text-align: left;
  align-items: center;
}
.howto_p {
  font-size: 16px;
  font-weight: normal;
}
.howto_img {
  width: 30%;
  margin: 0 5px;
}
.howto_img img {
  width: 100%;
}

@media screen and (max-width:960px) {
  .howto_title {
    font-size: 24px;
  }
  .howto_no {
    width:20%;
  }
  .howto_no img{
    width: 80%;
  }
  .howto_ttl {
    width: 80%;
  }
}

@media screen and (max-width:768px) {
  .howto_flow {
    flex-direction: column;
    align-items: center;
  }
  .howto_ttl{
    text-align: center;
  }
  .howto_p {
    text-align: center;
  }
  .howto_img {
    width: 50%;
  }
}

@media screen and (max-width:468px) {
  .howto_img {
    width: 100%;
  }
}


/* qa ////////////////////////*/



.qa {
  background-color: #fff;
  padding: 30px;
}
.qa_inner {
  max-width: 1020px;
  margin: 0 auto;
}
.title {
  border: 3px solid #243b75;
  background: #fff;
  padding: 10px 30px;
  width: 220px;
  margin: 0 auto;
  text-align: center;
}
.title_main {
  color: #243b75;
  font-size: 24px;
  font-weight: bold;
}
.title_sub {
  color: #243b75;
  font-size: 16px;
}
.qa_sec {
  display: flex;
  margin: 50px auto;
}
.qa_no {
  width: 10%;
  display: flex;
  font-size: 24px;
  font-weight: bold;
  background-color: #FBBFBF;
  border-radius: 5px;
  padding: 5px 10px;
  align-items: center;
  justify-content: center;
}
.qa_q {
  width: 80%;
  font-size: 24px;
  font-weight: bold;
  padding-left: 5px;
  margin-left: 20px;
  line-height: 32px;
}
.qa_a {
  font-size: 20px;
  font-weight: normal;
  margin: 10px 0 0 10px;
  line-height: 24px;
}

@media screen and (max-width:768px) {
  .qa_no {
    width: 20%;
  }
  .qa_q {
    width: 80%;
    font-size: 20px;
  }
  .qa_a {
    font-size: 16px;
  }
}


/* voice ////////////////////////*/


.voice {
  text-align: center;
  padding: 30px;
}
.voice_inner {
  max-width: 1020px;
  margin: 0 auto;
}
.voice_sec {
  display: flex;
  margin: 30px auto;
  justify-content: center;
}
.voice_img {
  width: 20%;
  margin: 0 10px;
}

.voice_box {
  display: flex;
  align-items: center;
  position: relative;
  width: 60%;
  margin-left: 15px;
  padding: .8em 1.2em;
  border-radius: 5px;
  background-color: #fff;
  color: #000;
  text-align: left;
}

.voice_box:before {
  position: absolute;
  left: -15px;
  width: 15px;
  height: 30px;
  background-color: #fff;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
  content: '';
}

.voice_box p {
  font-size: 24px;
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 768px) {
  .voice_sec {
    flex-direction: column;
    align-items: center;
  }
  .voice_img {
    width: 30%;
  }
  .voice_box {
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
    margin-top: 15px;
    padding: .8em 1.2em;
    border-radius: 5px;
    background-color: #ffffff;
    color: #000;
  }
  .voice_box:before {
    position: absolute;
    top: -15px;
    left: 30%;
    width: 30px;
    height: 15px;
    background-color: #ffffff;
    clip-path: polygon(50% 0, 0 100%, 100% 100%);
    content: '';
  }
}


/* foot ////////////////////////*/


.foot {
  background-color: #fff;
  padding: 30px;
  text-align: center;
}
.foot_inner {
  max-width: 1020px;
  margin: 0 auto;
}
.foot a {
  text-decoration: none;
  color: #000;
}
.foot_maintext p {
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  background-color: #A80B0B;
  text-align: center;
}
.foot_tel {
  display: flex;
  margin: 20px auto;
  max-width: 80%;
  align-items: center;
}
.foot_icon {
  width: 30%;
  text-align: right;
  margin-right: 20px;
}
.foot_icon img {
  width: 30%;
}
.foot_tel_no {
  width: 70%;
}
.foot_tel_no h1 {
  font-size: 48px;
  color:#A80B0B;
  text-align: left;
}
.foot_p {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
.foot_logo {
  text-align: center;
  margin: 30px auto;
}
.foot_add {
  font-size: 20px;
  text-align: center;
}
.foot_map {
  display: flex;
  margin: 30px auto;
}
.map_img {
  width: 50%;
  padding: 5px;
  text-align: right;
}
.map_img img{
  width: 60%;
}
.add {
  display: block;
  width: 50%;
  padding: 5px;
  text-align: left;
}
.add img {
  width: 50%;
}
.add p {
  text-align: left;
  font-size: 14px;
}

@media screen and (max-width:960px) {
  .foot_maintext p {
    font-size: 26px;
  }
  .foot_icon {
    width: 20%;
    text-align: right;
  }
  .foot_tel {
    max-width: 50%;
  }
  .foot_tel_no {
    width: 80%;
  }
  .foot_tel_no h1 {
    font-size: 32px;
  }
  .map_img img{
    width: 100%;
  }
  .add img {
    width: 100%;
  }
}

@media screen and (max-width:768px) {
  .foot_maintext p {
    font-size: 20px;
  }
  .foot_tel {
    max-width: 80%;
  }
  .foot_icon {
    width: 10%;
  }
  .foot_icon img {
    width: 70%;
  }
  .foot_tel_no {
    width: 90%;
  }
  .foot_tel_no h1 {
    font-size: 30px;
  }
  .foot_p {
    font-size: 16px;
  }
}

@media screen and (max-width: 468px) {
  .foot_tel {
    width: 100%;
  }
  .foot_icon img {
    width: 100%;
  }
  .foot_tel_no h1 {
    font-size: 26px;
  }
  .foot_map {
    flex-direction: column;
  }
  .map_img {
    width: 100%;
    text-align: center;
  }
  .map_img img{
    width: 100%;
  }
  .add {
    width: 100%;
    text-align: center;
  }
  .add img {
    width: 100%;
  }
}