/*----------------------------------------
	all
----------------------------------------*/

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: '游ゴシック体', 'Yu Gothic', YuGothic, 'メイリオ', Meiryo, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ ゴシック', sans-serif;
    font-size: 62.5%;
    color: #333;
    -webkit-text-size-adjust: 100%;
    line-height: 1;
    font-weight: 500;
    scroll-behavior: smooth;
}

body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: 1.6rem;
}

a {
    text-decoration: none;
    color: #000;
}

img {
    vertical-align: bottom;
    height: auto;
}

#container {
    overflow: hidden;
}

.buttonibch {
  background-color: #08F;
  border: solid 2px #191970;
  color: #191970;
  border-radius: 20px;
  padding: 10px 30px;
  text-decoration: none;
  font-size: 1em;
  box-shadow: 0 5px 0 #191970;
  display: inline-block;
  transition: .3s;
}
.buttonibch:hover {
  color: #191970;
  transform: translateY(5px);
  box-shadow: 0 0 0 #191970;
}


/*----------------------------------------
	footer_contact
----------------------------------------*/
.footer_pagetop_button_add {
    position: absolute;
    right: 24%;
    top: -53px;
    z-index: 999;
}

.footer_contact_add:before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgb(199, 54, 31);
    background: linear-gradient(90deg, rgba(199, 54, 31, 0.69) 0%, rgba(199, 54, 31, 0.69) 0%, rgba(244, 192, 64, 0.69) 100%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.footer_contact_button_addb {
    display: block;
    width: 400px;
    height: 73px;
    background-color: #87ceeb;
    box-shadow: 0 3px rgb(135 206 250);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 2px;
    font-size: 1.6rem;
    letter-spacing: 0.08em;
    color: #fff;
    transition: 0.3s;
}

.footer_contact_button_addb:hover {
    -ms-transform: translateY(5px);
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
    border-bottom: none;
    box-shadow: none;
}

.footer_contact_button_addb:after {
    content: "";
    background: url(../images/white_arrow.svg) no-repeat;
    width: 18px;
    height: 18px;
    display: inline-block;
    background-size: 100%;
    vertical-align: middle;
    margin-left: 10px;
}

@media screen and (max-width: 768px) {

    .footer_contact_button_add {
        width: 400px;
        height: 45px;
    }
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1em;
}

th, td {
  padding: 0.5em;
  border: 2px solid black;
  text-align: left;
}

/* レスポンシブ対応 */
@media screen and (min-width: 481px) {
  table {
    display:  flex;
    overflow-x: auto;
    white-space: nowrap;
  }
}

@media screen and (min-width: 640px) {
  table {
    display:  block;
    overflow-x: auto;
    white-space: nowrap;
  }
}



.text_ib1 {
    text-align: left;
    margin-bottom: 1em;
    line-height: 1.5; 
}
.text_ib2 {
    text-align: left;
    line-height: 1.5; 
}
.text_ib3 {
    text-align: left;
    text-indent: -1em;
    padding-left: 1em;
    line-height: 1.5; 
}
.text_ib4 {
    text-align: left;
    text-indent: -2em;
    padding-left: 1em;
    line-height: 1.5; 
}
.text_ib5 {
    text-align: left;
    font-size: 1.2em;
    margin-bottom: 1em;
    margin-top: 1em;
}
.text_ib6 {
    text-align: left;
    text-indent: -3em;
    padding-left: 1em;
    line-height: 1.5; 
}
.text_ib7 {
    text-align: left;
    margin-bottom: 0.5em;
    line-height:   1.5; 
    margin-top:  1.5em;
}

.checkbox {
  inline-size: 2.0rem;
  block-size: 2.0rem;
 }


.box {
    padding: 0.5em 0.5em;
    margin: 1em 0;
    width: 333px;
    height:30px;
    font-weight: bold;
    color: white;/*文字色*/
    background: #FFF;
    border: solid 3px #6091d3;/*線*/
    background: #cde4ff;
    border-radius: 10px;/*角の丸み*/
    line-height: 1.5; 
}
.box p {
    margin: 0; 
    padding: 0;
}

.btn-icon-arrow {
  background: #2196f3;
  color: white;
  border: none;
  padding: 14px 32px 14px 36px;
  font-size: 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  
  .arrow {
    transition: transform 0.3s ease;
    display: inline-block;
  }
  
  &:hover {
    background: #1976d2;
    padding-right: 28px;
    
    .arrow {
      transform: translateX(5px);
    }
  }
}

