@charset "UTF-8";
/* Scss Document */
@import "https://fonts.googleapis.com/css?family=Roboto:400,500,700";
/*reuse*/
* {
  box-sizing: border-box; }

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%; }

body {
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333;
  line-height: 1.7;
  font-size: 1.6rem;
  font-family: 'Roboto', メイリオ, Meiryo, Osaka, 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  background-color: #F5F7F9; }

h1{
  font-size: 3rem;
  text-align: center;
}
input,
button,
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
  border-radius: 0;
  box-sizing: border-box;
  /* 文字の大きさ iOSでズームさせないために16px以上を指定 */
  font-size: 16px;
  color: inherit;
}
button{
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}
select{
  position: relative;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}

.select-wrap {
    position: relative;
}

.select-wrap:after {
  content: "";
    position: absolute;
    top: 45%;
    right: 5%;
    width: 6px;
    height: 6px;
    border-top: 2px solid #006FA0;
    border-left: 2px solid #006FA0;
    transform: translateY(-50%) rotate(-135deg);
  font-size: 20px;
  pointer-events: none;
}

/*common*/

.pc_view {
  display: block;
}
.sp_view {
  display: none;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom; }

.clear:after {
  content: " ";
  display: block;
  clear: both; 
}
.roboto{
  font-family: 'Roboto', sans-serif;
}
.underline{
  border-bottom: 1px solid #006FA0;
}
a.underline{
  transition: all 0.3s; 
  color: #006FA0;
}
a.underline:hover{
  opacity: 0.6;
}
.center{
  text-align: center;
}

a {
  text-decoration: none; 
}
a:hover {
  text-decoration: none; 
}

.flex{
  display: flex;
}
.contact-request a {
  border: 2px solid #fff;
}

.container {
  width: 100%;
  max-width: 910px;
  margin: 0 auto; 
}
.bold,
.content_wrap p.bold{
  font-weight: bold;

}
.mt10 {
  margin-top: 10px; 
}
.mt20 {
  margin-top: 20px; 
}
.mt25 {
  margin-top: 25px; 
}
.mt40 {
  margin-top: 40px; 
}
.mt60 {
  margin-top: 60px; 
}
.mt80 {
  margin-top: 80px; 
}
.mb20{
  margin-bottom: 20px;
}
.m-wtd130{
  max-width: 130px;
  width: 100%;
}
.m-wtd180{
  max-width: 180px;
  width: 100%;
}
.m-wtd240{
  max-width: 240px;
  width: 100%;
}
.m-wtd300{
  max-width: 300px;
  width: 100%;
}
.m-wtd380{
  max-width: 380px;
  width: 100%;
}
.m-wtd410{
  max-width: 410px;
}
.m-wtd670{
  max-width: 670px;
  width: 100%;
}
.pd15-20{
  padding: 15px 20px;
}
.space-between{
  justify-content: space-between;
}
.a-items-end{
  align-items: flex-end;
}
.fs-14px{
  font-size: 1.4rem;
}
.cmt{
  font-weight: bold;
  font-size: 1.4rem;
  color: #CE183C;
}
.cmt.black{
  font-weight: normal;
  color: #333;
}

/*== ボタン共通設定 */

.btn {
  position: relative;
  width: 100%;
  font-weight: bold;
  border-radius: 60px;
  transition: all 0.3s; 
}

.btn:hover  {
  opacity: 0.4;
}
.btn a{
  display: block;
  padding: 15px 0;
}

.blue-btn {
  color: #fff;
  text-align: center;
  background-color: #006FA0;
  transition: all 0.3s;
}
.blue-btn a{
  color: #fff;
}
@media screen and (max-width: 768px) {
	.blue-btn {
	padding:15px 0;
	margin-top:10px;
	}
}
.white-btn {
  color: #006FA0;
  text-align: center;
  background-color: #fff;
  border: 2px solid #006FA0;
  transition: all 0.3s; 
}
.white-btn a{
  color: #006FA0;
}

/*== ナビ */
.nav_wrap{
  max-width: 900px;
  width: 100%;
  margin: auto;
  padding: 28px 25px 0;
  background: #fff;
}
.nav_list{
  width: 100%;
  justify-content: space-between;
}
.nav_list .flex{
  justify-content: space-between;
  align-items: center;
}
.nav_list li{
  opacity: 0.5;
}
.nav_list li.current{
  font-weight: bold;
  opacity: 1;
}
.nav_list li a{
  font-size: 1.7rem;
  transition: all 0.3s; 
  color: #333;
}
.nav_list li a img{
  width: 35px;
  margin-right: 15px;
}
.nav_list li a:hover{
  opacity: 0.3;
}

/*== ページナビ */
.page{
  padding-left: 150px;
  font-size: 1.8rem;
}
.page_nav_link{
  max-width: 55%;
  width: 100%;
  color: #333;
  font-size: 1.8rem;
}
.arw{
  width: 28px;
}
.page_nav_link:hover img{
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
    min-width: 100%;
  }
  .pc_view {
    display: none;
  }
  .sp_view {
    display: block;
  }
  .child_1{
    order: 1;
  }
  .child_2{
    order: 2;
  }
  .child_3{
    order: 3;
  }

  /*== ナビ */
  .nav_wrap {
    padding: 0;
  }
  .nav_list li.current {
    opacity: 1;
  }
  .nav_list li a img {
    width: 35px;
    margin-right: 0;
    margin: auto;
  }
  .nav_list li.current {
  opacity: 1;
  background: #fff;
  }
  .nav_list li {
  opacity: 1;
  padding: 4% 0;
  width: 25%;
  background: #F5F7F9;
  }
  .nav_list li img{
  opacity: 0.5;
  }
  .m-wtd130,.m-wtd180,.m-wtd240,.m-wtd300,.m-wtd380,.m-wtd670{
  max-width: 100%;
  }

/*== ページナビ */
  .page_nav_wrap.pd15-20{
    padding: 15px 0 15px 20px;
  }
  .page {
    padding-left: 43%;
  }
  .page_nav_link{
    max-width: 25%;
  }
  .arw{
    width: 28px;
  }
}

