@charset "UTF-8";



/*====================================
       :root
======================================*/

:root{
　　/* 文字色 */
	--color-text-orange : orange;
	--color-text-green : #18a963;
	--color-text-whiteGray : #F8F8F8;
	--color-text-base : #3e3e3e;
	--color-text-darkBlue: #004991;
	--color-text-white : #fff;
	--color-text-darkGray: #b6b6b6;
	--color-text-pink: #fe90ff;
	
	/* 文字間 */
	--l-spacing-xs: 2px;
	--l-spacing-sm: 3px;
	--l-spacing-md: 5px;
	--l-spacing-lg: 7px;
	--l-spacing-xl: 9px;
	--l-spacing-2xl: 11px;
	--l-spacing-3xl: 13px;
	
	/* 行間 */
	--lh-xs: 1.2;
  	--lh-sm: 1.4;
  	--lh-md: 1.6;
  	--lh-lg: 1.8;
  	--lh-xl: 2;
  	--lh-2xl: 2.2;
  	--lh-3xl: 2.4;
	
	
	/* フォントの太さ */
	--fw-500: 500;
	--fw-bold : bold;
	
	
	/* 角丸 */
	--br-xs: 5px;
	--br-sm: 10px;
	--br-md: 15px;
	--br-lg: 20px;
	
	/* 線 */
	--border-sl-darkBlue: solid 1px #004991;
	
	
	/* グラデ背景 */
	--bg-gradient-darkBlue: linear-gradient(45deg, #004991, #0064C4);
	--bg-webkit-gradient-darkBlue: -webkit-linear-gradient(45deg, #004991, #0064C4);
	
	
	/* 背景色 */
	--bg-whiteGray: #F8F8F8;
	--bg-white: #fff;
	
	
	/* ドロップシャドウ */
	--box-shadow-darkBlue: 0px 0px 50px 3px rgba(0, 70, 145, 0.15);
}


/*====================================
       common.css
======================================*/

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
  font-family: sans-serif;
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-size: 15px;
  color: #3E3E3E;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1rem;
  height: 100%;
  line-height: 1;
  width: 100%;
}

a {
  color: #0066c0;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  transition: .3s;
　display: inline-block; /* または block */
  word-break: break-all; /* 長いURLなどを途中で折り返す */
  overflow-wrap: anywhere;
}

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

a:active, a:hover {
  outline-width: 0;
}

li {
  list-style: none;
}

figcaption, figure, main {
  display: block;
}

article, aside, footer, header, nav, section, .section {
  display: block;
}

hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

small {
  font-size: 80%;
}

audio, video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

img {
  border-style: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

svg:not(:root) {
  overflow: hidden;
}

button, input, optgroup, select, textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button, html [type="button"], [type="reset"], [type="submit"] {
  -webkit-appearance: none;
}

button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
  border-style: none;
}

button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: .35em .625em .75em;
}

legend {
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}

progress {
  display: inline-block;
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: none;
  outline-offset: -2px;
}

[type="search"]::-webkit-search-cancel-button, [type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: none;
  font: inherit;
}

canvas {
  display: inline-block;
}

iframe {
  vertical-align: middle;
}

/* form input*/

table {
  border-collapse: collapse;
  border-spacing: 0;
  max-width: 100%;
  width: 100%;
}

input, select, textarea {
  font-size: 1.6rem;
  background: #FFF;
  border: 1px solid #CCC;
  outline: none;
  padding: 10px;
  border-radius: 4px;
  width: 100%;
  font-family: 'Noto Sans JP', sans-serif;
  -webkit-appearance: none;
}

input:focus, select:focus, textarea:focus {
  border-color: #0066CC;
}

input[type="number"]::-webkit-outer-spin-button, input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=submit] {
  padding: 0;
}

address{
	font-style: normal;
}

.select-wrap {
  position: relative;
}

.select-wrap::after {
  content: "";
  width: 6px;
  height: 6px;
  border-bottom: 2px solid #A3A3A3;
  border-right: 2px solid #A3A3A3;
  position: absolute;
  right: 15px;
  bottom: 18px;
  transform: rotate(45deg);
}

select {
  min-width: 7em;
  padding: 11px 10px;
}

input[type=checkbox], input[type=radio] {
  background: #FFF;
  cursor: pointer;
  margin-right: .5em;
  width: auto;
  vertical-align: -5px;
}

button{
	background-color: #0066cc;
}	



/*====================================
       共通使用　CSS
======================================*/

/*----- 全体のスクロール領域 -----*/
.wrapper {
  overflow-x: hidden;
}






/*----- 項目ごとの幅 -----*/
.container{
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 20px;
}

/*======================================*/
/*======================================*/
/* スマホ・タブレット対応　レスポンシブ */

@media (max-width: 767px){
	
.container{
	padding: 0 15px;
}
}





/*----- セクションごとの余白 -----*/

.sec-space{
	margin: 100px auto;
}

/*======================================*/
/*======================================*/
/* スマホ・タブレット対応　レスポンシブ */

@media (max-width: 767px){
	
.sec-space{
	margin: 50px auto;
}
}





/*----- セクションごとのタイトル -----*/

.sec-title{
	position: relative;
	margin: 0px auto 50px;
}

/*======================================*/
/*======================================*/
/* スマホ・タブレット対応　レスポンシブ */

@media (max-width: 767px){

.sec-title{
	margin: 0px auto 20px;
}
}




/*----- PC用を表示、SP用を非表示 -----*/

.img-pc { 
	display: block; 

}

.img-sp { 
	display: none; 
}


/*======================================*/
/*======================================*/
/* スマホ・タブレット対応　レスポンシブ */
@media (max-width: 768px) {
	
.img-pc { 
	display: none; 
}
	
.img-sp { 
	display: block; 
}
}





/* 紺色文字 */
.sec-title .sec-title-jp-dark-blue{
	position: absolute;
	font-size: 2rem;
	z-index: 10;
	color: var(--color-text-darkBlue);
	letter-spacing: var(--l-spacing-sm);
}

.sec-title .sec-title-en-dark-blue{
	font-size: 13rem;
	opacity: 0.05;
	color: var(--color-text-darkBlue);
	word-break: break-all; 
}

/* 白色文字 */
.sec-title .sec-title-jp-white{
	position: absolute;
	font-size: 2rem;
	z-index: 10;
	color: var(--color-text-white);
	letter-spacing: var(--l-spacing-sm);
}

.sec-title .sec-title-en-white{
	font-size: 13rem;
	opacity: 0.2;
	color: var(--color-text-white);
	word-break: break-all; 
}



/*======================================*/
/*======================================*/
/* スマホ・タブレット対応　レスポンシブ */

@media (max-width: 767px){
	
/* 紺色文字 */

.sec-title .sec-title-jp-dark-blue{
	font-size: 1.5rem;
	letter-spacing: var(--l-spacing-xs);
}
	
.sec-title .sec-title-en-dark-blue{
	font-size: 7rem;
}

/* 白色文字 */

.sec-title .sec-title-jp-white{
	font-size: 1.5rem;
	letter-spacing: var(--l-spacing-xs);
}
	
.sec-title .sec-title-en-white{
	font-size: 7rem;
}
}

@media (max-width: 380px){
	
/* 紺色文字 */
.sec-title .sec-title-en-dark-blue{
	font-size: 6.3rem;
}
	
/* 白色文字 */
.sec-title .sec-title-en-white{
	font-size: 6.3rem;
}
	
}



/*----- 紺色の背景グラデーション -----*/
.gradient-bg{
	background-image: var(--bg-gradient-darkBlue);
	background-image: var(--bg-webkit-gradient-darkBlue);
}



/*----- 背景線 -----*/

.bg-line {
  position: relative;     /* 擬似要素の基準にする */
  overflow: hidden;       /* はみ出した部分を隠す */
}

/* 背景の斜め線 */
.bg-line::before {
  content: "";
  position: absolute;
  top: 20%;
  left: -20%;
  width: 200%;            /* 画面よりちょい大きく */
  height: 500px;          /* 線の太さみたいなイメージ */
  background: rgba(0, 90, 180, 0.03);  /* かなり薄い青 */
  transform: rotate(-25deg);
  z-index: -1;            /* コンテンツより後ろに */
}


/*======================================*/
/*======================================*/
/* スマホ・タブレット対応　レスポンシブ */

@media (max-width: 767px){
	
/* 背景の斜め線 */
.bg-line::before {
  content: "";
  position: absolute;
  top: 20%;
  left: -60%;
}
}



/*----- 強調したい部分 -----*/

/* 青色マーカー（基本マーカー） */
.mark-base{
	color: var(--color-text-darkBlue);
	background: linear-gradient(transparent 60%, #e7efff 60%);
	font-size: 1.7rem;
}

@media (max-width: 767px){
	
.mark-base{
	font-size: 1.4rem;
}
}



/* 緑色マーカー */
.mark-green{
	color: var(--color-text-green);
	background: linear-gradient(transparent 60%, #e7ffee 60%);
	font-size: 2rem;
}

@media (max-width: 767px){

.mark-green{
	font-size: 1.6rem;
}
}



/* ピンクマーカー */
.mark-pink{
	color: var(--color-text-pink);
	background: linear-gradient(transparent 60%, #fff2fe 60%);
	font-size: 2rem;
}

@media (max-width: 767px){

.mark-green{
	font-size: 1.6rem;
}
}


/*====================================
       Grid System width Flex
======================================*/


.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.flex-row {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.flex-row-rev {
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}


.flex-nowrap {
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
}

.flex-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}

.flex-justify-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.flex-justify-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.flex-justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-justify-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-justify-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.flex-justify-space-evenly {
  -ms-flex-pack: distribute;
  justify-content: space-evenly;
}

.flex-align-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.flex-align-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.flex-align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-align-baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.flex-align-stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.flex-align-content-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-content: end;
}




/*======================================*/
/*======================================*/
/* スマホ・タブレット対応　レスポンシブ */

@media (max-width: 1200px){
	
.flex-col-1200 {
  -webkit-box-orient: stheimkpiloartie;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: column;
  flex-direction: column;
}
	
.flex-col-rev-1200 {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
}

@media (max-width: 767px){
	
.flex-col-767 {
  -webkit-box-orient: stheimkpiloartie;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: column;
  flex-direction: column;
}
	
.flex-col-rev-767 {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
}
