﻿@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&family=Roboto:wght@100;300;400;500;700;900&display=swap');
/* ----------　all　---------- */
.linkStyle {
	color:#0d345d;
	text-decoration: underline;
}
.linkStyle:hover {
	color:#0d345d;
	opacity: 0.7;
	transition: all 0.5s;
}

/*スクショ撮るとき用*/
/*html, body{overflow: auto}*/
/*.pp-section{position: static}*/

body {
    font-family:'Roboto','Noto Sans JP', "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 16px;
}

.font_bar {
    font-family:'Roboto', sans-serif;
}

/* nav */

.fix-con {
    max-width: 450px;
    width: 15%;
    bottom: 10px;
    right: 20px;
    z-index: 5;
}

.fix-con a:hover {
    transform: translate(0, -15px);
}

.under_page .fix-con {
    right: 100px;
}

/* footer */


/* ----------　TOP　---------- */

/* main-img */

#custom {
    background-color: #1a1a1a;
    background-image: url(Dup/img/main-visual.jpg);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
}


/* top */

#intro {
    background-color: #1A1A1A;
}

/*.intro_title:before {*/
/*    content: "";*/
/*    width: 25%;*/
/*    height: 60%;*/
/*    position: absolute;*/
/*    right: -20%;*/
/*    bottom: -25%;*/
/*    background-image: url('/Dup/img/hero2.png');*/
/*    background-repeat: no-repeat;*/
/*    background-size: 100%;*/
/*    background-position: center;*/
/*}*/

.intro_right {
    background-size: 100%;
    background-repeat: no-repeat;
    background-color: #1A1A1A;
    position: relative;
    overflow: hidden;
}

.intro_right:before, .intro_right:after {
    content: "";
    position: absolute;
    background-repeat: no-repeat;
}

/*.intro_right:after {*/
/*    background-image: url(/Dup/img/intro-hero.png);*/
/*    max-width: 500px;*/
/*    width: 80%;*/
/*    height: 25%;*/
/*    background-size: contain;*/
/*    background-position: left bottom;*/
/*    top: 37%;*/
/*    right: 25%;*/
/*}*/

.intro_img1, .intro_img2, .intro_img3 {
    border: 10px solid;
}

.con_title {
    background-image: url(Dup/img/midashi-bg1.svg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 25px 50px 15px;
    display: block;
    width: 60%;
    margin: auto;
}

.con_box2 .con_title {
    background-image: url(Dup/img/midashi-bg2.svg);
}

.con_box1 .con_title:before {
    content: "";
    width: 15%;
    height: 100%;
    position: absolute;
    right: -10%;
    bottom: -20%;
    background-image: url('/Dup/img/hero3.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.con_box2 .con_title:before {
    content: "";
    width: 15%;
    height: 100%;
    position: absolute;
    left: -10%;
    bottom: -20%;
    background-image: url('/Dup/img/hero4.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

#contents .con_box1::before {
    display: none;
}

#contents .con_bg {
    background-color: #060535;
    background-image: url('/Dup/img/con_bg.png');
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 100%;
}

#contents .con_img {
    border:10px solid;
}

/*modal*/
html.modalset{
	overflow: hidden;
}
.modal{
	display: none;
	width: 100%;
	height: 100vh;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 9999;
}
.modal-wrap {
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	text-align: center;
	padding: 20px;
	overflow: hidden;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: none;
	overflow: -moz-scrollbars-none;
}
.modal-wrap::-webkit-scrollbar {
	display: none;
}
.modal-wrap:after {
	content: '';
	display: inline-block;
	vertical-align: middle;
	width: 1px;
	height: 100%;
}
.modal-bg{
	position: absolute;
	left: 0;
	top: 0;
	background: rgba(0,0,0,0.3);
	width: 100%;
	height: 100%;
}
.modal-box{
	width: 60%;
	box-sizing: border-box;
	display: inline-block;
	vertical-align: middle;
	position: relative;
}
.modal-box:before{
	content: "";
	display: block;
	background-color: #fff;
	box-sizing: border-box;
	width: 100%;
	height: 10%;
	position: absolute;
	bottom: 0;
	left: 50%;
	-ms-transform: translate(-50%,0);
	-webkit-transform: translate(-50%,0);
	transform: translate(-50%,0);
}
.modal-box .inner{
	    background: rgba(255,255,255,1);
	max-height: 500px;
    overflow: auto;
	-ms-overflow-style: none;
}
.modal-box .inner::-webkit-scrollbar {
	display:none;
}
.modal-box .inner > :first-child {
	margin-top: 0;
}

.modal-box .modal-close{
	cursor: pointer;
	position: absolute;
    top: 0;
    right: 0;
}
.modal-box .modal-close span{
	display: block;
	width: 50px;/*枠の大きさ*/
	height: 50px;/*枠の大きさ*/
	position: relative;
}

.modal-box .modal-close span::before, .modal-box .modal-close span::after{
	content: "";
	display: block;
	width: 100%;/*バツ線の長さ*/
	height: 2px;/*バツ線の太さ*/
	background: #000;
	transform: rotate(45deg);
	transform-origin:0% 50%;
	position: absolute;
	top: calc(14% - 1px);
	left: 14%;
}

.modal-box .modal-close span::after{
	transform: rotate(-45deg);
	transform-origin:100% 50%;
	left: auto;
	right: 14%;
}
.modal-open span{
    cursor: pointer;
    box-shadow: 5px 5px 0;
    background-color: #ffffff;
    transition: 0.5s;
}

.modal-open span:hover{
    cursor: pointer;
    box-shadow: none;
    transform: translate(5px, 5px);
}

.modal_title_wrap{
	top: 0;
	left: 0;
}

.youtube_box{
}
.youtube_box iframe{
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
/*.youtube_box:empty {*/
/*    display: none;*/
/*}*/




/* top-cms */

.cms_title h3 {
    display: block;
    width: auto;
    padding: 15px 20px;
    background-image: url(Dup/img/midashi-bg2.svg);
    background-repeat: no-repeat;
    background-position: center;
    font-weight: bold;
    color: #ffffff;
}

.link_type1 .link_top .link_title {
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
	margin-bottom: 30px;
    color: #ffffff;
    font-weight: normal;
}
.link_type1 .link_top .link_title{
    font-size: 20px;
    margin-bottom: 20px;
}
.link_type1 .link_top a{
	padding-top: 80px;
    padding-bottom: 60px;
}
.link_type1 .link_top a:hover{
    background-color: #0d345d;
}
.link_type1 .link_top a:hover .link_img1{
    transform: translate(-50%, -50%) scale(1.1,1.1);
    opacity: 0.1;
}


/* ----------　下層ページ　---------- */



/* 会社情報 */
/* お問い合わせ */
/* プライバシーポリシー */
/* サイトマップ */


/*-------------------------------------------------------
			          タブレット
-------------------------------------------------------*/
@media screen and (max-width: 768px){
    
.fix-con {
    width: 45%;
}

.modal-box{
	width: 80%;
}

.under_page .fix-con {
    right: 80px;
}

.is-hidden {
  visibility: hidden;
  opacity: 0;
}
    
#custom {
    background-image: url(Dup/img/main-visual-tb.jpg);
}

.intro_title:before {
    right: -5%;
}

#contents .con_img {
    border:10px solid;
}
    
.g_type6 .cate_box{width: 49%!important;}
    
}

/*-------------------------------------------------------
		            	スマホ
-------------------------------------------------------*/
@media screen and (max-width: 667px){

.modal-box{
	width: 90%;
} 

.fix-con, .under_page .fix-con {
    width: 70%;
    right: 0;
    left: 0;
    margin: auto;
    bottom: 3px;
}

#custom {
    background-image: url(Dup/img/main-visual-tb.jpg);
    height: 80vh!important;
}

.intro_title:before {
    width: 25%;
    right: -1%;
}

.intro_right:after {
    width: 75%;
}

.con_box1 .con_title:before {
    right: -5%;
}

.con_box2 .con_title:before {
    left: -5%;
}

.link_type1 .link_top .link_title{
    font-size: 15px;
}

.youtube_box{
  width: 95%;
  padding-top: 56%;
}
    
#page_title .title_wrap p {
    font-size: 25px;
}
    
.g_type6 .box_wrap{width: 100%!important;margin-left: 8px;}
.g_type6 .cate_box{width: 48%!important;}

}