@charset "UTF-8";

/* ここから下に書いていく */

/*!
Theme Name:global works
Template: page-benefits
*/

html {
    font-size: 100%;
}

html.big {
    font-size: 75%;
}

html.small {
    font-size: 54.6875%;
}


/* スマホのフォントサイズ（ルート） */

@media screen and (max-width: 768px) {
    html {
        font-size: 12px;
    }
}

/* タブレット以上サイズで電話ボタンリンクを非活性状態にする */

@media screen and (min-width: 768px) {
    a[href^="tel:"] {
        pointer-events: none;
    }
}


/* サイト独自のスタイル定義 */

:root {
    --colorA: #333;
    --colorB: #ea6060;
    --colorC: #4dc7e1;
    --colorD: #77e14d;
    --colorE: #e1de4d;
    --padding-main: 2.4rem;
}

.l-max {
    width: 100%;
}

.l-mainColumn {
    width: calc(70% - (var(--padding-main) * 2));
}

.l-subColumn {
    width: calc(30% - (var(--padding-main) * 2));
}

.l-mainHeader {
    width: 100%;
}

.l-mainFooter {
    width: 100%;
}

.theme-widthA {
    width: 100%;
    margin: auto;
}

.theme-widthB {
    width: 100%;
    max-width: 1410px;
    margin: auto;
    padding-left: var(--padding-main);
    padding-right: var(--padding-main);
}

.theme-widthC {
    width: 100%;
    max-width: 900px;
    margin: auto;
    padding-left: var(--padding-main);
    padding-right: var(--padding-main);
}

.theme-boxshadowA {
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
}

.theme-colorA {
    color: var(--colorA);
}

.theme-colorB {
    color: var(--colorB);
}

.theme-colorC {
    color: var(--colorC);
}

.theme-bgA {
    background-color: var(--colorA);
}

.theme-bgB {
    background-color: var(--colorB);
}

.theme-bgC {
    background-color: var(--colorC);
}

.theme-bgD {
    background-color: var(--colorD);
}

.theme-bgE {
    background-color: var(--colorE);
}

.theme-mtXS {
    margin-top: 1.2rem;
}

.theme-mtS {
    margin-top: 2.4rem;
}

.theme-mtM {
    margin-top: 4.8rem;
}

.theme-mtL {
    margin-top: 9.6rem;
}

.theme-mtXL {
    margin-top: 12rem;
}

img {
    max-width: 100%;
}

@media screen and (max-width: 1023px) {}


/* ここから個別のスタイル設定 */

body {
    margin: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #fff !important;
    font-feature-settings: 'palt';
    font-family: 'Yu Gothic', '游ゴシック', YuGothic, '游ゴシック体', 'Noto Sans JP', sans-serif !important;
	
}

header{
    box-sizing: border-box;
}

.headerlogo{
    position: fixed;
    margin-top:clamp(0.938rem, 0.71rem + 1.14vw, 1.563rem);
    margin-bottom:clamp(0rem, -0.341rem + 1.7vw, 0.938rem);
    margin-left:clamp(0.625rem, 0.511rem + 0.57vw, 0.938rem);
    width:clamp(3.125rem, 2.216rem + 4.55vw, 5.625rem);
    z-index:1030;
}

.ulheader{
    display: inline-block;
    position: fixed;
    right: 0;
    flex-wrap:wrap;
    margin-top: 23px;
    z-index:1030;
}

.liheader{
    list-style: none;
    text-align: center;
    display: inline-block;
    padding-left: 20px;
    padding-right: 20px;
}

.aheader{
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    color: black;
}

@media only screen and (max-width: 768px) {
  .nav {
    position: fixed;
    right: -320px; /* 右から出てくる */
    top: 0;
    width: 300px; /* スマホに収まるサイズ */
    height: 100vh;
    padding-top: 60px;
    background-color: #fff;
    transition: all .6s;
    z-index: 200;
    overflow-y: auto; /* メニューが多くなったらスクロールできるように */
  }
  .hamburger {
    position: absolute;
    right: 15px;
    top: 8px;
    width: 40px; /* クリックしやすい幅 */
    height: 40px; /* クリックしやすい高さ */
    cursor: pointer;
    z-index: 300;
  }
  .nav_list {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
	.aheader2{
    display: block;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    color: black;
  }
	
	.nav_item{
    display: block;
    padding: 8px 0;
    text-decoration: none;
	text-align:center;
    font-weight: bold;
    font-size: 14px;
    color: black;
  }
	
  .nav_item a:hover {
    background-color: #eee;
  }
  .hamburger_border {
    position: absolute;
    left: 11px;
    width: 18px;
    height: 2px;
    background-color: #333;
    transition: all .6s;
  }
  .hamburger_border_top {
    top: 14px;
  }
  .hamburger_border_center {
    top: 20px;
  }
  .hamburger_border_bottom {
    top: 26px;
  }
  .black_bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background-color: #333;
    opacity: 0;
    visibility: hidden;
    transition: all .6s;
    cursor: pointer;
  }

  /* 表示された時用のCSS */
  .nav-open .nav {
    right: 0;
  }
  .nav-open .black_bg {
    opacity: .8;
    visibility: visible;
  }
  .nav-open .hamburger_border_top {
    transform: rotate(45deg);
    top: 20px;
  }
  .nav-open .hamburger_border_center {
    width: 0;
    left: 50%;
  }
  .nav-open .hamburger_border_bottom {
    transform: rotate(-45deg);
    top: 20px;
  }
}/* sp */

@media only screen and (min-width: 769px) {
  .header_inner{
    max-width: 980px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .nav_list{
	display: inline-block;
    position: fixed;
	margin: 0;
    right: 0;
    flex-wrap:wrap;
    z-index:1030;
  }
  .nav_item{
    list-style: none;
    text-align: center;
    display: inline-block;
    padding-left: 20px;
  }

.liheader2{
    list-style: none;
    text-align: center;
    display: inline-block;
}

.aheader2{
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    color: white;
    background-color: black;
    border-style:solid;
    border-color: black;
    border-top-width: 30px;
    border-bottom-width: 30px;
    border-left-width: 25px;
    border-right-width: 25px;
	display: block;
    padding:8px 0;
}
}/* pc */

.main{
    box-sizing: border-box;
}

.top{
    width:100%;
    height: clamp(15.625rem, 11.08rem + 22.73vw, 28.125rem);
    object-fit: cover;
    opacity: 0.6;
}

.top2{
    position: relative;
}

.com{
    text-align: center!important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

h1{
    color:#CCCCCC;
    font-family: salmon;
    font-weight:700;
    font-size: clamp(2.5rem, 1.591rem + 4.55vw, 5rem);
    margin: 0;
}

.p1{
    position: absolute;
    top: 70%;
    width: 100%;
    font-size: clamp(1.25rem, 1.159rem + 0.45vw, 1.5rem);
    font-weight: 700;
    color: #000000;
    margin: 0;
}

.mis{
    text-align:center;
    position: relative!important;
    box-sizing: border-box;
}

.tab{
    box-sizing: border-box;
    position: relative;
    bottom: 70px;
    border-bottom: 1px solid #dee2e6;
}

.tab1{
    flex: 0 0 100%;
    max-width: 100%;
    position: relative;
    padding-right: 15px;
    padding-left: 15px;
}

@media only screen and (max-width: 769px) {
.tabul{
    display: flex;
    justify-content: center!important;
    flex-wrap: wrap;
    padding-left: 0;
	margin-top:36px;
    margin-bottom: 0;
    list-style: none;
	box-sizing: border-box;}

	.tabliactive{
    border-top:solid #000000 3px;
    border-left: 1px solid #696969;
    margin-top: -2px;
    width: 32%;
    max-width: 150px;
    background-color: #fff;
    margin-bottom: -1px;
}

.tabaactive{
    color: #000000;
    opacity: 1;
    border:solid 1px #fff;
    background-color: #fff;
	font-family:salmon;
	font-size:10px;
    font-weight: 700;
    border: 1px solid transparent;
    text-align: center!important;
    display: block;
    text-decoration: none;
}

.tabaactive:hover{
    color: white;
    opacity: 1;
    border:solid 1px #6a6969;
    border-bottom:solid 3px #6a6969;
    background-color: #6a6969;
    font-weight: 700;
	font-size:10px;
	font-family:salmon;
    text-align: center!important;
    display: block;
    text-decoration: none;
}

.tabli{
    width: 32%;
    max-width: 150px;
    background-color: #fff;
    margin-bottom: -1px;
	border: 1px solid #696969;
}

.tabliactive+.tabli{
    border: 1px solid #696969;
}

.tabli+.tabli{
    border: 1px solid #696969;
    border-left:none;
}

.taba{
    color: #000000;
    font-weight: 700;
	font-size:10px;
	font-family:salmon;
    opacity: 0.4;
    border: 1px solid transparent;
    text-align: center!important;
    display: block;
    text-decoration: none;
    background-color: transparent;
}

.taba:hover{
    color: white;
    opacity: 1;
    border:solid 1px #6a6969;
    border-bottom:solid 3px #6a6969;
    background-color: #6a6969;
    font-weight: 700;
	font-size:10px;
	font-family:salmon;
    text-align: center!important;
    display: block;
    text-decoration: none;
}
	.descrip1{
	width:285px;
    margin:0 auto;
    text-align: center;
}
	
}
/* sp/ */

@media only screen and (min-width: 769px) {
.tabul{
    display: flex;
    justify-content: center!important;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    margin-top: 1;
	box-sizing: border-box;}

	.tabliactive{
    border-top:solid #000000 3px;
    border-left: 1px solid #696969;
    border-bottom:solid #FFFFFF 3px;
    margin-top: -2px;
    width: 30%;
    max-width: 350px;
    background-color: #fff;
    margin-bottom: -1px;
}

.tabaactive{
    color: #000000;
    opacity: 1;
    border:solid 1px #fff;
    background-color: #fff;
    font-weight: 700;
	font-family:salmon;
    border: 1px solid transparent;
    text-align: center!important;
    display: block;
    padding: 0.5rem 1rem;
    text-decoration: none;
}

.tabaactive:hover{
    color: white;
    opacity: 1;
    border:solid 1px #6a6969;
    border-bottom:solid 3px #6a6969;
    background-color: #6a6969;
    font-weight: 700;
	font-family:salmon;
    text-align: center!important;
    display: block;
    padding: 0.5rem 1rem;
    text-decoration: none;
}

.tabli{
    width: 30%;
    max-width: 350px;
    background-color: #fff;
    margin-bottom: -1px;
	border: 1px solid #696969;
}

.tabliactive+.tabli{
    border: 1px solid #696969;
}

.tabli+.tabli{
    border: 1px solid #696969;
    border-left:none;
}

.taba{
    color: #000000;
    font-weight: 700;
	font-family:salmon;
    opacity: 0.4;
    border: 1px solid transparent;
    text-align: center!important;
    display: block;
    padding: 0.5rem 1rem;
    text-decoration: none;
    background-color: transparent;
}

.taba:hover{
    color: white;
    opacity: 1;
    border:solid 1px #6a6969;
    border-bottom:solid 3px #6a6969;
    background-color: #6a6969;
    font-weight: 700;
	font-family:salmon;
    text-align: center!important;
    display: block;
    padding: 0.5rem 1rem;
    text-decoration: none;
}
	.descrip1{
    line-height: 36px;
	margin:0 auto;
    text-align: center;
}

}
/* pc/ */

.tecworks{
    max-width: 1024px;
    width:90%;
    margin: 0 auto;
    margin-bottom:clamp(4.375rem, 3.693rem + 3.41vw, 6.25rem);
    font-weight: 500;
}

h2{
    font-family: salmon;
    font-weight: 700;
    font-size: clamp(1.563rem, 0.994rem + 2.84vw, 3.125rem);
    margin-top:0;
    margin-bottom:1rem;
    text-align: center!important;
}

.sub{
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1.12px;
    line-height: 1rem;
    margin-bottom: 0;
    text-align: center!important;
}

.course{
    width:75%;
    margin:3% auto;
}
.course p{
    margin:0 auto;
    width:fit-content;
}
.discount{
    font-size:1.5rem;
    font-weight: 700;
}
.discount span{
    color:red;
}
.big{
    font-size:5.5rem;
}
.annotation{
    font-size: .9rem;
    font-weight: 500;
}

.name{
    background-color: #1d135f;
    color: #FFFFFF;
    padding: 5px 20%;
    font-size:clamp(1.375rem, 1.2rem + 1.5vw, 2.5rem);
    font-weight: 700;
    margin: 0;
    text-align: center!important;
}
.descript{
    text-align: center;
    font-size:1.5rem;
    font-weight: 700;
    margin: 3% auto;
}
.descript span{
    font-size:clamp(2rem, 1.78rem + 1.3vw,3.25rem);
}
.descrip2{
    text-align: center;
    font-size:clamp(0.75rem, 0.523rem + 1.14vw, 1.375rem);
    font-weight: 700;
    margin-top: 10px;
}
.subsidy{
	margin:50px 0;
}
.osaka-skill{
	margin:0 auto;
	width:60%;
	text-align:center;
}
.osaka-skill p{
	font-size:1.2rem;
	margin:0;
}
@media only screen and (max-width: 769px) {
	.osaka-skill p{
		font-size:1rem;
	}
}
.osaka-skill a{
	font-size:1.5rem;
	border: #1d135f solid 2px;
	color:#1d135f;
	padding:5px;
	margin:5px;
	display:inline-block;
}
.osaka-skill a:hover{
	background-color:#1d135f;
	color:#fff;
}

.content{
    margin-top: 3rem!important;
}

.con1{
    color: #fff2ccff;
    font-size: clamp(1rem, 0.227rem + 3.86vw, 3.125rem);
    letter-spacing: -1px;
    font-family: salmon;
    font-weight:700;
    text-align: center!important;
    margin: 0 auto;
}

.sub2{
    font-size: clamp(0.625rem, 0.307rem + 2vw, 1.8rem);
    font-weight: 700;
    top: 60%;
    width: 100%;
    border-bottom: 2px solid #000000;
    text-align: center;
    color:#1d135f;
}

.descrip3{
	margin:3% auto;
	width:80%;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 500;
}
.descrip4{
	margin:3% auto;
	width:100%;
}
.labour{
    width:35%;
    display: block;
    margin:0 auto;
}
span{
    font-weight: 700;
}

.skill{
    background-color: #fff2ccff;
    padding-top: 25px;
    padding-bottom: 25px;
    text-align: center!important;
    margin-top: 3rem!important;
    font-size: 1.2rem;
    font-weight: 500;
}
.skill-sub{
    font-size:1rem;
}
.caution{
    margin-bottom: 0px;
}
.caution-sub{
    margin-top: 0px;
}
b{
    font-size: 1.3rem;
}
/* button */
.button{
    display: block;
    margin:5% auto;
    font-size: 1.2rem;
    width:35%;
    background-color:#1d135f;
    color:#fff;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    padding:2%;
    border-radius: 40px;
}
.button:hover{
    background-color: #fed800ff;
    color:#000;
}
@media only screen and (max-width: 769px) {
	.button{
		width:40%;
	}
	.box{
		margin:5% 0;
	}
}
 /* recommendation */
.flex{
    display:flex;
}
.box{
    margin:3% 1%;
    text-align: center;
    flex:1;
}
.box img{
    width:80%;
    margin:auto;
    display: block;
}
.reco{
    width:80%;
    margin:8px auto;
    font-weight: bold;
    background-color: #fff2ccff;
    border-bottom: solid 6px #fff2ccff;
    box-shadow: 0 3px 6px #1d135f;
    border-radius: 9px;
}
/* characteristic */
.ch_flex{
    display:flex;
    margin:5% auto;
}
.parallelogram{
    position: relative;
    z-index: 1;
    text-align: center;
    margin: 0 auto;
    width: 45%;
    font-size: 1.5rem;
    font-weight: bold;
    flex:6;
    height: 50px;
    line-height: 50px;
}
.parallelogram::before{
    transform: skewX(-20deg);
    content: ""; /*ボックスを作る*/
    position: absolute;
    top:0;bottom:0;left: 0; right: 0;
    z-index: -1; /* 親要素の後ろに来るように-1 */
    background-color:#fff2ccff;
    border:3px solid #1d135f;
}
.sub_com{
    width:45%;
    font-size:1.2rem;
    flex:4;
    text-align: center;
}
@media only screen and (max-width: 769px) {
	.parallelogram{
		height: 30px;
    	line-height: 30px;
	}
	.sub_com{
		font-size:1rem;
	}
}
/* fllowup */
.fllow_box{
    width:35%;
    padding:0px 10px;
    background-color:#fff2ccff;
    border:3px solid #1d135f;
    margin:auto;
    height:200px;
}
.heading{
    font-size: 1.5rem;
    color:#1d135f;
    text-align: center;
    font-weight: bold;
}
@media only screen and (max-width: 769px) {
	.fllow_box{
	    height:120px;
	}
	.heading{
		font-size:1.2rem;
	}
}
/* 卒業生 */
.border{
    background-color:#fff2ccff;
    border:3px solid #1d135f;
}
.model{
    flex:1;
}
.para{
    flex:2;
    padding:5px;
}
.dashed{
    border-left:2px dashed #1d135f;
    border-right:2px dashed #1d135f;
}
.heading2{
    font-size:1.2rem;
    font-weight: bold;
}
.heading2 span{
    font-weight: bold;
}
.para p{
    font-size:1rem;
}
.model p{
    text-align: center;
    font-weight: bold;
    margin: 0;
}
.money{
    display: block;
  position: relative;
  margin: 0 auto;
  padding: 20px 0;
  width: 60%;
  background: #fff2ccff;
}
.money p{
    display: inline-block;
  position: absolute;
  left: 0;
  top: 5px;
  box-sizing: border-box;
  padding: 0 12px;
  margin: 0;
  height: 30px;
  line-height: 30px;
  font-size: 18px;
  letter-spacing: 0.1em;
  color: white;
  background: #1d135f;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.12);
}
.money p:before{
    position: absolute;
  content: '';
  top: 0;
  left: -7px;
  border: none;
  height: 38px;
  width: 7px;
  background: #1d135f;
  border-radius: 5px 0 0 5px;
}
.money p:after{
    position: absolute;
  content: '';
  bottom: -7px;
  left: -5px;
  border: none;
  height: 7px;
  width: 5px;
  background: #1d135f;
  border-radius: 5px 0 0 5px;
}
.money div{
    text-align: center;
    font-size: 3rem;
}
.money span{
    font-size: 1rem;
    font-style: none;
}
@media only screen and (max-width: 769px) {
	.money{
		padding-top: 30px;
	}
}
footer{
    box-sizing: border-box;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    background-color: #000000;
    padding-top: 20px;
    padding-bottom: 19px;
}

.footerback{
    margin-top: 1.5rem!important;
}

.footerlogo{
    margin: 0 auto;
    width: clamp(6.25rem, 4.932rem + 6.59vw, 9.875rem);
}

.footerlink{
    margin-top: 3rem!important;
    text-align: center;
    display: flex!important;
    justify-content: center!important;
    padding-right: 15px;
    padding-left: 15px;
}

.link{
    padding: 0 clamp(0.625rem, -0.034rem + 3.3vw, 2.438rem);
}

.afooter{
    color: #FFFFFF;
    font-size:clamp(0.75rem, 0.659rem + 0.45vw, 1rem);
    text-decoration: none;
}

.afooter:hover {
  text-decoration: underline;
}

.link+.link{
    border-left: solid 1px #FFFFFF;
}

.copyright{
    margin-top: 3rem!important;
    display: flex!important;
    justify-content: center!important;
    padding-right: 15px;
    padding-left: 15px;
    color: #FFFFFF;
    font-size:clamp(0.75rem, 0.659rem + 0.45vw, 1rem);
	text-decoration:none;
}
