@charset "UTF-8";
/*=========================================================
# colors
===========================================================*/
/*===========================================================
# common - 全体に共通するスタイル
============================================================*/
@media screen and (max-width: 767px) {
  /*.is-pcをつけるとスマホ時は表示しない*/
  .is-pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .is-sp { /*.is-spをつけるとpc時は表示しない*/
    display: none;
  }
}
body {
  font-size: 16px;
  color: #333;
  font-family: "ヒラギノ明朝 ProN", serif;
  line-height: 1.6875;
}

img {
  width: 100%; /*画面全体に表示*/
}

.inner {
  max-width: 1200px;
  margin: 0 auto; /*横が空いて中央による*/
  padding: 0 40px; /*画面が小さくなっても横のスキマを維持*/
  box-sizing: content-box; /*paddingを含めて全体で1200pxを保つための指定*/
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 15px;
  }
}

/* header
-------------------------------------------------------*/
.header {
  background: #fff;
  position: fixed; /*上部で固定されている これがあるのでメディアクエリのトップの余白がきく*/
  top: 0;
  left: 0;
  right: 0;
  z-index: 100; /*一番上にのっかる*/
}
.drawer--right .header .drawer-hamburger { /*ハイフンが二重*/
  right: 3px;
}
.header .drawer-hamburger-icon { /*ハンバーガーアイコンの色を変える、検証でclassを検索*/
  background-color: #3EA1D1;
}
.drawer-open .header .drawer-hamburger-icon { /*このクラスのついているものと言う意味*/
  background-color: transparent; /*真ん中の棒を透明にする*/
}
.header .drawer-hamburger-icon::before, .header .drawer-hamburger-icon::after {
  background-color: #3EA1D1;
}

.header-inner {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .header-inner {
    height: 60px;
  }
}

.header-logo {
  width: 120px;
}

.header-nav {
  margin-left: auto; /*右に寄せるための指示（betweenを使うとl均等のみの指定しかできなくなるからこれを使う）*/
}
@media screen and (max-width: 767px) {
  .header-nav {
    top: 60px;
    background-color: #3EA1D1;
    padding: 24px 0;
  }
}

@media screen and (min-width: 768px) {
  .header-nav-list {
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .header-nav-item + .header-nav-item { /*でもいいし、上に　＋　.header-nav-itemをつけてもいい*/
    margin-left: 46px;
  }
}

.header-nav-item-link {
  display: block; /*heightやpaddingの指定をするため*/
  color: #333;
  height: 70px; /*aタグに対して高さを指定したのは、クリック領域を大きくするため*/
  line-height: 70px;
  letter-spacing: 0.1em; /*文字間隔を広げる 1.6 / 16*/
}
@media screen and (max-width: 767px) {
  .header-nav-item-link {
    color: #fff;
    font-size: 18px;
    text-align: right;
    padding: 0 15px;
    height: 60px; /*aタグに対して高さを指定したのは、クリック領域を大きくするため*/
  }
}
@media screen and (min-width: 768px) {
  .header-nav-item-link {
    transition: color 0.4s; /*変色の速度を変える*/
  }
  .header-nav-item-link:hover { /*ホバーは、pcの時のみにする.スマホだとアニメが残って乳舞う場合があるため*/
    color: #3EA1D1;
  }
}

/*=======================================================================
# footer
========================================================================*/
.footer {
  background: #F7F7F7;
  padding: 42px 40px 12px;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 36px 0 14px;
  }
}

.footer-logo {
  width: 120px;
  margin: 0 auto;
}

.footer-nav-list {
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .footer-nav-list {
    text-align: center;
    margin-top: 16px;
  }
}
@media screen and (min-width: 768px) {
  .footer-nav-list {
    display: flex;
    justify-content: center; /*真ん中に寄せる*/
  }
}

@media screen and (min-width: 768px) {
  .footer-nav-item + .footer-nav-item {
    margin-left: 30px;
  }
}

.footer-nav-item-link {
  font-size: 12px;
  color: #333;
  display: block;
  padding: 1em 0; /*クリック領域を広げるためのもの*/
}
@media screen and (max-width: 767px) {
  .footer-nav-item-link {
    padding: 0.3em 0;
  }
}
@media screen and (min-width: 768px) {
  .footer-nav-item-link {
    transition: opacity 0.4s;
  }
  .footer-nav-item-link:hover {
    opacity: 0.7;
  }
}

.footer-sns-list {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer-sns-list {
    margin-top: 14px;
  }
}

.footer-sns-item {
  display: inline-block; /*フレックス以外で横並びにできる方法*/
}
.footer-sns-item + .footer-sns-item {
  margin-left: 10px;
}

.footer-sns-item-link {
  color: #3EA1D1;
  font-size: 24px; /*おそらくのサイズ*/
  display: block;
  padding: 0.1em 0.5em; /*クリック領域を広げるためのもの*/
}
@media screen and (min-width: 768px) {
  .footer-sns-item-link {
    transition: opacity 0.4s;
  }
  .footer-sns-item-link:hover {
    opacity: 0.7;
  }
}

.footer-copyright {
  color: #888888;
  font-size: 12px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer-copyright {
    margin-top: 5px;
  }
}

/*=======================================================================
# main
========================================================================*/
/*common
=====================================================================*/
.main {
  padding-top: 70px; /*headに隠れない為の指定*/
}
@media screen and (max-width: 767px) {
  .main {
    padding-top: 60px;
  }
}

.section { /*共通する値*/
  margin-top: 160px;
}
@media screen and (max-width: 767px) {
  .section {
    margin-top: 96px;
  }
}

/* util
====================================================================*/
.util-title { /*表題を共通で作る*/
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  line-height: 1; /*マージンをつけているので誤差が出ないようこの値*/
}
@media screen and (max-width: 767px) {
  .util-title {
    font-size: 30px;
  }
}
.util-title::after {
  content: "";
  display: block;
  height: 1px; /*高さ１px 幅６０pxの箱で線を表現*/
  width: 60px;
  background: #3EA1D1;
  margin: 16px auto 0;
}

.util-link { /*util-linkとついてるものに全部聞いてしまうので、htmlのutilの横にスペースがいる*/
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #3EA1D1;
  border: solid 1px #3EA1D1;
  background: #fff;
  display: inline-block; /*テキストアラインセンターをしやすくするため*/
  padding: 10px 54px;
  transition: background-color 0.4s, color 0.4s; /*ちゃんと指定物をはっきりしていないと他の部分いもアニメーションが効いてしまう*/
  /*全部必須事項を埋めたとにホバーできるようになる指定*/
  /*-submitの要素を持っていないだけという意味*/
}
.util-link.-active {
  background: #3EA1D1;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .util-link:not(.-submit):hover {
    background: #3EA1D1;
    color: #fff;
  }
}

/* top
====================================================================*/
.top {
  position: relative; /*重ね合わせたり、位置を指定する為*/
}

@media screen and (max-width: 767px) {
  .top-picture {
    padding-top: 120%;
    background: url(/sobolon/img/PC/top.png) center center/cover;
  }
}
@media screen and (min-width: 768px) {
  .top-picture {
    padding-top: 55%; /*画角を指定するため　６６０／１２００*/
    background: url(/sobolon/img/PC/top.png) top right/82.5% no-repeat; /*/右づけにする 1200 / 990しか画像いらない +　画像をリピートさせない*/
  }
}

@media screen and (max-width: 767px) {
  .top-message {
    margin-top: 31px;
  }
}
@media screen and (min-width: 768px) {
  .top-message {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    padding: 82px 44px 90px 40px; /*箱のお大きさをつける*/
  }
}

.top-message-title {
  font-size: 26px;
  font-weight: bold;
}

.top-message-text {
  margin-top: 18px;
}

/* concept
====================================================================*/
.concept-inner {
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .concept-inner {
    margin-top: 46px;
  }
}
@media screen and (min-width: 768px) {
  .concept-inner { /*パソコンの時だけ効くようにする*/
    display: flex;
    align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .concept-picture {
    flex: 0 0 50%; /*width50%でも良いがフレックスをつかているのでフレックスで指定 inner幅のpaddingの左右合わせた80pxを弾いた1200pxの半分の６００pxだからこの指定*/
    /*↑ flex の次の 0 0 は、スペースが余っている時の拡大縮小の時の指定の部分*/
  }
}

@media screen and (max-width: 767px) {
  .concept-message {
    margin-top: 35px;
  }
}
@media screen and (min-width: 768px) {
  .concept-message {
    flex: 0 1 50%;
    margin-left: 6.6667%; /*スマホやタブレットの時に自動的に見やすくなるように％で指定 80px / 1200px*/
  }
}

.concept-message-title {
  font-size: 20px;
  font-weight: bold;
}

.concept-message-text {
  margin-top: 36px;
}
@media screen and (max-width: 767px) {
  .concept-message-text {
    margin-top: 20px;
  }
}

/* feature
====================================================================*/
@media screen and (max-width: 767px) {
  .feature {
    max-width: 340px; /*340pxまでしか広がらないようにする*/
  }
}

.feature-list {
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .feature-list {
    margin-top: 46px;
  }
}
@media screen and (min-width: 768px) {
  .feature-list {
    display: flex;
    justify-content: space-between;
  }
}

@media screen and (min-width: 768px) {
  .feature-item {
    flex: 0 0 28.3333%; /*写真の幅を全体の幅で割る*/
  }
}
@media screen and (max-width: 767px) {
  .feature-item + .feature-item {
    margin-top: 49px; /*影と次との間を作る*/
  }
}

.feature-item-link {
  display: block;
  color: #333;
  background: #fff;
  box-shadow: 3px 3px 15px rgba(96, 96, 96, 0.16); /*シャドウの色は,右上のHEXをRGBAに変えてコピー*/
}
@media screen and (min-width: 768px) {
  .feature-item-link:hover .feature-item-picture > img { /*hoverした時に画像が1.05倍になる*/
    transform: scale(1.05);
  }
}

.feature-item-picture {
  overflow: hidden; /*箱からはみ出さないで*/
}
.feature-item-picture > img {
  transition: transform 0.4s;
}

.feature-item-body {
  text-align: center;
  font-weight: bold;
  padding: 26px 12px;
}

/* about
====================================================================*/
.about {
  color: #fff;
  position: relative;
  padding: 120px 0; /*画像の幅が大きくなる*/
}
@media screen and (max-width: 767px) {
  .about {
    background: url(/sobolon/img/SP/bg.png) center center/cover; /*centerとかがないと画面が大きくなる*/
    padding: 176px 0 52px;
  }
}
@media screen and (min-width: 768px) {
  .about {
    background: url(/sobolon/img/PC/bg.png) center center/cover;
  }
}
.about::before { /*絵が明るすぎるのでぼやけさせる指定*/
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.12); /*12%ぶんの暗いフィルターをかける*/
}

.about-inner {
  position: relative; /*時をaboutの全体と同じにして上に乗せる*/
}

.about-title {
  font-size: 22px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .about-title {
    font-size: 20px;
  }
}

.about-text {
  margin-top: 28px;
}
@media screen and (max-width: 767px) {
  .about-text {
    font-size: 14px;
    margin-top: 22px;
    line-height: 1.7143;
  }
}

/* products
====================================================================*/
.products {
  max-width: 940px; /*幅を小さく表示*/
}
@media screen and (max-width: 767px) {
  .products {
    max-width: 340px;
    padding: 0 50px; /*画像を狭くする*/
  }
}

.products-list {
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .products-list {
    margin-top: 48px;
  }
}
@media screen and (min-width: 768px) {
  .products-list {
    display: flex;
    justify-content: space-between;
  }
}

@media screen and (min-width: 768px) {
  .products-item {
    flex: 0 0 27.6%;
  }
}
@media screen and (max-width: 767px) {
  .products-item + .products-item {
    margin-top: 40px;
  }
}

.products-item-link {
  display: block;
  color: #333;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .products-item-link:hover .products-item-picture > img { /*hoverした時に画像が1.05倍になる*/
    transform: scale(1.05);
  }
}
.products-item-link .products-item-picture {
  overflow: hidden; /*箱からはみ出さないで*/
}
.products-item-link .products-item-picture > img {
  transition: transform 0.4s;
}

.products-item-body {
  margin-top: 22px;
}

.products-item-cost {
  color: #989898;
  margin-top: 10px;
}

.products-footer {
  text-align: center;
  margin-top: 44px;
}
@media screen and (max-width: 767px) {
  .products-footer {
    margin-top: 42px;
  }
}

/* news
====================================================================*/
.news {
  max-width: 1040px;
}
@media screen and (max-width: 767px) {
  .news {
    padding: 0 32px;
  }
}

.news-list {
  top: 28px;
}
@media screen and (max-width: 767px) {
  .news-list {
    margin-top: 25px;
  }
}

.news-item {
  border-bottom: solid 1px #E0E0E0;
}

.news-item-link {
  color: #333;
  font-size: 14px;
  padding: 22px 0;
  display: block; /*スマホの時のpaddingが適用されるようになる*/
}
@media screen and (min-width: 768px) {
  .news-item-link {
    display: flex;
    align-items: center; /*天地中央*/
  }
  .news-item-link:hover .news-item-picture > img {
    transform: translate(-50%, -50%) scale(1.05);
    /*前の部分の↑↑これがないと小さくなってしまう 順番も大事*/
  }
}

@media screen and (min-width: 768px) {
  .news-item-header {
    flex: 0 0 260px; /*文字がガタガタなのを治す*/
  }
}

.news-item-picture { /* WordPressなどで使用者が写真を埋め込みやすくなる為の書き方*/
  padding-top: 61.5385%;
  position: relative;
  overflow: hidden;
}
.news-item-picture > img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  transition: transform 0.4s;
}

@media screen and (max-width: 767px) {
  .news-item-body {
    margin-top: 21px;
  }
}
@media screen and (min-width: 768px) {
  .news-item-body {
    flex: 0 1 100%;
    margin-left: 40px;
  }
}

.news-item-title {
  font-size: 18px;
  font-weight: bold;
  margin-top: 4px;
}
@media screen and (max-width: 767px) {
  .news-item-title {
    font-size: 16px;
  }
}

.news-item-text {
  color: #888888;
  margin-top: 16px;
  line-height: 1.7143;
}

.news-footer {
  text-align: center;
  margin-top: 48px;
}

/* concept2
====================================================================*/
@media screen and (min-width: 768px) {
  .concept2-inner {
    display: flex;
    align-items: center;
    flex-direction: row-reverse; /*左右を反転させる*/
  }
}

@media screen and (min-width: 768px) {
  .concept2-picture {
    flex: 0 0 50%; /*width50%でも良いがフレックスをつかているのでフレックスで指定 inner幅のpaddingの左右合わせた80pxを弾いた1200pxの半分の６００pxだからこの指定*/
    /*↑ flex の次の 0 0 は、スペースが余っている時の拡大縮小の時の指定の部分*/
  }
}

@media screen and (max-width: 767px) {
  .concept2-message {
    margin-top: 34px;
  }
}
@media screen and (min-width: 768px) {
  .concept2-message {
    flex: 0 1 50%;
    margin-right: 6.6667%; /*スマホやタブレットの時に自動的に見やすくなるように％で指定*/
  }
}

.concept2-message-title {
  font-size: 28px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .concept2-message-title {
    font-size: 20px;
  }
}

.concept2-message-text {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .concept2-message-text {
    font-size: 14px;
    line-height: 1.7143;
  }
}

/* contact
====================================================================*/
.contact {
  background: url(/sobolon/img/PC/contact.png) center center/cover;
  margin-top: 225px;
  padding: 72px 40px 86px; /*左右は全体と合わせる*/
}
@media screen and (max-width: 767px) {
  .contact {
    margin-top: 92px;
    padding: 56px 28px;
  }
}
.contact .util-title {
  color: #3EA1D1;
}
.contact input[type=text],
.contact input[type=email],
.contact textarea {
  width: 100%;
  border: 0;
  font-size: 16px;
  padding: 0.2em 0.5em; /*文字の周りに間隔をあける*/
  box-shadow: 5px 6px 16px rgba(96, 96, 96, 0.16);
  border-radius: 2px;
}
.contact input[type=text],
.contact input[type=email] {
  height: 40px;
}
.contact textarea {
  min-width: 122px;
  resize: vertical; /*縦にだけ変えることができる指定*/
}

.contact-form {
  margin-top: 56px;
}
@media screen and (max-width: 767px) {
  .contact-form {
    margin-top: 26px;
  }
}

.contact-text {
  font-size: 14px;
  letter-spacing: 0.1em;
  text-align: center;
}

.contact-text-inline {
  font-size: 16px;
  color: #E7728E; /*これはHexに戻す*/
}

.contact-list {
  max-width: 510px;
  margin: 18px auto 0;
}

@media screen and (min-width: 768px) {
  .contact-item {
    display: flex;
  }
}
.contact-item + .contact-item {
  margin-top: 32px;
}

.contact-item-title {
  background: rgba(62, 161, 209, 0.7);
  color: #fff;
  font-size: 18px;
  height: 40px;
  line-height: 40px; /*上に寄っているのを直す*/
  text-align: center;
  padding-left: 10px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contact-item-title {
    display: inline-block; /*全幅表示の解除*/
    font-size: 14px;
    line-height: 32px;
    height: 32px;
    padding: 0 16px;
  }
}
@media screen and (min-width: 768px) {
  .contact-item-title {
    flex: 0 1 100%; /*残りを全部つかう*/
  }
  .contact-item-title::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: -8px; /*矢印分のpxだけマイナスさせる*/
    border-style: solid; /*ここからのコピーで良い*/
    border-width: 20px 0 20px 8px;
    border-color: transparent transparent transparent rgba(62, 161, 209, 0.7);
  }
}

.contact-item-title-inline {
  font-size: 12px;
  color: #E7728E;
  vertical-align: super; /*位置を上にもっていく*/
  line-height: 1; /*line-heightをなくしてズレを直す*/
}
@media screen and (max-width: 767px) {
  .contact-item-title-inline {
    font-size: 10px;
  }
}

@media screen and (max-width: 767px) {
  .contact-item-input {
    margin-top: 3px;
  }
}
@media screen and (min-width: 768px) {
  .contact-item-input {
    flex: 0 0 320px;
    margin-left: 18px;
  }
}

.contact--radio-wrap {
  display: inline-flex; /*全体がブロック要素にならない為の指示　文字のとこだけブロックにする*/
  border: solid 1px #fff;
  border-radius: 1px;
  box-shadow: 5px 6px 16px rgba(96, 96, 96, 0.16);
}

.contact-radio {
  position: relative;
}

.contact-radio-input { /*inputの丸ぽつを消す*/
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.contact-radio-input:checked + .contact-radio-part { /*チェックした次の要素*/
  background: #3EA1D1;
  color: #fff;
  border-radius: 1px; /*外枠線は残す*/
}
.contact-radio-input:focus + .contact-radio-part { /*チェックしたら枠がつくしてい*/
  outline: -webkit-focus-ring-color auto 1px; /*hovでfocus visibleを選択すると出てくる*/
}

.contact-radio-part {
  display: block;
  background: #fff;
  color: #3EA1D1;
  height: 38px;
  line-height: 38px; /*真ん中に寄せる*/
  width: 80px;
  text-align: center;
  transition: background-color 0.4s, color 0.4s;
}

.contact-footer {
  text-align: center;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .contact-footer {
    margin-top: 14px;
  }
}

.contact-privacy {
  position: relative;
  height: 22px; /*全体を囲ってある箱を同じサイズへ*/
  width: 22px; /*全体を囲ってある箱を同じサイズへ*/
  display: inline-block; /*浮かせてあげるとガタつきが治る*/
  vertical-align: middle; /*ガタついたのを中央に寄せる*/
}

.contact-privacy-part {
  display: inline-block; /*左に行ったのを戻すため*/
  height: 22px;
  width: 22px;
  border: solid 1px #3EA1D1;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.2s; /*変化する要素が多いのでall*/
}

.contact-privacy-input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.contact-privacy-input:checked + .contact-privacy-part { /*動きが起きた時の現象の指示*/
  width: 10px;
  border-top: 0; /*消す*/
  border-left: 0;
  background: transparent; /*透明にする*/
  transform: rotate(45deg); /*45度回転*/
  top: -5px; /*クリックしたらちょっとズレる*/
  left: 5px; /*クリックしたらちょっとズレる*/
}
.contact-privacy-input:focus + .contact-privacy-part { /*チェックしたら枠がつくしてい*/
  outline: -webkit-focus-ring-color auto 1px; /*hovでfocus visibleを選択すると出てくる*/
}
.contact-privacy-input:checked:focus + .contact-privacy-part { /*チェックしたら枠がつくしてい*/
  outline: none; /*チェックしたら消える*/
}

.contact-privacy-link {
  color: #3EA1D1;
  text-decoration: underline;
}

.contact-footer-submit {
  margin-top: 46px;
}
@media screen and (max-width: 767px) {
  .contact-footer-submit {
    margin-top: 24px;
  }
}

.contact-message {
  text-align: center;
  margin-top: 60px;
  display: none;
}
.contact-message.-error {
  color: #f00;
}