@charset "UTF-8";
@import url("grid.css");

:root { /* 色変更される場合は、#以降のカラーコードを変更してください IE非対応 */
    --base-color: #012169;
    --link-color: #666;
    --linkhover-color: #999;
    --back-color: #f7f7f7;
    --border-color: #ccc;
    --white-color: #fff;
}

img {
	max-width:100%;
	height: auto;/*高さ自動*/
}
a {
    display:block;
    color: var(--link-color);
    text-decoration-line: none;
}
a:hover { 
    color: var(--linkhover-color);
}

/*ヘッダー
-------------------------------------*/
.header {
	display: flex;
  flex-direction: row;
  padding: 2rem 0 0 0;
}
.header-box {
	margin-left: auto;
	margin-top: 8px;
}
.contact-button {
	padding: 1rem;
	border: 2px solid var(--base-color);
}
#header .mrt_logo {
  max-width: 150px;
}

@media screen and (min-width: 768px){
/* PC時はMENUボタンを非表示 */
#open,#close {
    display: none !important;
}

#navi {
    display: block !important;
}
}

@media screen and (max-width: 768px){
.header {
	flex-direction: column;
    margin-bottom: 10px;
}
.header #open,#close  {
    position: absolute;
    top: 20px;
    right: 12px;
}
nav ul {
	flex-direction: column;
}
.header li {
	padding-top: 0;
}
/* スマホ時はMENUボタンを表示 */
#open {
    display: block;
    background: url(../img/button.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
    border: none;
    position: absolute;
    top: 20px;
    right: 12px;
}
#close  {
    display: block;
    background: url(../img/button2.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
    border: none;
    position: absolute;
    top: 20px;
    right: 12px;
}
/* スマホ時はメニューを非表示 */
#navi {
    display: none;
}
}
    
/*メイン画像
-------------------------------------*/

.mainimg img {
	width: 100vw;
}

.maintext img {
	width: 90vw;
}



/*メインコンテンツ
-------------------------------------*/
main {
	margin: 0;
	width: 100%;
}
section {
	/*margin: 5rem 0;*/
	margin: 0 0;
	padding: 5rem 0;
}

.section_end {
    margin:0;
    padding: 5rem 0;
}


@media screen and (max-width: 641px) {
section {
	margin: 1rem 0;
	padding: 1rem 0;
}

.section_end {
    margin: 1rem 0 0;
    padding: 1rem 0;
}
}



.mv{
    position: relative;
}
.mv img{
	width:100%;
max-width: 100%;
height: auto;
}
.mv>div{
    position: absolute;
    left: 50%;
    top: 50%;
	/*コレ*/transform: translate(-50%,-50%);
	width: 70%;
}

.mv>div>h2{
    color: #012169;
    /*font-size: 350%;*/
	font-weight: bold;
	text-align: center;
}
.mv>div>p{
    color: #222;
      /*font-size: 120%;*/
	text-align: center;
	line-height: 200%;
	font-weight: bold;
}


/*メイン画像のテキスト
-------------------------------------*/

.maintext img {
	width: 60vw;
}



.service_bg {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    max-width: none;
    background: url(../img/service_bg.jpg) no-repeat center center / cover;
    width: 100%;
    height:auto;
}

.inquiries_bg {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    max-width: none;
    background: url(../img/inquiries_bg.jpg) no-repeat center center / cover;
    height:auto;
}

    

/*マージン
-------------------------------------*/
.mb10{
	margin-bottom: 10px !important;
}
.mb20{
	margin-bottom: 20px !important;
}
.mb30{
	margin-bottom: 30px !important;
}
.mt30{
	margin-top: 30px !important;
}
.mt10{
	margin-top: 10px !important;
}
.mt20{
	margin-top: 20px !important;
}
.mt30{
	margin-top: 30px !important;
}

/*キャッチコピー
-------------------------------------*/
.catch {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
	line-height: 220%;
	color: #ffffff; /* 文字色 */
  font-size: 24px; /* 文字の大きさ */
  position: absolute;
  left: 0;
  top: 0;
	
}
.catch h2 {
    padding-bottom: 1rem;
}

.center {
	text-align: center;
	margin-bottom: 2.5rem;
}

/*申し込みの流れ
-------------------------------------*/
.flow.row {
	margin-bottom: 3rem;
}

/*フッター
-------------------------------------*/
footer {
    background-color: var(--back-color); 
    padding: 5rem 0;
}
footer h4 {
    border-bottom: 3px solid var(--border-color);
}

/*お問い合わせ
-------------------------------------*/
.contact-box {
	border: 1px solid var(--border-color);
	text-align: center;
	padding: 2rem 0;
	background-color: #fff;
}
.table {
	margin: 4rem 0;
}
.table th {
	width: 250px;
}

/*コピーライト
-------------------------------------*/

element.style {
}
.copyright {
    text-align: center;
    padding: 2rem 0 1rem;
    background-color: var(--base-color);
	font-size: 1rem;
	color: #fff;
}


/*ページトップへ戻るボタン
-------------------------------------*/
#pagetop {
    position: fixed;
    bottom: 15px;
    right: 15px;
}
#pagetop a {
    display: block;
    background-color: var(--base-color);
    color: var(--white-color);
    width: 50px;
    padding: 10px 5px;
    text-align: center;
}
#pagetop a:hover {
    background-color: var(--link-color);
}



.pc_view{
  display: block;
}

.sp_view{
  display: none;
}




/* 幅768px以下の表示
-------------------------------------*/
@media screen and (max-width: 768px){

/*ヘッダー
-------------------------------------*/
.header-box {
	display: none;
}	
	
.mv>div{
    position: absolute;
    left: 50%;
    top: 50%;
	/*コレ*/transform: translate(-50%,-50%);
	width: 95%;
}

.mv>div>h2{
    color: #012169;
   /*font-size: 80%;*/
	font-weight: bold;
	text-align: center;
}
.mv>div>p{
    color: #222;
   font-size: 1.0rem;
	text-align: center;
}
	
	
h2 {
    font-size: 4.0rem;
    color: #012169;
    font-weight: bold;
}
	
	
	
.pc_view{
      display: none;
    }

.sp_view{
		display: block;
}	
}

.inquiry {
    font-size: 2.0rem;
    font-weight: bold;
}

.inquiry a{
    color: #ef7575;
}




@media screen and (max-width: 641px) {
h2 {
    font-size: 2.2rem;
    color: #012169;
    font-weight: bold;
    margin: 20px 0 0 0;
}
}


.img-sp {
    display: none;
}

@media screen and (max-width:560px) {
    .img-pc {
        display: none;
    }

    .img-sp {
        display: block;
    }
}



/*ポケナビヘッダーここから
-------------------------------------------------------------------------------------------------------------------------------------*/


html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
}

*,
::before,
::after {
  background-repeat: no-repeat;
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

::before,
::after {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  padding: 0;
  margin: 0;
}

/* # =================================================================
   # General elements
   # ================================================================= */
/* Add the correct display in iOS 4-7.*/
audio:not([controls]) {
  display: none;
  height: 0;
}

hr {
  overflow: visible;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden],
template {
  display: none;
}

abbr[title] {
  border-bottom: 1px dotted;
  text-decoration: none;
}

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  text-decoration: none;
}

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

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
}

b,
strong {
  font-weight: bolder;
}

dfn {
  font-style: italic;
}

/* Address styling not present in IE 8/9 */
mark {
  background-color: #ff0;
  color: #000;
}

/* https://gist.github.com/unruthless/413930 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* # =================================================================
   # Forms
   # ================================================================= */
input {
  border-radius: 0;
}

/* Apply cursor pointer to button elements */
button,
[type="button"],
[type="reset"],
[type="submit"],
[role="button"] {
  cursor: pointer;
}

/* Replace pointer cursor in disabled elements */
[disabled] {
  cursor: default;
}

[type="number"] {
  width: auto;
}

[type="search"] {
  -webkit-appearance: textfield;
}

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

textarea {
  overflow: auto;
  resize: vertical;
}

button,
input,
optgroup,
select,
textarea {
  font: inherit;
}

optgroup {
  font-weight: bold;
}

button {
  overflow: visible;
}

/* Remove inner padding and border in Firefox 4+ */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/* Replace focus style removed in the border reset above */
button:-moz-focusring,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  outline: 1px dotted ButtonText;
}

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

button,
select {
  text-transform: none;
}

/* Remove the default button styling in all browsers */
button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
  color: inherit;
}

/* Style select like a standard input */
select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

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

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

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

/* # =================================================================
   # Specify media element style
   # ================================================================= */
img {
  border-style: none;
}

/* Add the correct vertical alignment in Chrome, Firefox, and Opera */
progress {
  vertical-align: baseline;
}

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

audio,
canvas,
progress,
video {
  display: inline-block;
}

/* # =================================================================
   # Accessibility
   # ================================================================= */
/* Hide content from screens but not screenreaders */
@media screen {
  [hidden~="screen"] {
    display: inherit;
  }
  [hidden~="screen"]:not(:active):not(:focus):not(:target) {
    position: absolute !important;
    clip: rect(0 0 0 0) !important;
  }
}

/* Specify the progress cursor of updating elements */
[aria-busy="true"] {
  cursor: progress;
}

/* Specify the pointer cursor of trigger elements */
[aria-controls] {
  cursor: pointer;
}

/* Specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements */
[aria-disabled] {
  cursor: default;
}

/* # =================================================================
   # Selection
   # ================================================================= */
/* Specify text selection background color and omit drop shadow */

::selection {
  background-color: #b3d4fc;
  color: #000;
  text-shadow: none;
}

@IMPORT <link href="https://fonts.googleapis.com/css?family=Montserrat&display=swap" rel="stylesheet"> {}html {
  font-size: 10px;
}

body {
  position: relative;
  width: 100vw;
  margin: auto;
  color: #444;
  overflow-x: hidden;
  font-size: 24px;
  font-size: 3.75vw;
  font-family: 'Montserrat', sans-serif;
}

@media screen and (min-width: 641px) {
  body {
    font-size: 24px;
  }
}

@media screen and (min-width: 641px) {
  body {
    font-size: 1.6rem;
  }
}

main {
  display: block;
}

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

.d-sm {
  display: block;
}

@media screen and (min-width: 641px) {
  .d-sm {
    display: none;
  }
}

.d-md {
  display: none;
}

@media screen and (min-width: 641px) {
  .d-md {
    display: block;
  }
}

.d-lg {
  display: none;
}

@media screen and (min-width: 1000px) {
  .d-lg {
    display: block;
  }
}

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

.flex-wrap-bw {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-wrap-ar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

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

.flex-wrap-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.flex-wrap-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.ml-auto {
  margin-left: auto;
}

.mr-auto {
  margin-right: auto;
}

.mx-auto {
  margin: auto;
}

.d-block {
  display: block;
}

.d-inblock {
  display: inline-block;
}

.d-inline {
  display: inline;
}

.d-none {
  display: none;
}

.d-center {
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 641px) {
  .d-md-center {
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (min-width: 1000px) {
  .d-lg-center {
    margin-left: auto;
    margin-right: auto;
  }
}

.d-left {
  margin-right: auto;
}

@media screen and (min-width: 641px) {
  .d-md-left {
    margin-right: auto;
  }
}

@media screen and (min-width: 1000px) {
  .d-lg-left {
    margin-right: auto;
  }
}

.d-right {
  margin-left: auto;
}

@media screen and (min-width: 641px) {
  .d-md-right {
    margin-left: auto;
  }
}

@media screen and (min-width: 1000px) {
  .d-lg-right {
    margin-left: auto;
  }
}

.txt-left {
  text-align: left;
}

.txt-right {
  text-align: right;
}

.txt-center {
  text-align: center;
}

.relative {
  position: relative;
}

.abs {
  position: absolute;
}

.hover-opacity {
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
}

.hover-opacity:hover {
  opacity: 0.8;
}

.fadein, .fadeup, .fadedown, .fadeleft, .faderight {
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
  opacity: 0 !important;
}

.fadeup {
  -webkit-transform: translateY(20px) !important;
  -ms-transform: translateY(20px) !important;
  transform: translateY(20px) !important;
}

.fadedown {
  -webkit-transform: translateY(-20px) !important;
  -ms-transform: translateY(-20px) !important;
  transform: translateY(-20px) !important;
}

.fadeleft {
  -webkit-transform: translateX(-20px) !important;
  -ms-transform: translateX(-20px) !important;
  transform: translateX(-20px) !important;
}

.faderight {
  -webkit-transform: translateX(20px) !important;
  -ms-transform: translateX(20px) !important;
  transform: translateX(20px) !important;
}

.fadein.active,
.fadeup.active,
.fadedown.active,
.fadeleft.active,
.faderight.active {
  opacity: 1 !important;
  -webkit-transform: translate(0, 0) !important;
  -ms-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
}

/*
    Color panel */
/*
    Font size */
.font40 {
  font-size: 40px;
  font-size: 6.25vw;
}

@media screen and (min-width: 641px) {
  .font40 {
    font-size: 40px;
  }
}

.font22 {
  font-size: 22px;
  font-size: 3.4375vw;
}

@media screen and (min-width: 641px) {
  .font22 {
    font-size: 22px;
  }
}

.font24 {
  font-size: 24px;
  font-size: 3.75vw;
}

@media screen and (min-width: 641px) {
  .font24 {
    font-size: 24px;
  }
}

.font28 {
  font-size: 28px;
  font-size: 4.375vw;
}

@media screen and (min-width: 641px) {
  .font28 {
    font-size: 28px;
  }
}

.font32 {
  font-size: 32px;
  font-size: 5vw;
}

@media screen and (min-width: 641px) {
  .font32 {
    font-size: 32px;
  }
}

.font36 {
  font-size: 36px;
  font-size: 5.625vw;
}

@media screen and (min-width: 641px) {
  .font36 {
    font-size: 36px;
  }
}

.font60 {
  font-size: 60px;
  font-size: 9.375vw;
}

@media screen and (min-width: 641px) {
  .font60 {
    font-size: 60px;
  }
}

.font80 {
  font-size: 80px;
  font-size: 12.5vw;
}

@media screen and (min-width: 641px) {
  .font80 {
    font-size: 80px;
  }
}

.font26 {
  font-size: 26px;
  font-size: 4.0625vw;
}

@media screen and (min-width: 641px) {
  .font26 {
    font-size: 26px;
  }
}

/*
    Header content */
#header {
  width: 100%;
  height: 3.75em;
  position: fixed;
  z-index: 9999;
  background-color: #ffffff;
  padding-left: 4.68%;
  text-align: center;
}

@media screen and (min-width: 641px) {
  #header {
    height: 7.4rem;
    padding-left: 3%;
  }
}

@media screen and (min-width: 1100px) {
  #header {
    position: relative;
  }
}

#header a {
  color: #ffffff;
}

#header .flex-wrap-bw {
  height: 100%;
}

#header .header-left {
  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;
  width: 37%;
  text-align: left;
}

@media screen and (min-width: 641px) {
  #header .header-left {
    width: 15.5%;
    min-width: 15rem;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
    text-align: left;
  }
  #header .header-left:hover {
    opacity: 0.7;
  }
}

#header .header-left a {
  width: 100%;
  display: inline-block;
  vertical-align: middle;
}

#header .header-right {
  z-index: 9999;
  position: relative;
  width: 60%;
  height: 100%;
  font-size: 18px;
  font-size: 2.8125vw;
}

@media screen and (min-width: 641px) {
  #header .header-right {
    font-size: 18px;
  }
}

@media screen and (min-width: 641px) {
  #header .header-right {
    width: 71%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}

@media screen and (min-width: 1000px) {
  #header .header-right {
    width: 80%;
  }
}

#header .header-icon-area {
  height: 100%;
  width: 100%;
}

@media screen and (min-width: 1000px) {
  #header .header-icon-area {
    width: 37%;
    max-width: 41rem;
  }
}

#header .header-link {
  width: 30%;
  height: 100%;
  display: block;
  color: #ffffff;
  position: relative;
}

#header .header-link img {
  position: absolute !important;
  top: 50%!important;
  left: 50%!important;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: auto;
  height: 85%;
}

@media screen and (min-width: 641px) {
  #header .header-link img {
    width: 81%;
    height: auto;
  }
}

#header .header-icon-sp {
  display: block;
}

@media screen and (min-width: 641px) {
  #header .header-icon-sp {
    display: none;
  }
}

#header .header-icon-pc {
  display: none;
}

@media screen and (min-width: 641px) {
  #header .header-icon-pc {
    display: block;
    position: absolute !important;
    top: 50%!important;
    left: 50%!important;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
  }
}

@media screen and (min-width: 641px) {
  #header .link-blue {
    width: 30%;
    min-width: 15rem;
  }
  #header .link-blue img {
    width: 70%;
    height: auto;
    max-width: 14rem;
  }
}

@media screen and (min-width: 1000px) {
  #header .link-blue {
    width: 40%;
    min-width: auto;
    max-width: 18rem;
  }
}

@media screen and (min-width: 641px) {
  #header .link-gold {
    width: 40%;
    min-width: 20rem;
  }
  #header .link-gold img {
    max-width: 20rem;
  }
}

@media screen and (min-width: 1000px) {
  #header .link-gold {
    width: 60%;
    min-width: auto;
    max-width: 23rem;
  }
}

#header .header-link-icon {
  font-size: 30px;
  font-size: 4.6875vw;
  padding-top: 0.33em;
}

@media screen and (min-width: 641px) {
  #header .header-link-icon {
    font-size: 30px;
  }
}

#header #menuTgg {
  width: 30%;
  max-width: 10rem;
  height: 100%;
  display: block;
  color: #ffffff;
  text-align: center;
  background-color: #012169;
  padding-top: 1em;
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
}

@media screen and (min-width: 641px) {
  #header #menuTgg {
    width: 20%;
  }
}

@media screen and (min-width: 1000px) {
  #header #menuTgg {
    display: none;
  }
}

#header #menuTgg .tgg-bar {
  background-color: #ffffff;
  display: block;
  width: 36.3636%;
  height: 0.22em;
  margin: 0.7em auto 1.2em;
  position: relative;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media screen and (min-width: 641px) {
  #header #menuTgg .tgg-bar {
    margin-bottom: 0.7em;
  }
}

#header #menuTgg .tgg-bar::before, #header #menuTgg .tgg-bar::after {
  content: "";
  background-color: #ffffff;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  display: block;
  width: 100%;
  height: 0.22em;
  position: absolute;
  left: 0;
}

#header #menuTgg .tgg-bar::before {
  top: -0.7em;
}

#header #menuTgg .tgg-bar::after {
  bottom: -0.7em;
}

#header #menuTgg.act {
  background-color: #49ace3;
}

#header #menuTgg.act .tgg-bar {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

#header #menuTgg.act .tgg-bar::before {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  top: 0em;
  opacity: 0;
}

#header #menuTgg.act .tgg-bar::after {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  bottom: 0em;
}

/*
    Nav css */
#headerNav {
  width: 100%;
  position: fixed;
  z-index: -1;
  top: 8%;
  left: 0;
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
  -webkit-transform: translate3d(0, -150%, 0);
  transform: translate3d(0, -150%, 0);
}

@media screen and (min-width: 641px) {
  #headerNav {
    top: 7.4rem;
  }
}

@media screen and (min-width: 1000px) {
  #headerNav {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    position: relative;
    width: 62%;
    top: auto;
    left: auto;
  }
}

#headerNav .header-nav-pc {
  display: none;
}

@media screen and (min-width: 1000px) {
  #headerNav .header-nav-pc {
    display: block;
  }
}

#headerNav .header-nav-pc .header-nav-list,
#headerNav .header-nav-pc .menu-item {

  list-style: none;
  width: auto;
  line-height: 7.4rem;
  padding: 0 3.5%;
  position: relative;
  white-space: nowrap;
}

#headerNav .header-nav-pc .header-nav-list::before,
#headerNav .header-nav-pc .menu-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  width: 1px;
  height: 1.2em;
  border-left: 1px solid #c0c0c0;
}

#headerNav .header-nav-pc .header-nav-list a,
#headerNav .header-nav-pc .menu-item a {
  display: block;
  width: 100%;
  color: #204a8a;
  white-space: nowrap;
  font-weight: bold;
  position: relative;
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
}

#headerNav .header-nav-pc .header-nav-list a::before,
#headerNav .header-nav-pc .menu-item a::before {
  content: "";
  opacity: 0;
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
  width: 100%;
  height: 3px;
  background-color: #026adb;
  position: absolute;
  bottom: 0;
  left: 0;
}

#headerNav .header-nav-pc .header-nav-list a:hover,
#headerNav .header-nav-pc .menu-item a:hover {
  color: #026adb;
}

#headerNav .header-nav-pc .header-nav-list a:hover::before,
#headerNav .header-nav-pc .menu-item a:hover::before {
  opacity: 1;
}

#headerNav .header-nav-pc .header-nav-list:first-of-type,
#headerNav .header-nav-pc .menu-item:first-of-type {
  padding-left: 0;
}

#headerNav .header-nav-pc .header-nav-list:first-of-type::before,
#headerNav .header-nav-pc .menu-item:first-of-type::before {
  border: none;
}

#headerNav .header-nav-sp {
  background-color: rgba(73, 172, 227, 0.9);
  padding-bottom: 3rem;
  padding-top: 2.8em;
}

@media screen and (min-width: 1000px) {
  #headerNav .header-nav-sp {
    display: none;
  }
}

#headerNav .header-nav-sp ul {
  margin-bottom: 2.8em;
}

#headerNav .header-nav-sp .menu-item {
  font-size: 28px;
  font-size: 4.375vw;
  line-height: 3.57143;
  list-style: none;
  text-align: left;
  border-bottom: 1px solid #ffffff;
}

@media screen and (min-width: 641px) {
  #headerNav .header-nav-sp .menu-item {
    font-size: 28px;
  }
}

@media screen and (min-width: 641px) {
  #headerNav .header-nav-sp .menu-item {
    font-size: 20px !important;
  }
}

#headerNav .header-nav-sp .menu-item a {
  display: inline-block;
  width: 100%;
	position: relative;
	text-align: left;
}

#headerNav .header-nav-sp .menu-item .fas {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

#headerNav .header-nav-sp .footer-app-title {
  color: #ffffff;
  margin-bottom: 0.69231em;
}

@media screen and (min-width: 641px) {
  #headerNav .header-nav-sp .footer-app-title {
    font-size: 20px;
  }
}

#headerNav .header-nav-sp .footer-app-txt {
  color: #ffffff;
}

@media screen and (min-width: 641px) {
  #headerNav .header-nav-sp .footer-app-txt {
    font-size: 20px;
  }
}

#headerNav .header-nav-sp .app-box-2 {
  padding-top: 0;
}

#headerNav .header-nav-sp .app-banner {
  width: 41%;
}

#headerNav.act {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/*
    Footer content */
#footerNav{
  text-align: center;
}
#footerNav .menu-item{
  display: inline-block;
}
#footerNav .menu-item::before{
  content: "|";
  display: inline-block;
}
#footerNav .menu-item:first-child::before{
  content: "";
}
#footerNav .menu-item::marker{
  content: "";
  display: inline-block;
}
#footerNav .menu-item,
#footerNav .menu-item a {
  color:#fff;
  font-size: 1.6rem;
  display: inline-block;
}
#footerNav .menu-item a {
  padding: 0 1rem;
}

#footer {
  background-color: #49ace3;
  padding: 7rem 0 4rem;
  text-align: center;
  color: #ffffff;
}

@media screen and (min-width: 641px) {
  #footer {
    text-align: left;
    padding-top: 4rem;
  }
}

#footer a {
  color: #ffffff;
}

#footer .footer-left {
  width: 100%;
}

@media screen and (min-width: 641px) {
  #footer .footer-left {
    width: 60%;
  }
}

#footer .footer-logo {
  width: 100%;
  font-size: 66px;
  font-size: 10.3125vw;
  padding-bottom: 1em;
}

@media screen and (min-width: 641px) {
  #footer .footer-logo {
    font-size: 66px;
  }
}

@media screen and (min-width: 641px) {
  #footer .footer-logo {
    padding-bottom: 2rem;
    font-size: 9px;
  }
}

#footer .footer-logo img {
  width: 74.46%;
}

@media screen and (min-width: 641px) {
  #footer .footer-logo img {
    width: 42.4%;
  }
}

#footer .footer-nav {
  padding-bottom: 2rem;
  list-style: none;
}

#footer .footer-nav-list {
  display: inline-block;
  width: 46.5%;
  text-align: left;
  margin-bottom: 1.20833em;
  padding-bottom: 1.125em;
  border-bottom: 1px solid #ffffff;
  list-style: none;
}

@media screen and (min-width: 641px) {
  #footer .footer-nav-list {
    width: auto;
    padding-bottom: 0;
    padding-right: 2rem;
    margin-bottom: 3rem;
    -webkit-margin-end: 2rem;
    margin-inline-end: 2rem;
    border-bottom: none;
    border-right: 1px solid #ffffff;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
  }
  #footer .footer-nav-list:hover {
    opacity: 0.7;
  }
}

#footer .footer-contact-link {
  display: inline-block;
  text-align: center;
  width: 100%;
  line-height: 3;
  margin-bottom: 0.66667em;
}

@media screen and (min-width: 641px) {
  #footer .footer-contact-link {
    width: 21rem;
  }
}

#footer .footer-contact-link span {
  position: relative;
}

@media screen and (min-width: 641px) {
  #footer .footer-contact-link span {
    margin-left: 1em;
  }
}

#footer .link-gold {
  font-size: 32px;
  font-size: 5vw;
}

@media screen and (min-width: 641px) {
  #footer .link-gold {
    font-size: 32px;
  }
}

@media screen and (min-width: 641px) {
  #footer .link-gold {
    font-size: 1.8rem;
  }
}

#footer .link-gold .fas {
  position: absolute;
  top: 50%;
  left: -18%;
  -webkit-transform: translateY(-50%) scaleX(-1);
  -ms-transform: translateY(-50%) scaleX(-1);
  transform: translateY(-50%) scaleX(-1);
  font-size: 0.6em;
}

#footer .link-blue {
  font-size: 30px;
  font-size: 4.6875vw;
  line-height: 3.4;
}

@media screen and (min-width: 641px) {
  #footer .link-blue {
    font-size: 30px;
  }
}

@media screen and (min-width: 641px) {
  #footer .link-blue {
    font-size: 1.6rem;
  }
}

#footer .link-blue .fas {
  position: absolute;
  top: 50%;
  left: -12%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 0.8em;
}

#footer .footer-pb-1 {
  margin-bottom: 6rem;
}

@media screen and (min-width: 641px) {
  #footer .footer-pb-1 {
    margin: 0;
  }
}

#footer .footer-right {
  width: 100%;
}

@media screen and (min-width: 641px) {
  #footer .footer-right {
    width: 30%;
  }
}

#footer .app-box-2 {
  padding-top: 0;
}

@media screen and (min-width: 641px) {
  #footer .app-box-2 {
    text-align: left;
    padding-bottom: 0;
  }
}

#footer .app-box-2 .app-banner {
  width: 41%;
}

@media screen and (min-width: 641px) {
  #footer .app-box-2 .app-banner {
    padding-bottom: 1.4rem;
    padding-left: 0;
    padding-right: 2rem;
    min-width: 150px;
  }
}

#footer .footer-app-title {
  font-size: 26px;
  font-size: 4.0625vw;
  margin-bottom: 0.69231em;
  letter-spacing: 0.05em;
  font-weight: bold;
}

@media screen and (min-width: 641px) {
  #footer .footer-app-title {
    font-size: 26px;
  }
}

@media screen and (min-width: 641px) {
  #footer .footer-app-title {
    font-size: 1.6rem;
  }
}

#footer .footer-app-txt {
  margin-bottom: 1.95455em;
}

@media screen and (min-width: 641px) {
  #footer .footer-app-txt {
    margin-bottom: 2rem;
  }
}

@media screen and (min-width: 641px) {
  #footer .font22 {
    font-size: 1.6rem !important;
  }
}

/*
    Common block content */
#main {
  padding-top: 3.75em;
}

@media screen and (min-width: 641px) {
  #main {
    padding-top: 7.4rem;
  }
}

@media screen and (min-width: 1100px) {
  #main {
    padding-top: 0;
  }
}

.padding {
  padding-left: 6.25%;
  padding-right: 6.25%;
}

@media screen and (min-width: 641px) {
  .padding {
    padding-left: 9.5588%;
    padding-right: 9.5588%;
  }
}

.common-section-1 {
  padding-top: 12.5%;
  padding-bottom: 12.5%;
}

@media screen and (min-width: 641px) {
  .common-section-1 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.link-gold {
  background-color: #677aa5;
	border-top: 5px solid #2a4581;
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
}

.link-gold:hover {
  background-color: #2a4581;
}

.link-blue {
	background-color: #ff823d;
	border-top: 5px solid #a83c00;
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
}

.link-blue:hover {
  background-color: #a83c00;
}

.app-box-2 {
  text-align: center;
  padding-top: 4.68%;
  padding-bottom: 4.68%;
  position: relative;
  z-index: 99;
}

.app-box-2 .app-banner {
  display: inline-block;
  width: 27.5%;
  padding: 0 1rem;
}

@media screen and (min-width: 641px) {
  .app-box-2 .app-banner {
    width: 20%;
    max-width: 20rem;
    min-width: 15rem;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
  }
  .app-box-2 .app-banner:hover {
    opacity: 0.7;
  }
}

.btn-arrow {
  width: 1.8rem;
  height: 1.8rem;
  position: absolute;
  top: 50%;
  right: 5%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #ffffff;
  border-radius: 50%;
}

@media screen and (min-width: 460px) {
  .btn-arrow {
    width: 2.8rem;
    height: 2.8rem;
  }
}

.btn-arrow .fas {
  color: #4ca3d4;
  font-size: 15px;
  position: absolute !important;
  top: 50%!important;
  left: 50%!important;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.btn-box-1 {
  display: block;
  width: 80%;
  margin: auto;
  height: auto;
  line-height: 3.75;
  text-align: center;
  position: relative;
  border-radius: 4.45rem;
  color: #ffffff;
  position: relative;
  max-width: 40rem;
  background-color: #4ca3d4;
}

@media screen and (min-width: 641px) {
  .btn-box-1 {
    width: 41%;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
  }
  .btn-box-1:hover {
    background-color: #026adb;
  }
}

.btn-box-2 {
  display: block;
  width: 80%;
  margin: auto;
  height: auto;
  line-height: 2.318;
  text-align: center;
  position: relative;
  border-radius: 4.45rem;
  color: #ffffff;
  background-color: #333333;
  position: relative;
}

@media screen and (min-width: 641px) {
  .btn-box-2 {
    line-height: 2.2em;
    margin-left: 0;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
  }
  .btn-box-2:hover {
    background-color: #023392;
  }
}

.btn-box-2 .btn-arrow {
  width: 1.5rem;
  height: 1.5rem;
}

@media screen and (min-width: 460px) {
  .btn-box-2 .btn-arrow {
    width: 2rem;
    height: 2rem;
  }
}

@media screen and (min-width: 641px) {
  .btn-box-2 .btn-arrow {
    width: 1.5rem;
    height: 1.5rem;
    right: 4%;
  }
}

.btn-box-2 .btn-arrow .fas {
  color: #333333;
  font-size: 12px;
}

#topView {
  width: 100%;
  height: 0;
  padding-top: 78.12%;
  position: relative;
  background: url("../img/top_bg_2.jpg");
  background-position: center center;
  background-size: cover;
}

@media screen and (min-width: 641px) {
  #topView {
    background: url("../img/top_bg_1.jpg");
    background-position: center center;
    background-size: cover;
    padding-top: 0;
    height: 66rem;
  }
}

#topView .top-box-1 {
  position: absolute !important;
  top: 50%!important;
  left: 0%!important;
  -webkit-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  text-align: center;
  width: 100%;
}

#topView .top-title {
  font-weight: normal;
  color: #ffffff;
  margin-bottom: 0.85em;
  line-height: 1.65;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 641px) {
  #topView .top-title {
    font-size: 4.5rem;
  }
}

#topView .top-title img {
	width: 80%;
    padding-top: 6rem;
    margin: 0 auto;
}

@media screen and (min-width: 641px) {
  #topView .top-title img {
     width: 80rem;
    /* padding-bottom: 1rem; */
    /* padding-top: 2.5rem; */
    margin: 3rem auto 0;
  }
}

#topView .top-img-1 {
  height: auto;
  text-align: center;
}

@media screen and (min-width: 641px) {
  #topView .top-img-1 {
    width: 31.6rem;
    position: absolute;
    bottom: 4rem;
    left: 3%;
  }
}

#topView .top-img-1 img {
  width: 54.82%;
}

@media screen and (min-width: 641px) {
  #topView .top-img-1 img {
    width: 100%;
  }
}

@media screen and (min-width: 641px) {
  #topView .top-img-sp {
    display: none;
  }
}

#topView .top-img-pc {
  display: none;
}

@media screen and (min-width: 641px) {
  #topView .top-img-pc {
    display: block;
  }
}

/*
    App store link area csss */
#appContent {
  padding-bottom: 0;
  position: relative;
}

@media screen and (min-width: 641px) {
  #appContent .padding {
    max-width: 144rem;
    margin: auto;
  }
}

#appContent .app-box-1 {
  position: relative;
  z-index: 200;
}

#appContent .app-txt-1 {
  font-weight: bold;
  color: #204a8a;
  margin-bottom: 0.5em;
}

@media screen and (min-width: 641px) {
  #appContent .app-txt-1 {
    font-size: 1.6rem;
  }
}

#appContent .app-title-1 {
  color: #4ca3d4;
  line-height: 1.58824;
  margin-bottom: 0.79412em;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 641px) {
  #appContent .app-title-1 {
    font-size: 3.2rem;
  }
}

#appContent .app-txt-2 {
  line-height: 1.5;
}

#appContent .app-pb {
  margin-bottom: 1.25em;
}

@media screen and (min-width: 641px) {
  #appContent .app-pb {
    margin-bottom: 4rem;
  }
}

#appContent .app-img-1 {
  width: 100%;
  z-index: -1;
  position: relative;
  max-width: 70rem;
}

@media screen and (min-width: 641px) {
  #appContent .app-img-1 {
    width: 50%;
    position: absolute;
    bottom: 0;
    right: -10%;
    z-index: 100;
  }
}

@media screen and (min-width: 1000px) {
  #appContent .app-img-1 {
    right: 0%;
  }
}

@media screen and (min-width: 1180px) {
  #appContent .app-img-1 {
    right: 5%;
  }
}

@media screen and (min-width: 1440px) {
  #appContent .app-img-1 {
    left: 50%;
    right: auto;
  }
}

#appContent .app-box-2 {
  z-index: 90;
  background-color: #f6f6f6;
  position: relative;
}

@media screen and (min-width: 641px) {
  #appContent .app-box-2 {
    text-align: left;
    padding-top: 3rem;
    padding-left: 13.3823%;
    padding-bottom: 3rem;
  }
}

@media screen and (min-width: 1000px) {
  #appContent .app-box-2 {
    padding-left: 9.5588%;
    padding-right: 9.5588%;
  }
}

#appContent .app-max-wight {
  max-width: 114rem;
  margin: auto;
}

@media screen and (min-width: 641px) {
  #appContent .app-banner {
    width: 12.4%;
  }
}

/*
    performance css */
#performance {
  background-color: #eaf7fe;
}

#performance .perform-title {
  width: 87.5%;
  margin-left: auto;
  margin-right: auto;
  font-size: 36px;
  font-size: 5.625vw;
  margin-bottom: 1.52778em;
}

@media screen and (min-width: 641px) {
  #performance .perform-title {
    font-size: 36px;
  }
}

@media screen and (min-width: 641px) {
  #performance .perform-title {
    width: 53.5%;
    margin-bottom: 4rem;
  }
}

#performance .perform-point .perform-img {
  font-size: 40px;
  font-size: 6.25vw;
  padding-bottom: 1.75em;
}

@media screen and (min-width: 641px) {
  #performance .perform-point .perform-img {
    font-size: 40px;
  }
}

@media screen and (min-width: 641px) {
  #performance .perform-point .perform-img {
    width: 30.91%;
    padding-bottom: 0;
  }
}

#performance .perform-point .perform-img:last-of-type {
  padding: 0;
}

/*
    features css */
#features {
  text-align: center;
  padding-top: 14%;
  padding-bottom: 20%;
  position: relative;
}

@media screen and (min-width: 641px) {
  #features {
    padding-top: 7rem;
    padding-bottom: 10rem;
  }
}

#features .features-title-1 {
  margin-bottom: 0.875em;
}

@media screen and (min-width: 641px) {
  #features .features-title-1 {
    font-size: 10px;
    margin-bottom: 6rem;
  }
}

#features .features-title-1 img {
  width: 57%;
}

@media screen and (min-width: 641px) {
  #features .features-title-1 img {
    width: 31.91%;
  }
}

#features .features-txt-1 {
  margin-bottom: 2.5em;
}

#features .features-box-1 {
  padding-left: -6.25%;
  padding-right: -6.25%;
}

@media screen and (min-width: 641px) {
  #features .features-box-1 {
    padding: 0;
  }
}

#features .features-box-2 {
  width: 100%;
  margin-bottom: 2.5em;
}

@media screen and (min-width: 641px) {
  #features .features-box-2 {
    width: 86.764%;
    margin-bottom: 8rem;
  }
}

@media screen and (min-width: 641px) {
  #features .features-margin {
    margin-left: auto;
  }
}

#features .features-box-4 {
  margin-bottom: 1rem;
}

#features .features-title-3 {
  margin-bottom: 1.5625em;
  padding-bottom: 0.875em;
  position: relative;
  font-weight: bold;
  color: #204a8a;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 641px) {
  #features .features-title-3 {
    font-size: 2.6rem;
  }
  #features .features-title-3 br {
    display: none;
  }
}

#features .features-title-3::after {
  content: "";
  width: 5.4rem;
  height: 1px;
  background-color: #4ca3d4;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media screen and (min-width: 641px) {
  #features .flex-wrap {
    margin: 0 -2.2727%;
  }
}

#features .features-company {
  width: 45%;
  margin-bottom: 1.25em;
}

#features .features-company:nth-of-type(odd) {
  margin-right: auto;
}

@media screen and (min-width: 641px) {
  #features .features-company:nth-of-type(odd) {
    margin-right: 0;
  }
}

@media screen and (min-width: 641px) {
  #features .features-company {
    width: 16%;
    margin: 0 2.2727% 3rem;
  }
}

#features .btn-box-1 {
  margin-top: 1em;
}

@media screen and (min-width: 641px) {
  #features .btn-box-1 {
    margin-top: 2em;
  }
}

#features .features-bg-1, #features .features-bg-2 {
  display: none;
}

@media screen and (min-width: 641px) {
  #features .features-bg-1, #features .features-bg-2 {
    display: block;
    position: absolute;
    z-index: -1;
  }
}

#features .features-bg-1 {
  top: 33%;
  left: 0%;
  width: 35%;
}

#features .features-bg-2 {
  top: -8%;
  right: 0%;
  width: 30%;
}

/*
    Case study css */
#caseStudy {
  background-color: #eaf7fe;
  position: relative;
  padding-top: 20%;
  padding-bottom: 12.5%;
}

@media screen and (min-width: 641px) {
  #caseStudy {
    padding-top: 13rem;
    padding-bottom: 8rem;
  }
}

#caseStudy .study-title-1 {
  text-align: center;
  position: absolute;
  top: -1.5%;
  left: 0;
  width: 100%;
}

@media screen and (min-width: 641px) {
  #caseStudy .study-title-1 {
    top: -7rem;
  }
}

@media screen and (min-width: 1000px) {
  #caseStudy .study-title-1 {
    top: -5rem;
  }
}

#caseStudy .study-title-1 img {
  width: 73%;
}

@media screen and (min-width: 641px) {
  #caseStudy .study-title-1 img {
    width: 33.3%;
  }
}

#caseStudy .study-box-1 {
  margin-bottom: 4.5rem;
  padding: 0 3rem;
}

@media screen and (min-width: 641px) {
  #caseStudy .study-box-1 {
    padding: 0;
    width: 30.5%;
    margin-bottom: 5.5rem;
  }
}

#caseStudy .study-title-2 {
  margin-top: 0.83333em;
  margin-bottom: 0.27778em;
  color: #204a8a;
}

@media screen and (min-width: 641px) {
  #caseStudy .study-title-2 {
    font-size: 2.2rem;
    margin-bottom: 0;
  }
}

#caseStudy .study-title-3 {
  margin-bottom: 0.96154em;
  color: #204a8a;
}

@media screen and (min-width: 641px) {
  #caseStudy .study-title-3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
}

#caseStudy .study-txt-1 {
  line-height: 1.5;
  margin-bottom: 1.33333em;
  padding-bottom: 1.41em;
  border-bottom: 1px solid #ffffff;
}

@media screen and (min-width: 641px) {
  #caseStudy .study-txt-1 {
    padding-bottom: 1.4rem;
    margin-bottom: 2rem;
  }
}

#caseStudy .study-txt-2 {
  line-height: 1.63636;
}

@media screen and (min-width: 641px) {
  #caseStudy .study-txt-2 {
    font-size: 1.4rem;
  }
}

/*
    service css */
#service {
  color: #ffffff;
  background: url("../img/service_bg.jpg");
  background-position: center center;
  background-size: cover;
}

@media screen and (min-width: 641px) {
  #service {
    background: url("../img/service_bg_2.jpg");
    background-position: center center;
    background-size: cover;
  }
}

#service .service-title-1 {
  margin-bottom: 0.25em;
  text-align: center;
  line-height: 1;
}

#service .service-txt-1 {
  margin-bottom: 1.53846em;
  text-align: center;
}

#service .service-txt-2 {
  line-height: 1.5;
}

@media screen and (min-width: 800px) {
  #service .service-txt-2 {
    text-align: center;
  }
}

#service .service-pb-1 {
  margin-bottom: 5rem;
}

#service .service-box-1 {
  margin-bottom: 2.1em;
  background-color: #ffffff;
  border-radius: 5px;
}

#service .service-box-1:nth-of-type(2) {
  margin-bottom: 5rem;
}

@media screen and (min-width: 800px) {
  #service .service-box-1 {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    min-width: 70rem;
  }
}

#service .service-box-2 {
  position: relative;
  padding-bottom: 1em;
}

@media screen and (min-width: 800px) {
  #service .service-box-2 {
    width: 34%;
    padding-bottom: 0;
  }
}

#service .service-img-top {
  width: 66%;
  position: absolute;
  top: -1em;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 5px;
}

@media screen and (min-width: 800px) {
  #service .service-img-top {
    width: 82%;
    top: -0.8em;
    left: 45%;
  }
}

#service .service-img-bottom {
  padding: 2px;
}

#service .service-box-3 {
  width: 100%;
  color: #333333;
}

@media screen and (min-width: 800px) {
  #service .service-box-3 {
    position: relative;
    width: 64%;
    font-size: 2rem;
  }
}

#service .service-box-3 .service-pb {
  padding-bottom: 1em;
}

@media screen and (min-width: 800px) {
  #service .service-box-3 .service-pb {
    padding-bottom: 0.5em;
  }
}

#service .btn-box-2 {
  font-size: 22px;
  font-size: 3.4375vw;
}

@media screen and (min-width: 641px) {
  #service .btn-box-2 {
    font-size: 22px;
  }
}

@media screen and (min-width: 641px) {
  #service .btn-box-2 {
    margin-left: auto;
    margin-right: auto;
    font-size: 1.5rem;
    width: 26rem;
  }
}

@media screen and (min-width: 800px) {
  #service .btn-box-2 {
    margin-left: 0;
  }
}

#service .app-box-2 {
  padding-top: 0;
}

#service .app-box-2 .app-banner {
  width: 40%;
}

@media screen and (min-width: 641px) {
  #service .app-box-2 .app-banner {
    width: 20%;
  }
}

#service .centering {
  padding: 0 1.25em 1.666em;
}

@media screen and (min-width: 800px) {
  #service .centering {
    width: 100%;
    position: absolute !important;
    top: 50%!important;
    left: 50%!important;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding: 0 0 0 1.75em;
  }
}

/*
    contentsArea css */
#contentsArea .movie-box {
  margin-bottom: 5.5rem;
  width: 100%;
}

@media screen and (min-width: 641px) {
  #contentsArea .movie-box {
    width: 48%;
    margin-bottom: 10rem;
  }
}

#contentsArea .movie-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

#contentsArea .movie-wrap iframe {
  width: 100%;
  height: 100%;
  position: absolute !important;
  top: 50%!important;
  left: 50%!important;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#contentsArea .movie-title {
  line-height: 3.33333;
  border-bottom: 1px solid #204a8a;
}

@media screen and (min-width: 641px) {
  #contentsArea .movie-title {
    font-size: 2rem;
    line-height: 3.3;
  }
}

#contentsArea .news-box-wrap {
  width: 100%;
  padding-bottom: 8rem;
}

@media screen and (min-width: 641px) {
  #contentsArea .news-box-wrap {
    padding: 0 4.5454% 8rem;
  }
}

#contentsArea .news-box-1 {
  width: 100%;
}

#contentsArea .news-box-1 .btn-box-2 {
  margin-left: 0;
  display: none;
}

@media screen and (min-width: 641px) {
  #contentsArea .news-box-1 {
    width: 20%;
  }
  #contentsArea .news-box-1 .btn-box-2 {
    display: block;
    width: 80%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 0.5em;
    text-align: left;
    min-width: 9rem;
    font-size: 8px;
    font-size: 1vw;
  }
}

@media screen and (min-width: 800px) {
  #contentsArea .news-box-1 .btn-box-2 {
    padding-left: 0;
    text-align: center;
  }
}

#contentsArea .news-title-1 {
  font-size: 60px;
  font-size: 9.375vw;
  margin-bottom: 0.83333em;
  text-align: center;
}

@media screen and (min-width: 641px) {
  #contentsArea .news-title-1 {
    font-size: 60px;
  }
}

@media screen and (min-width: 641px) {
  #contentsArea .news-title-1 {
    text-align: left;
    font-size: 1em;
    margin-bottom: 3.8rem;
  }
}

#contentsArea .news-title-1 img {
  width: 27%;
}

@media screen and (min-width: 641px) {
  #contentsArea .news-title-1 img {
    width: 70%;
  }
}

#contentsArea .btn-news {
  display: none;
}

#contentsArea .news-box-2 {
  width: 100%;
}

@media screen and (min-width: 641px) {
  #contentsArea .news-box-2 {
    width: 80%;
  }
  #contentsArea .news-box-2 .btn-box-2 {
    display: none;
  }
}

@media screen and (min-width: 641px) {
  #contentsArea .news-box-2 .btn-news {
    display: none;
  }
}

#contentsArea .news-post {
  line-height: 1.5;
  margin-bottom: 1.25em;
  padding-bottom: 1.25em;
  border-bottom: 1px solid #c5cad1;
}

#contentsArea .news-post:last-of-type {
  margin-bottom: 1.91667em;
}

@media screen and (min-width: 641px) {
  #contentsArea .news-post {
    padding-bottom: 1.3rem;
    margin-bottom: 2rem;
  }
}

#contentsArea .news-post a {
  color: #204a8a;
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
}

#contentsArea .news-post a:hover {
  opacity: 0.7;
}

#contentsArea .news-line {
  width: 100%;
  border-top: none;
  border-color: #c5cad1;
}

#contentsArea .sns-box {
  padding-top: 3rem;
  text-align: center;
}

#contentsArea .sns-box .sns-title {
  margin-bottom: 0.96429em;
  font-size: 28px;
  font-size: 4.375vw;
  letter-spacing: 0.05em;
  color: #204a8a;
  font-weight: bold;
}

@media screen and (min-width: 641px) {
  #contentsArea .sns-box .sns-title {
    font-size: 28px;
  }
}

#contentsArea .sns-box .sns-icon a {
  display: inline-block;
  margin: 0 1.3em;
  width: 10%;
}

@media screen and (min-width: 641px) {
  #contentsArea .sns-box .sns-icon a {
    width: 6%;
    cursor: pointer;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
  }
  #contentsArea .sns-box .sns-icon a:hover {
    opacity: 0.7;
  }
}

@media screen and (min-width: 800px) {
  #contentsArea .sns-box .sns-icon a {
    width: 3%;
  }
}


.img-width60 {
  width: 60%;
    vertical-align: bottom;
}

.img-width20 {
  width: 20%;
    vertical-align: bottom;
}



/*ポケナビヘッダーここまで
-------------------------------------------------------------------------------------------------------------------------------------*/

