@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
body {
  background: #d9f2f2;
  font-family: NotoSansJP;
  line-height: 1.4rem;
  color: #2d2c2c;
}

.main {
  background: white;
  width: 700px;
  margin: 0 auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width:750px) {
  .main {
    width: 100%;
  }
}
.main > img {
  display: block;
  width: 100%;
}

.content {
  display: block;
  width: 100%;
}

.content2 {
  display: block;
  width: 90%;
  margin: 20px auto;
}

footer {
  background: #F5F5F5;
  display: block;
  padding: 0 10% 5%;
  display: flex;
  flex-wrap: wrap;
}
footer > img {
  display: block;
  margin: 40px auto 30px;
}
footer > div {
  width: 100%;
}
footer > div a {
  display: block;
  width: 100%;
  border-top: 1px solid #e6e6e6;
  padding: 25px 0;
  text-align: center;
  transition: 0.3s;
}
footer > div a:hover {
  color: #8ca4c7;
}
footer span {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 12px;
  color: #cfcfcf;
  margin-top: 40px;
}

.block_item {
  position: relative;
}

.btn01, .btn02, .btn03, .btn05, .btn06 {
  display: block;
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
  position: absolute;
  bottom: 11%;
  left: 0;
  right: 0;
  transition: 0.3s;
}
.btn01 > img, .btn02 > img, .btn03 > img, .btn05 > img, .btn06 > img {
  display: block;
  width: 80%;
  margin: 0 auto;
}
.btn01:hover, .btn02:hover, .btn03:hover, .btn05:hover, .btn06:hover {
  opacity: 0.7;
}

.btn02 {
  position: absolute;
  bottom: 8%;
  left: 0;
  right: 0;
}

.btn03 {
  position: absolute;
  bottom: 4%;
  left: 0;
  right: 0;
}

.btn05 {
  position: absolute;
  bottom: 12%;
  left: 0;
  right: 0;
}

.btn06 {
  position: absolute;
  bottom: 14%;
  left: 0;
  right: 0;
}

.btn_big {
  display: block;
  width: 90%;
  margin: -20px auto 0;
}
.btn_big > img {
  width: 100%;
  margin-left: 10px;
}
.btn_big > img:hover {
  opacity: 0.8;
}

.kotei {
  background: #d9f2f2;
  width: 100%;
  display: block;
  position: sticky;
  bottom: 0;
  padding: 20px 0 10px;
}
.kotei img {
  display: block;
  width: 80%;
  cursor: pointer;
  transition: 0.3s;
  margin: 0 auto;
  max-width: 400px;
}
.kotei img:hover {
  opacity: 0.5;
}

.btn_ari {
  display: block;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  cursor: pointer;
  transition: 0.3s;
}
.btn_ari:hover {
  opacity: 0.7;
}

.tit_qa {
  font-weight: bold;
  font-size: 30px;
  margin: 0 auto 30px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  color: #46689f;
  border-bottom: 3px solid #6582af;
  padding-bottom: 5px;
}

.accordion {
  margin-top: 60px;
  width: 90%;
  margin: 60px auto 0;
}

.toggle {
  display: none;
}

.Label { /*タイトル*/
  padding: 0.8rem 1em;
  display: block;
  color: #fff;
  background: #6582af;
  border-radius: 100px;
  font-weight: bold;
}

.Label::before { /*タイトル横の矢印*/
  content: "";
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 3px);
  right: 20px;
  transform: rotate(135deg);
}

.Label,
.con {
  font-size: 15px;
  line-height: 1.4rem;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}

.con { /*本文*/
  height: 0;
  margin-bottom: 10px;
  padding: 0 20px;
  overflow: hidden;
}

.toggle:checked + .Label + .con { /*開閉時*/
  height: auto;
  padding: 20px;
  transition: all 0.3s;
}

.toggle:checked + .Label::before {
  transform: rotate(-45deg) !important;
}

.tyui {
  width: 100%;
  margin: 0 auto 0;
  line-height: 1.2rem;
  padding: 10px 5% 50px;
  background: #ededed;
}
.tyui h3 {
  font-weight: bold;
  font-size: 16px;
  margin-top: 30px;
  margin-bottom: 10px;
}
.tyui p {
  font-size: 12px;
}

.law h3, .privacy h3 {
  font-size: 2rem;
  text-align: center;
  font-weight: bold;
  padding: 5vh 0;
  color: #6582af;
  line-height: 2.3rem;
  font-weight: 200;
}
.law h3 > span, .privacy h3 > span {
  font-size: 14px;
  display: block;
  text-align: center;
  margin-top: 10px;
  color: #2d2c2c;
  font-weight: normal;
}
.law div, .law dl, .privacy div, .privacy dl {
  margin: 0 5%;
  font-size: 14px;
  margin-bottom: 6vh;
}
.law div h4, .law dl h4, .privacy div h4, .privacy dl h4 {
  color: #6582af;
  border-bottom: 1px solid #6582af;
  font-size: 18px;
  padding-bottom: 10px;
  margin-bottom: 15px;
}
.law div .li_num, .law dl .li_num, .privacy div .li_num, .privacy dl .li_num {
  list-style-type: decimal;
  margin: 15px 0 0 30px;
}
.law div .li_num li, .law dl .li_num li, .privacy div .li_num li, .privacy dl .li_num li {
  margin-top: 3px;
}

.btn04 {
  display: block;
  width: 50%;
  padding: 20px 0;
  background: #a89d87;
  color: white;
  text-align: center;
  margin: 0 auto 7vh;
  border-radius: 100px;
}

.law dl dt {
  width: 100%;
  background: #f2f7ff;
  padding: 10px;
}
.law dl dd {
  width: 100%;
  margin-bottom: 3vh;
  padding: 5px 10px;
}

.tabs {
  margin-top: 50px;
  padding-bottom: 40px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 100%;
  margin: 0 auto;
}

/*タブのスタイル*/
.tab_item {
  width: 33.3333333333%;
  height: -moz-fit-content;
  height: fit-content;
  padding: 15px 0;
  border-bottom: 3px solid #6594DD;
  background-color: #f1f3f7;
  line-height: 1rem;
  font-size: 16px;
  text-align: center;
  color: #565656;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
  font-size: 13px;
}

.tab_item:hover {
  opacity: 0.75;
}

/*ラジオボタンを全て消す*/
input[name=tab_item] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  width: 100%;
  display: none;
  background: #f1f3f7;
  padding: 40px 40px 40px;
  clear: both;
  overflow: hidden;
}

/*選択されているタブのコンテンツのみを表示*/
#all:checked ~ #all_content,
#programming:checked ~ #programming_content,
#design:checked ~ #design_content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input#all:checked + .tab_item {
  background-color: #6594DD;
  color: #fff;
}

.tabs input#programming:checked + .tab_item {
  background-color: #65BADD;
  color: #fff;
}

.tabs input#design:checked + .tab_item {
  background-color: #68C8C9;
  color: #fff;
}

.btn_line {
  background: #424743;
  color: white;
  width: 60%;
  padding: 25px 0;
  display: block;
  margin: 0 auto 4vh;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.05rem;
  border-radius: 100px;
  cursor: pointer;
}

.modal_overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

.modal {
  display: none;
  position: fixed;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background: #fff;
  padding: 50px 30px 30px;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 6px;
  overflow-y: auto;
}

.btn_modoru {
  border: 1px solid #424743;
  color: #424743;
  display: block;
  width: 60%;
  padding: 15px 0;
  text-align: center;
  border-radius: 80px;
  transition: 0.3s;
  margin: 20px auto 7vh;
}
.btn_modoru:hover {
  background: #bbcbe3;
  border: 1px solid #546888;
  color: #546888;
}/*# sourceMappingURL=style.css.map */