/*ボックスサイズ算出をborer-boxに */
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html, body{
    margin: 0;         /* 余白の削除 */
    padding: 0;        /* 余白の削除 */
    width: 100%;
    height: 100%;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;/*rem算出をしやすくするために*/
}

//----------------------------------------
// タイトル
//----------------------------------------
   .title-container {
    flex-grow: 1;
    
    .site-title {
      margin: 0;
      padding: 10px 20px;
      vertical-align: middle;
      line-height: 30px;
    
      .title {
/*        display: inline-block; */
        width: 90%;
        img { vertical-align: middle; margin-top: -3px; width: 50%; height: 50%;}
     
       .subtitle {
/*        display: inline-block; */
        padding-left: 15px;
        font-weight: bold;
      }
      }
      }
      }

body {
  font-size: 14px;
  line-height: 1.6;
  font-family: "游ゴシック体", YuGothic, "Yu Gothic M", "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN W3", HiraKakuProN-W3, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "M+PLUS+1p", "メイリオ", Meiryo, Osaka, Roboto, "Helvetica Neue", HelveticaNeue, Helvetica, Arial, "Segoe UI", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  background: #fafafa; 
}

@font-face {
  body {
    font-family: "Yu Gothic M";
    src: local("Yu Gothic Medium"); } }

@font-face {
  body {
    font-family: "Yu Gothic M";
    src: local("Yu Gothic Bold");
    font-weight: bold; } }

* {
  box-sizing: border-box; }


.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
/* border-radius: 0.5rem; */
}

.btn--orange,
a.btn--orange {
  color: #fff;
  background-color: rgb(235, 85, 5);
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.2), inset 0 -2px 0 rgba(0, 0, 0, 0.05);
  border: solid 2px #cccccc;/*線色*/
/*  background-color: #eb5505; auオレンジ */
}

.btn--orange:hover,
a.btn--orange:hover {
  color: #eff;
  background: rgb(250, 85, 5);
/*  background: #f56500; */
}

.btn--orange:active {
  /*ボタンを押したとき*/
  -webkit-transform: translateY(2px);
  transform: translateY(2px);/*下に動く*/
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.30);
}

.btn--pink,
a.btn--pink {
  color: #fff;
  background-color: rgb(228, 0, 127);
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.2), inset 0 -2px 0 rgba(0, 0, 0, 0.05);
  border: solid 2px #cccccc;/*線色*/
/*  background-color:  #e4007f;  UQ mobileピンク */
}

.btn--pink:hover,
a.btn--pink:hover {
  color: #eff;
  background: rgb(242, 53, 149);
/*  background: #f2359f; */
}

.btn--pink:active {
  /*ボタンを押したとき*/
  -webkit-transform: translateY(2px);
  transform: translateY(2px);/*下に動く*/
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.30);
}


.btn--radius,
a.btn--radius {
   border-radius: 1vh;
   /* border-radius: 100vh; */
}

.fa-position-left {
  position: absolute;
  top: calc(50% - .5em);
  left: 1rem;
}

.main {
  text-align: center;
}

.line--orange {
  border: none;
  border-bottom: 1px dashed rgb(235, 85, 5);
  margin: 2em 0;
}

.line--gray {
  border: none;
  border-bottom: 1px solid rgb(204, 204, 204);
  margin: 0.5em 0;
}

/* タイトルロゴ表示用 */
.resizeimage {
   margin: 2em auto 1em;
   width: 50%;
   max-width: 5em; /* 最大幅 */
   min-width: 2em; /* 最小幅 */
}
.resizeimage  object{
    width: 100%;
}

/* 新ロゴ表示用 */
img {
  width: 50%;
  height: auto;
}

h1 {
    font-size: 19px;
    margin: 0.5em 0;
    font-weight: 700;
}

h2 {
    font-size: 16px;
    margin: 2em 0 0.2em;
    font-weight: 600;
}



.question {
    font-size: 14px;
    margin: 1em 1em 0.1em;
    font-weight: 600;
}

.answer {
    font-size: 14px;
    margin: 0.2em 2em 1em;
    font-weight: 300;
    color: dimgray
}