@charset "UTF-8";
/* a タグリセット */
.soudan a {
  margin: 0px;
  padding: 0px;
  cursor: default;
}

.soudan a:link {
  color: #333;
  text-decoration: none;
}

/*
上の例は下線も何も付いていない状態ですが、下線を付けたりしたい場合はtext-decorationの値を、underline（下線）、overline（オーバーライン）、line-through（取り消し線）、blink（点滅）などに変えましょう。

訪問済みリンクの設定です。
*/
.soudan a:visited {
  color: #333;
  text-decoration: none;
}

/*
リンクが付いている箇所をロールオーバーした時の設定です。
*/
.soudan a:hover {
  color: #900;
  text-decoration: none;
}

/* soudan */
.soudan {
  margin-top: 20px;
  margin-bottom: 20px;
}

.soudan div#soudan {
  display: flex;
  flex-wrap: nowrap;
  -webkit-align-items: center; /* 縦方向中央揃え（Safari用） */
  align-items: center; /* 縦方向中央揃え */
  -webkit-justify-content: flex-start; /* 横方向中央揃え（Safari用） */
  justify-content: flex-start; /* 横方向中央揃え */
  width: 100vw;
  background-color: var(--main-color);
}

.soudan div#soudan .item1 h2 {
  flex-grow: 0;
  padding: 10px;
  min-width: 320px;
  max-width: 320px;
}
.soudan div#soudan .item1 .container {
  display: flex;
  -webkit-align-items: center; /* 縦方向中央揃え（Safari用） */
  align-items: center; /* 縦方向中央揃え */
  -webkit-justify-content: flex-start; /* 横方向中央揃え（Safari用） */
  justify-content: flex-start; /* 横方向中央揃え */
}

.soudan div#soudan .item1 .container .phone {
  margin: 0 10px;
  text-align: center;
  width: 50px;
  height: 50px;
  font-size: 200%;
  border: 3px solid black;
  border-radius: 50%;
}

.soudan div#soudan .item1 .container div p {
  margin-left: 0;
  padding-left: 0;
  height: 10px;
  font-size: 80%;
}

.soudan div#soudan .item2 .rad {
  flex-grow: 0;
  padding: 10px;
  min-width: 320px;
  max-width: 320px;
  height: 50px;
  border-radius: 10%/50%;
  background-color: #FFF;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center; /* 縦方向中央揃え（Safari用） */
  align-items: center; /* 縦方向中央揃え */
  -webkit-justify-content: center; /* 横方向中央揃え（Safari用） */
  justify-content: center; /* 横方向中央揃え */
  margin: 10px 10px 0;
}
.soudan div#soudan .item2 h2 {
  text-align: center;
  margin-bottom:  0;
}
.soudan div#soudan .item2:hover {
  background-image: rgba(0,0,0,0.3);
}
.soudan div#soudan .item2 {
  padding-bottom: 25px;
}
.soudan div#soudan .item3 {
  flex-grow: 0;
  padding: 10px;
  min-width: 300px;
  max-width: 300px;
}
.LINE {
  color: #1dcd00;
  font-size: 200%;
  margin: 0 10px;
}
@media (max-width: 300px) {
  .soudan div#soudan .item3 {
    display: none;
  }
}

@media (max-width: 768px) {
  .soudan div#soudan .item3 {
    display: none;
  }
  .soudan div#soudan .item2 {
    margin: 0 auto;
  }
}

@media (min-width: 768px) {
.item2 div:nth-child(2) {
  display: none;
}
}
