p.check {
  font-size: 1.2em;
  color: gray;
  font-weight: bold;
 text-align:center;
}

h2.rec {
  font-size: 1.2em;
  color: gray;
  background-color: #fff5df;
  font-weight: bold;
  padding-bottom: 10px;
  text-align: left;  position: relative;
  padding: 0.6em;
  display: flex;
}

h2.rec2 {
  font-size: 1.2em;
  color: gray;
  background-color: #DFF2F5;
  font-weight: bold;
  padding-bottom: 10px;
  text-align: left;  position: relative;
  padding: 0.6em;
  display: flex;
}

/************************************
** マスキングテープ風吹き出し（下向き）
************************************/  
h3.question {
  font-size: 1.2em;
  color: gray;
  font-weight: bold;
  background-color: beige;
  padding-bottom: 10px;
  text-align: left;  position: relative;
  padding: 0.6em;
  background: -webkit-repeating-linear-gradient(-45deg, #fff5df, #fff5df 4px,#ffe4b1 3px, #ffe4b1 8px);
  background: repeating-linear-gradient(-45deg, #fff5df, #fff5df 4px,#ffe4b1 3px, #ffe4b1 8px);
  border-radius: 7px;
  display: flex;
}
h3.question:after {
  position: absolute;
  content: '';
  top: 100%;
  left: 30px;
  border: 15px solid transparent;
  border-top: 15px solid #ffebbe;
  width: 0;
  height: 0;
}    

/************************************
** 回答見出し
************************************/ 
h4.answer {
  font-size: 1.2em;
  color: gray;
  font-weight: bold;
  padding-bottom: 10px;
  text-align: left;  position: relative;
  padding: 0.6em;
  background: -webkit-repeating-linear-gradient(-45deg, #DFF2F5, #DFF2F5 4px,#BCE2E8 3px, #BCE2E8 8px);
  background: repeating-linear-gradient(-45deg, #DFF2F5, #DFF2F5 4px,#BCE2E8 3px, #BCE2E8 8px);
  border-radius: 7px;
  display: flex;
}


.dotline{
  border-bottom: dotted 3px orange;
} 

/*引用*/
.boxreferences {
  background: #f3f3f3;
  padding: 15px;
}

.boxreferences p {
  line-height: 1.5;
  font-size:0.8em;
  text-align: center;
}

.img { width: 100%; }

h4.ma {
  font-size: 1.2em;
  color: gray;
  background-color: #fff5df;
  font-weight: bold;
  padding-bottom: 10px;
  text-align: left;  position: relative;
  padding: 0.6em;
  display: flex;
}

/************************************
** 吹き出し罫線（下向き）
************************************/ 
    h2.keisen {
    position: relative;
    padding: 0.5rem 0;
    margin-bottom: 0.2rem;
    border-bottom: 5px solid;
    color: black;
    font-weight: bold;
    font-size: 26px;    
}

h2.keisen:before,
h2.keisen:after {
    position: absolute;
    top: 100%;
    left: 50%;
    content: "";
    height: 0;
    width: 0;
}
h2.keisen:before {
    border: 16px solid;
    border-color: transparent;
    border-top-color: black;
    margin-left: -16px;
}
h2.keisen:after {
    border: 10px solid;
    border-color: transparent;
    border-top-color: white;
    margin-left: -10px;
}
/* 吹き出し本体 */
.balloon1{
  position: relative;
  padding: 20px;
  border-radius: 10px;
  background-color: #d7ebfe;
  margin-left: 110px;          /* 左に余白を設ける */
}
/* 画像 - 絶対配置で左上に配置 */
.balloon1 .icon{
  position: absolute;
  left: -110px;
  top: 0;
}
.balloon1 .icon img{
  width: 100%;
  height: auto;
  border: solid 3px #d7ebfe;
  border-radius: 50%;
}

.balloon2 .icon img{
  width: 100%;
  height: auto;
  border: solid 3px #d7ebfe;
  border-radius: 50%;
}

/* 三角アイコン */
.balloon1::before{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: -15px;
  top: 20px;
  border-right: 15px solid #d7ebfe;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}

/* 吹き出し本体 */
.balloon2{
  position: relative;
  padding: 20px;
  border-radius: 10px;
  background-color: #d7ebfe;
  margin-right: 110px;          /* 右に余白を設ける */
}
/* 画像 - 絶対配置で右上に配置 */
.balloon2 .icon{
  position: absolute;
  right: -110px;
  top: 0;
op: 0;
}
/* 三角アイコン */
.balloon2::before{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  right: -15px;
  top: 20px;
  border-left: 15px solid #d7ebfe;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}

.balloon1 .icon {
  float: left;
  margin-right: -90px;
  width: 80px;
}

.balloon1 .icon img{
  width: 100%;
  height: auto;
  border: solid 3px #d7ebfe;
  border-radius: 50%;
}

.balloon2 .icon {
  float: right;
  margin: 0 0 15px 15px;
  width: 80px;
}

.balloon2 .icon img{
  width: 100%;
  height: auto;
  border: solid 3px #d7ebfe;
  border-radius: 50%;
}


.modal-wrapper {
  z-index: 999;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 40px 10px;
  text-align: center;
}

.modal-button {
    color: #4f96f6;
    background-color: #eeeeee;
    font-weight: bold;
    text-align: center;
    cursor :pointer;
    transition: all 0.3s;
    display: block;
    margin-top: 40px;
    margin-bottom: 1px;
    padding: 12px 2px;
    max-width:300px;
    text-decoration: none;
}

.modal-button:active {
  /*ボタンを押したとき*/
  -webkit-transform: translateY(2px);
  transform: translateY(2px);/*下に動く*/

}

/*アイコンを表示*/
/* .modal-button:after {
font-family: "Font Awesome 5 Free";
  content: "\f2d0";
    padding-left: 8px;
} */

/*ラベルホバー時*/
.modal-button:hover {
  color: #FFFFFF;
  background-color: #4f96f6;
  transition: .6s;
}

.modal-wrapper:not(:target) {
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}

.modal-wrapper:target {
  opacity: 1;
  visibility: visible;
  transition: opacity .4s, visibility .4s;
}

.modal-wrapper::after {
  display: inline-block;
  height: 100%;
  margin-left: -.05em;
  vertical-align: middle;
  content: ""
}

.modal-wrapper .modal-window {
  box-sizing: border-box;
  display: inline-block;
  z-index: 20;
  position: relative;
  width: 70%;
  max-width: 600px;
  padding: 10px 30px 25px;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, .6);
  vertical-align: middle
}

.modal-wrapper .modal-window .modal-content {
  max-height: 80vh;
  overflow-y: auto;
  text-align: left
}

.modal_title {
  font-size: 1.5em;
	position: relative;
	overflow: hidden;
  padding: 0;
}

.modal_title::before,
.modal_title::after{
	content: "";
	position: absolute;
	bottom: 0;
}

/* h2 プライマリカラー*/
.modal_title:before{
	border-bottom: 4px solid #6bb6ff;
	width: 100%;
}
/* h2 セカンダリカラー*/
.modal_title:after{
	border-bottom: 4px solid #c8e4ff;
	width: 100%;
}

.modal-content p {
  margin: 10px 0 0 0;
}

.modal-overlay {
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .8)
}

.modal-wrapper .modal-close {
  z-index: 20;
  position: absolute;
  top: 5px;
  right: 5px;
  width: 35px;
  color: #95979c !important;
  font-size: 30px;
  font-weight: 700;
  line-height: 35px;
  text-align: center;
  text-decoration: none;
  text-indent: 0
}

.modal-wrapper .modal-close:hover {
  color: #2b2e38 !important
}
.home--section-heading--en{font-size:0.875rem}

.navbar-brand img {
  width: 48px;
  height: 48px;
}

.btn .img.-logo {
  width: 40px;
  height: 40px;
}

.btn .img.-sns {
  width: 32px;
  height: 32px;
}