@charset "UTF-8";
body { background-color: #fafafa; font-family: 'Roboto'; line-height: 1.7; }
.container {
  padding: 20px 0;
  margin: 150px auto;
}

.sub-heading {
  font-size: 20px;
  max-width: 960px;
  margin: auto;
}

.tab {
  max-width: 960px;
  margin: 10px auto 100px;
}

/* Tab Button */
.tab__button {
  height: 50px;
}
.list {
  display: flex;
  list-style: none;
  height: 100%;
}
.item {
  width: 100%;
  border: 0;
  border-left: 1px solid #ddd;
  height: 100%;
}
.button {
  cursor: pointer;
  appearance: none;
  border-radius: 0;
  border-style: none;
  width: 100%;
  height: 100%;
  border-bottom: 2px solid transparent;
  transition: all .25s ease-in-out;
}
.button:hover {
  font-weight: bold;
  border-bottom: 2px solid #31a0ca;
}
.button:focus {
  outline: none;
}
.is-current .button {
  color: #fff;
  background: #0b60b7;
}
.is-current .button:hover {
  border-bottom: 2px solid transparent;
}

/* Tab Content */
.title {
  font-size: 25px;
  margin: 10px auto 20px;
}

.title:first-letter {
  font-size: 40px;
  color: #f00;
}

.box {
  display: flex;
}
@media screen and (max-width:767px) {
  .box {
    flex-direction: column;
    padding: 20px;
  }
}

.text {
  width: 70%;
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
  margin: 20px 0 20px 20px;
}
@media screen and (max-width:767px) {
  .text {
    width: 100%;
    margin: 20px auto;
  }
}

.imageWrap {
  width: 30%;
}
@media screen and (max-width:767px) {
  .imageWrap {
    width: 100%;
  }
}

.image {
  width: 100%;
  box-shadow: 10px 10px 10px rgba(0,0,0,0.4);
}
