@charset "utf-8";
/* 共通のスタイルシート Common style sheet -> common */


@media screen and (min-width: 768px) {
  html {
    font-size: 40px;
  }
}
@media screen and (min-width: 1024px) {
  html {
    font-size: 30px;
  }
}

/* 画面全体の大きさ wrapper -> warp */
.warp {
  max-width: 750px;
  margin: 0 auto;
}

/* 画像の大きさ基本設定 Image box -> img-b */
.img-b {
  width: 100%;
  display: block;
}

/* ---------- アコーディオン効果 accordion -> acc ---------- */
.acc-check {
  display: none;
}
.acc-label {
  display: block;
}
.acc-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.acc-check:checked + .acc-label + .acc-content {
  max-height: 5000px;
  transition: all 1s ease-in;
}

/* ---------- 3段タブ切り替えのスタイル tab structure -> tabs ---------- */
/* タブの見出し (3段タブの設定) */
.tabs-head3 {
  width: calc(100% / 3);
  display: block;
  float: left;
}

/* ラジオボタンを隠して見出しの画像表示　上部オファー */
input[name="tabs_input1"] {
  display: none;
}
/* タブ見出しの画像、表示と非表示 */
.tab-on {
  display: none;
}
.tab-off {
  display: block;
  width: 100%;
}
/* タブ切り替えの中身 */
.tabs-content3 {
  position: relative;
  display: none;
  clear: both;
  overflow: hidden;
}
.tabs-content-form1 {
  position: absolute;
  width: 100%;
  /* margin: 0 auto; */
  top: 68%;
  right: 0;
}
.tabs-content-form2 {
  position: absolute;
  width: 100%;
  /* margin: 0 auto; */
  top: 68%;
  right: 0;
}
.tabs-content-form3 {
  position: absolute;
  width: 100%;
  /* margin: 0 auto; */
  top: 68%;
  right: 0;
}

/* 選択した時の3段タブ見出しの表示 */
input:checked + .tabs-head3 > .tab-on {
  display: block;
  width: 100%;
}
input:checked + .tabs-head3 > .tab-off {
  display: none;
}

/* 選択した時のタブのコンテンツの表示 (前半) */
#tabs1:checked ~ #tabs1-content,
#tabs2:checked ~ #tabs2-content,
#tabs3:checked ~ #tabs3-content{
  display: block;
}


/* ---------- 2段タブ切り替えのスタイル tab structure -> tabs ---------- */
/* タブの見出し (2段タブの設定) */
.tabs-head2 {
  width: calc(100% / 2);
  display: block;
  float: left;
}

/* ラジオボタンを隠して見出しの画像表示 下部オファー */
input[name="tabs_input2"] {
  display: none;
}
/* タブ見出しの画像、表示と非表示 */
.tab-on {
  display: none;
}
.tab-off {
  display: block;
  width: 100%;
}
/* タブ切り替えの中身 */
.tabs-content2 {
  position: relative;
  display: none;
  clear: both;
  overflow: hidden;
}
.tabs-content-form4 {
  position: absolute;
  width: 100%;
  /* margin: 0 auto; */
  top: 68%;
  right: 0;
}
.tabs-content-form5 {
  position: absolute;
  width: 100%;
  /* margin: 0 auto; */
  top: 68%;
  right: 0;
}

/* 選択した時の2段タブ見出しの表示 */
input:checked + .tabs-head2 > .tab-on {
  display: block;
  width: 100%;
}
input:checked + .tabs-head2 > .tab-off {
  display: none;
}

/* 選択した時のタブのコンテンツの表示 (前半) */
#tabs4:checked ~ #tabs4-content,
#tabs5:checked ~ #tabs5-content {
  display: block;
}


/* ---------- フッター ---------- */
.footer-text {
  text-align: center;
  font-size: 0.9rem;
}
a:-webkit-any-link {
  color: -webkit-link;
  cursor: pointer;
  text-decoration: underline;
}
/* 画面サイズが 750px まではここを読み込む */
@media screen and (max-width: 750px) {
  .footer-text {
    text-align: center;
    font-size: 1.92vw;
    line-height: 1.7;
  }
   /* プルダウン1  */


.selectdiv1 {
  position:absolute; 
    top: 61.5%;
    left:1.5%; 
    min-width: 100px;
  
  
}

select::-ms-expand {
display: none;
}

.selectdiv1:after {
  content: '<>';
  font: 17px "Consolas", monospace;
  color: #333;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  right: 11px;
  
  top: 18px;
  padding: 0 0 2px;
  border-bottom: 1px solid #999;
  
  position: absolute;
  pointer-events: none;
}

.selectdiv1 select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  
  display: block;
  width: 80%;
  max-width: 320px;
  height: 40px;
  float: right;
  margin: 10px 0px;
  padding: 0px 14px;
  font-size: 12px;
  line-height: 1.75;
  color: #333;
  background-color: #ffffff;
  background-image: none;
  border: 1px solid #cccccc;
  -ms-word-break: normal;
  word-break: normal;
}


/* プルダウン2  */
.selectdiv2 {
  position:absolute; 
    top: 61.5%;
    left:32.5%; 
    min-width: 100px;
  
  
}

select::-ms-expand {
display: none;
}

.selectdiv2:after {
  content: '<>';
  font: 17px "Consolas", monospace;
  color: #333;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  right: 11px;
  
  top: 18px;
  padding: 0 0 2px;
  border-bottom: 1px solid #999;
  
  position: absolute;
  pointer-events: none;
}

.selectdiv2 select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  
  display: block;
  width: 80%;
  max-width: 320px;
  height: 40px;
  float: right;
  margin: 10px 0px;
  padding: 0px 14px;
  font-size: 12px;
  line-height: 1.75;
  color: #333;
  background-color: #ffffff;
  background-image: none;
  border: 1px solid #cccccc;
  -ms-word-break: normal;
  word-break: normal;
}
/* プルダウン3  */
.selectdiv3 {
  position:absolute; 
    top: 61.5%;
    left:63%; 
    min-width: 100px;
  
  
}

select::-ms-expand {
display: none;
}

.selectdiv3:after {
  content: '<>';
  font: 17px "Consolas", monospace;
  color: #333;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  right: 11px;
  
  top: 18px;
  padding: 0 0 2px;
  border-bottom: 1px solid #999;
  
  position: absolute;
  pointer-events: none;
}

.selectdiv3 select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  
  display: block;
  width: 80%;
  max-width: 320px;
  height: 40px;
  float: right;
  margin: 10px 0px;
  padding: 0px 14px;
  font-size: 12px;
  line-height: 1.75;
  color: #333;
  background-color: #ffffff;
  background-image: none;
  border: 1px solid #cccccc;
  -ms-word-break: normal;
  word-break: normal;
}

/* プルダウン4  */
.selectdiv4 {
  position:absolute; 
    top: 81.5%;
    left:1.5%; 
    min-width: 100px;
  
  
}

select::-ms-expand {
display: none;
}

.selectdiv4:after {
  content: '<>';
  font: 17px "Consolas", monospace;
  color: #333;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  right: 11px;
  
  top: 18px;
  padding: 0 0 2px;
  border-bottom: 1px solid #999;
  
  position: absolute;
  pointer-events: none;
}

.selectdiv4 select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  
  display: block;
  width: 80%;
  max-width: 320px;
  height: 40px;
  float: right;
  margin: 10px 0px;
  padding: 0px 14px;
  font-size: 12px;
  line-height: 1.75;
  color: #333;
  background-color: #ffffff;
  background-image: none;
  border: 1px solid #cccccc;
  -ms-word-break: normal;
  word-break: normal;
}
/* プルダウン5  */
.selectdiv5 {
  position:absolute; 
    top: 81.5%;
    left:32.5%; 
    min-width: 100px;
  
  
}

select::-ms-expand {
display: none;
}

.selectdiv5:after {
  content: '<>';
  font: 17px "Consolas", monospace;
  color: #333;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  right: 11px;
  
  top: 18px;
  padding: 0 0 2px;
  border-bottom: 1px solid #999;
  
  position: absolute;
  pointer-events: none;
}

.selectdiv5 select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  
  display: block;
  width: 80%;
  max-width: 320px;
  height: 40px;
  float: right;
  margin: 10px 0px;
  padding: 0px 14px;
  font-size: 12px;
  line-height: 1.75;
  color: #333;
  background-color: #ffffff;
  background-image: none;
  border: 1px solid #cccccc;
  -ms-word-break: normal;
  word-break: normal;
}

/* プルダウン6  */
.selectdiv6 {
  position:absolute; 
    top: 81.5%;
    left:63%; 
    min-width: 100px;
  
  
}

select::-ms-expand {
display: none;
}

.selectdiv6:after {
  content: '<>';
  font: 17px "Consolas", monospace;
  color: #333;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  right: 11px;
  
  top: 18px;
  padding: 0 0 2px;
  border-bottom: 1px solid #999;
  
  position: absolute;
  pointer-events: none;
}

.selectdiv6 select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  
  display: block;
  width: 80%;
  max-width: 320px;
  height: 40px;
  float: right;
  margin: 10px 0px;
  padding: 0px 14px;
  font-size: 12px;
  line-height: 1.75;
  color: #333;
  background-color: #ffffff;
  background-image: none;
  border: 1px solid #cccccc;
  -ms-word-break: normal;
  word-break: normal;
}
}


/* 画面サイズが 750px からはここを読み込む */
@media screen and (min-width:751px){

  /* プルダウン1  */




/* タブ部分 */
.tabBox .tabArea {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
}
.tabBox .tabArea .one_tab {
  width: 50%;
  display: block;
  text-decoration: none;
  transition-duration: 0.3s;
  text-align: center;
  color: #fff;
  cursor: pointer;
}
.tabBox .tabArea .one_tab:hover {
  opacity: 0.7;
  text-decoration: none;
}
.tabBox .tabArea .one_tab .tab_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  transition-duration: 0.3s;
}

.tabBox .tabArea.bottom {
  align-items: flex-start;
}
.contents .tab_main {
  display: none;
  text-align: center;
  min-height: 280px;
  transition-duration: 0.3s;
}
.tab_main.is_show {
  display: block;
}
.tab_main:nth-child(1).is_show {
  margin: auto;
}
.tab_main:nth-child(2).is_show {
  margin: auto; 
}
.section {
  max-width: 1024px;
  margin: 0 auto;
  padding: 20px 20px 500px;
}
.section p._a {
  font-size: 12px;
  font-weight: bold;
  margin: 30px 0 0;
}
.section p._a .link {
  display: inline-block;
  color: #607D8B;
  padding-left: 1.3em;
  text-indent: -1.3em;
}
.section p._a .link:before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-top: 2px solid #607D8B;
  border-right: 2px solid #607D8B;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-right: 10px;
}


