/*-----------------------------------
base
-----------------------------------*/

.sp {
  display: none;
}

.tab {
  display: none;
}

.pc {
  display: block;
}

/* IE対応 */



html {
  overflow-y: auto;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-size: 62.5%;
  /* overflow-x: hidden; */
}

/* https://willcloud.jp/knowhow/font-family/#font-family-2 */

body {
  font-size: 16px;
	font-size: 1rem;
	width: 100%;
	margin: 0 auto;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
  /* overflow-x: hidden; */
}
body * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: 'Noto Sans JP', "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic","Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
}
@media all and (-ms-high-contrast:none) {
	body {
		font-family: "メイリオ",Meiryo, "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic","Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
	}
}

.inner{
  width: 100%;
	max-width: 1024px;
  margin: 0 auto;
}

article {
  padding: 0px 0;
}

section {
  width: 100%;
  /* padding: 100px 0; */
}

img,
video {
  width: 100%;
  height: auto;
  overflow-x: hidden;
}



/*-----------------------------------
font
-----------------------------------*/
.jost {
  font-family: 'Jost', 'Noto Sans JP', "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic","Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
}
.lex {
  font-family: 'Lexend Deca', sans-serif;
}

.maru {
  font-family: 'ヒラギノ丸ゴ ProN','Hiragino Maru Gothic ProN','メイリオ', Meiryo, "游ゴシック", "Yu Gothic", sans-serif;
}
.kaku {
  font-family: 'Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','Meiryo UI','Yu Gothic UI', "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}
.min{
	font-family: "游明朝体", YuMincho, "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", Georgia, Times, "Times New Roman", serif;
}



/*-----------------------------------
各種flex
-----------------------------------*/
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.flex__sta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.flex__end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.flex__btw {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.flex__aro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.flex__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.flex__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/*-----------------------------------
テキスト設定
-----------------------------------*/
h2,h3,h4,p,li,a,span,figcaption {
  color: #333333;
  letter-spacing: 0.1em;
}

h1 {
  font-size: 20px;
}
h2 {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  line-height: calc(30/36);
}
h3 {
  font-size: 24px;
  font-weight: bold;
  text-align: left;
  line-height: calc(24/30);
}
h4 {
  font-size: 2px;
}
p,li {
  font-size: 22px;
}

figcaption {
  font-size: 16px;
  font-weight: bold;
}
figcaption span{
  color: #fff;
  background: #333;
  font-size: 20px;
  font-weight: bold;
  padding: 2px 4px;
}


a,a:link {
  display: block;
  text-decoration:none;
  color: #333333;
  cursor: pointer;
}
a:visited {
  color: #333333;
  cursor: pointer;
}

a:hover {
  text-decoration:none;
  cursor: pointer;
  -webkit-transition: 0.6s;
  -o-transition: 0.6s;
  transition: 0.6s;
}

a .lower__top--img:hover,
h3 a:hover,
footer a:hover {
  opacity: 0.5;
  -webkit-transition: 0.6s;
  -o-transition: 0.6s;
  transition: 0.6s;
}




/*-----------------------------------
btn
-----------------------------------*/
button{
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.btn a,
.btn a:link {
  color: #444;
  text-decoration:none;
  cursor: pointer;
  padding: 12px 20px;
}


/* .btn:hover {
  background:#fff;
  border: 1px solid #2296DE;
}
.btn a:hover {
	color: #2296DE;
} */

/* .btn:hover:after{
  background: url(../img/common/btn_arrow_red.svg)no-repeat center center /contain;
  transition: 0.6s;
} */

.btn a:visited {
  color: #fff;
  cursor: pointer;
}



/*-----------------------------------
テキスト位置
-----------------------------------*/
.t_left{
	text-align: left;
}
.t_center{
	text-align: center;
}


/*-----------------------------------
テキスト色
-----------------------------------*/
.t_yellow {
  color: #FFF15E;
}

.t_red {
  color: #A0323D;
}

.t_darkred {
  color: #C00000;
}

.t_gray {
  color: #404040;
}


/*-----------------------------------
背景色
-----------------------------------*/
.bg_white {
  background: #fff;
}
.bg_gray{
	background: #f1f1f1;
}
.bg-darkgray {
  background: #E5EBEF;
}
.bg_yellow {
  background: #FFF376;
}
.bg_lightblue {
  background: #96E2FF;
}
.bg_green {
  background-color: #4AB02A;
}
.bg_red {
  background-color: #F35353;
}
.bg_blue {
  background-color: #246AC4;
}
.bg_orange {
  background-color: #FFA52C;
}

/*-----------------------------------
背景ストライプ
-----------------------------------*/

.stripe__gray {
  background: -o-repeating-linear-gradient(135deg,#A4A4A4 0,#A4A4A4 5px,#fff 5px,#fff 10px);
  background: repeating-linear-gradient(-45deg,#A4A4A4 0,#A4A4A4 5px,#fff 5px,#fff 10px);
}
.stripe__yellow {
  background: -o-repeating-linear-gradient(135deg,#EFBA33 0,#EFBA33 5px,#fff 5px,#FFF 9px);
  background: repeating-linear-gradient(-45deg,#EFBA33 0,#EFBA33 5px,#fff 5px,#FFF 9px);
}
.stripe__green {
  background: -o-repeating-linear-gradient(135deg,#7BD2C3 0,#7BD2C3 5px,#fff 5px,#FFF 9px);
  background: -o-repeating-linear-gradient(135deg,#7BD2C3 0,#7BD2C3 5px,#fff 5px,#FFF 9px);
  background: repeating-linear-gradient(-45deg,#7BD2C3 0,#7BD2C3 5px,#fff 5px,#FFF 9px);
}
.stripe__red {
  background: -o-repeating-linear-gradient(135deg,#E24863 0,#E24863 5px,#fff 5px,#FFF 9px);
  background: -o-repeating-linear-gradient(135deg,#E24863 0,#E24863 5px,#fff 5px,#FFF 9px);
  background: repeating-linear-gradient(-45deg,#E24863 0,#E24863 5px,#fff 5px,#FFF 9px);
}
.stripe__purple {
  background: -o-repeating-linear-gradient(135deg,#B08CBF 0,#B08CBF 5px,#fff 5px,#FFF 9px);
  background: -o-repeating-linear-gradient(135deg,#B08CBF 0,#B08CBF 5px,#fff 5px,#FFF 9px);
  background: repeating-linear-gradient(-45deg,#B08CBF 0,#B08CBF 5px,#fff 5px,#FFF 9px);
}
.stripe__orange {
  background: -o-repeating-linear-gradient(135deg,#FF8600 0,#FF8600 5px,#fff 5px,#FFF 9px);
  background: -o-repeating-linear-gradient(135deg,#FF8600 0,#FF8600 5px,#fff 5px,#FFF 9px);
  background: repeating-linear-gradient(-45deg,#FF8600 0,#FF8600 5px,#fff 5px,#FFF 9px);
}
.stripe__blue {
  background: -o-repeating-linear-gradient(135deg,#6EBBE6 0,#6EBBE6 5px,#fff 5px,#FFF 9px);
  background: -o-repeating-linear-gradient(135deg,#6EBBE6 0,#6EBBE6 5px,#fff 5px,#FFF 9px);
  background: repeating-linear-gradient(-45deg,#6EBBE6 0,#6EBBE6 5px,#fff 5px,#FFF 9px);
}

/*-----------------------------------
margin-bottom
-----------------------------------*/
.mb10 {
  margin-bottom: 10px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb40 {
  margin-bottom: 40px;
}
.mb50 {
  margin-bottom: 50px;
}
.mb60 {
  margin-bottom: 60px;
}
.mb70 {
  margin-bottom: 70px;
}
.mb80 {
  margin-bottom: 80px;
}
.mb90 {
  margin-bottom: 90px;
}
.mb100 {
  margin-bottom: 100px;
}
.mb120 {
  margin-bottom: 100px;
}
.mb150 {
  margin-bottom: 100px;
}
.mb180 {
  margin-bottom: 100px;
}
.mb200 {
  margin-bottom: 100px;
}

/*-----------------------------------
margin-top
-----------------------------------*/
.mt10 {
  margin-top: 10px;
}
.mt20 {
  margin-top: 20px;
}
.mt30 {
  margin-top: 30px;
}
.mt40 {
  margin-top: 40px;
}
.mt50 {
  margin-top: 50px;
}
.mt60 {
  margin-top: 60px;
}
.mt70 {
  margin-top: 70px;
}
.mt80 {
  margin-top: 80px;
}
.mt90 {
  margin-top: 90px;
}
.mt100 {
  margin-top: 100px;
}
.mt120 {
  margin-top: 100px;
}
.mt150 {
  margin-top: 100px;
}
.mt180 {
  margin-top: 100px;
}
.mt200 {
  margin-top: 100px;
}

/*-----------------------------------
margin-bottom
-----------------------------------*/
.mb10 {
  margin-bottom: 10px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb40 {
  margin-bottom: 40px;
}
.mb50 {
  margin-bottom: 50px;
}
.mb60 {
  margin-bottom: 60px;
}
.mb70 {
  margin-bottom: 70px;
}
.mb80 {
  margin-bottom: 80px;
}
.mb90 {
  margin-bottom: 90px;
}
.mb100 {
  margin-bottom: 100px;
}
.mb120 {
  margin-bottom: 100px;
}
.mb150 {
  margin-bottom: 100px;
}
.mb180 {
  margin-bottom: 100px;
}
.mb200 {
  margin-bottom: 100px;
}

/*-----------------------------------
padding-top
-----------------------------------*/
.pt10 {
  padding-top: 10px;
}
.pt20 {
  padding-top: 20px;
}
.pt30 {
  padding-top: 30px;
}
.pt40 {
  padding-top: 40px;
}
.pt50 {
  padding-top: 50px;
}
.pt60 {
  padding-top: 60px;
}
.pt70 {
  padding-top: 70px;
}
.pt80 {
  padding-top: 80px;
}
.pt90 {
  padding-top: 90px;
}
.pt100 {
  padding-top: 100px;
}
.pt120 {
  padding-top: 100px;
}
.pt150 {
  padding-top: 100px;
}
.pt180 {
  padding-top: 100px;
}
.pt200 {
  padding-top: 100px;
}

/*-----------------------------------
padding-bottom
-----------------------------------*/
.pb10 {
  margin-bottom: 10px;
}
.pb20 {
  margin-bottom: 20px;
}
.pb30 {
  margin-bottom: 30px;
}
.pb40 {
  margin-bottom: 40px;
}
.pb50 {
  margin-bottom: 50px;
}
.pb60 {
  margin-bottom: 60px;
}
.pb70 {
  margin-bottom: 70px;
}
.pb80 {
  margin-bottom: 80px;
}
.pb90 {
  margin-bottom: 90px;
}
.pb100 {
  margin-bottom: 100px;
}
.pb120 {
  margin-bottom: 100px;
}
.pb150 {
  margin-bottom: 100px;
}
.pb180 {
  margin-bottom: 100px;
}
.pb200 {
  margin-bottom: 100px;
}






/*---------------------------------------------------------------------
レスポンシブ
---------------------------------------------------------------------*/



/*************** タブレットレスポンシブ *****************/
/* @media screen and (min-width:767px) and ( max-width:1024px) {
.pc {
  display: none;
}

.sp {
  display: none;
}

.tab {
  display: block;
} */

/*
#services .inner {
  width: 90%;
}

h2,h3,h4,p {
  line-height: 1.6;
  letter-spacing: 0px;
}

h1 {
  font-size: 20px;
}
h2 {
  font-size: 28px;
  text-align: center;
}
h3 {
  font-size: 20px;
}
h4 {
  font-size: 14px;
}
p,li {
  font-size: 14px;
}
} */


/*************** スマホレスポンシブ *****************/
@media screen and ( max-width: 1024px) {

.pc {
  display: none !important;
}

.tab {
  display: none;
}

.sp {
  display: block;
}

article {
  padding: 100px 0;
}

section {
  padding: 50px 0;
}

#services .inner {
  width: 90%;
}

h2,h3,h4,p {
  line-height: 1.6;
  letter-spacing: 0px;
}

h1 {
  font-size: 32px;
}
h2 {
  font-size: 26px;
  text-align: center;
}
h3 {
  font-size: 26px;
}
h4 {
  font-size: 14px;
}
p,li {
  font-size: 14px;
}

}


