@charset "UTF-8";
/****************************************************
 * Stylesheet
 ****************************************************/
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  color: #000;
  background: #FFF;
  line-height: 1.5;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, input, textarea, p, blockquote, th, td, figure {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset, img, svg {
  border: 0;
}

address, caption, cite, dfn, em, strong, th {
  font-style: normal;
  font-weight: normal;
}

ol, ul {
  list-style: none;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

abbr {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input, textarea, select, button {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  background: none;
  appearance: none;
  -webkit-appearance: none;
}

textarea {
  resize: vertical;
}

article, aside, footer, header, nav, section {
  display: block;
}

img, svg {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a, a:focus, a:hover {
  text-decoration: none;
  color: inherit;
  outline: none;
}

/**common**/
html {
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-size: 10px;
  font-weight: 400;
  font-style: normal;
  color: #333333;
  scroll-behavior: smooth;
  scroll-padding-top: 10rem;
}
@media only screen and (max-width: 1100px) {
  html {
    font-size: 9px;
  }
}
@media only screen and (max-width: 900px) {
  html {
    font-size: 8px;
  }
}
@media only screen and (max-width: 767px) {
  html {
    height: 100%;
    font-size: 10px;
  }
}

body {
  font-size: 1.6rem;
}
@media only screen and (max-width: 767px) {
  body {
    -webkit-text-size-adjust: 100%;
  }
}

a {
  color: #333333;
  text-decoration: none;
  outline: none;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
a:focus {
  outline: none;
}
a:hover {
  color: #0092E6;
}
a[href^="tel:"] {
  cursor: default;
}
a[href^="tel:"]:hover {
  color: #333333;
  text-decoration: none;
}

sup, sub {
  font-size: 0.6em !important;
}

@media only screen and (max-width: 900px) {
  .pc {
    display: none !important;
  }
}

@media only screen and (max-width: 1280px) {
  .pc2 {
    display: none !important;
  }
}

@media only screen and (max-width: 767px) {
  .pc_tb {
    display: none !important;
  }
}

@media only screen and (min-width: 901px) {
  .tb_sp {
    display: none !important;
  }
}

@media only screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

.container {
  width: 100%;
  overflow: hidden;
}

.inner {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/*ヘッダーブロック*/
#header {
  width: 100%;
  height: 9rem;
  background-color: rgba(255, 255, 255, 0.93);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-shadow: 0 0.3rem 1.5rem rgba(0, 0, 0, 0.06);
  -moz-box-shadow: 0 0.3rem 1.5rem rgba(0, 0, 0, 0.06);
  box-shadow: 0 0.3rem 1.5rem rgba(0, 0, 0, 0.06);
}
@media only screen and (max-width: 767px) {
  #header {
    height: 7rem;
    background-color: #ffffff;
  }
}
#header .logo {
  width: 16.3rem;
  margin-left: 4rem;
}
@media only screen and (max-width: 1100px) {
  #header .logo {
    margin-left: 2rem;
  }
}
@media only screen and (max-width: 900px) {
  #header .logo {
    margin-left: 1.5rem;
  }
}
@media only screen and (max-width: 767px) {
  #header .sp_menu_btn {
    width: 5.2rem;
    height: 5.2rem;
    margin-top: -2.6rem;
    position: absolute;
    top: 50%;
    right: 0;
  }
  #header .sp_menu_btn span {
    display: block;
    width: 61.5%;
    height: 0.2rem;
    background: #303C4D;
    position: absolute;
    left: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  #header .sp_menu_btn span:nth-child(1) {
    top: calc(30% - 0.1rem);
  }
  #header .sp_menu_btn span:nth-child(2) {
    top: calc(50% - 0.1rem);
  }
  #header .sp_menu_btn span:nth-child(3) {
    top: calc(70% - 0.1rem);
  }
  #header .sp_menu_btn.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: calc(50% - 0.1rem);
  }
  #header .sp_menu_btn.open span:nth-child(2) {
    opacity: 0;
  }
  #header .sp_menu_btn.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: calc(50% - 0.1rem);
  }
  #header .sp_menu_btn.open + .header_right {
    left: 0;
  }
}
@media only screen and (min-width: 768px) {
  #header .header_right {
    height: 9rem;
    padding-right: 4rem;
    font-feature-settings: "palt";
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    background-image: url("../images/common/header_line.png");
    -webkit-background-size: auto 1.2rem;
    background-size: auto 1.2rem;
    background-repeat: no-repeat;
    background-position: left top;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1100px) {
  #header .header_right {
    padding-right: 2rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 900px) {
  #header .header_right {
    padding-right: 1.5rem;
  }
}

@media only screen and (max-width: 767px) {
  #header .header_right {
    width: 100%;
    height: calc((var(--winH, 1vh) * 100) - 7rem);
    padding-bottom: 4rem;
    color: #ffffff;
    background-color: #192933;
    display: block;
    overflow: auto;
    position: absolute;
    top: 100%;
    left: 100%;
    -webkit-transition: left 0.3s;
    transition: left 0.3s;
  }
}
@media only screen and (min-width: 768px) {
  #header .header_right .global_navi {
    margin-right: 1.5rem;
  }
  #header .header_right .global_navi:after {
    width: 1px;
    height: 1em;
    margin-left: 1.5rem;
    content: '';
    background-color: #1D1D1D;
    display: inline-block;
    vertical-align: -0.2em;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1100px) {
  #header .header_right .global_navi:after {
    margin-left: 1rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 900px) {
  #header .header_right .global_navi:after {
    margin-left: 0.75rem;
  }
}

@media only screen and (min-width: 768px) {
  #header .header_right .global_navi > ul {
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-align-items: center;
    align-items: center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1100px) {
  #header .header_right .global_navi > ul {
    margin-right: 1rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 900px) {
  #header .header_right .global_navi > ul {
    margin-right: 0.75rem;
  }
}

@media only screen and (min-width: 768px) {
  #header .header_right .global_navi > ul > li {
    font-size: 1.5rem;
    color: #1D1D1D;
    position: relative;
    border-bottom: solid 1px transparent;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
    position: relative;
  }
  #header .header_right .global_navi > ul > li:hover {
    border-bottom: solid 1px #0086CD;
  }
  #header .header_right .global_navi > ul > li:hover > a {
    color: #0092E6;
  }
  #header .header_right .global_navi > ul > li:hover:after {
    content: '';
  }
  #header .header_right .global_navi > ul > li + li {
    margin-left: 3rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1100px) {
  #header .header_right .global_navi > ul > li + li {
    margin-left: 2rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 900px) {
  #header .header_right .global_navi > ul > li + li {
    margin-left: 1rem;
  }
}
@media only screen and (min-width: 768px) {
  #header .header_right .global_navi > ul > li:nth-child(2) {
    position: static;
  }
}
@media only screen and (max-width: 767px) {
  #header .header_right .global_navi > ul > li {
    font-size: 1.8rem;
    position: relative;
  }
  #header .header_right .global_navi > ul > li > i {
    width: 2rem;
    height: 2rem;
    background-image: url("../images/common/icon_plus01_white.png");
    -webkit-background-size: cover;
    background-size: cover;
    position: absolute;
    top: 2rem;
    right: 2rem;
  }
  #header .header_right .global_navi > ul > li.open > i {
    background-image: url("../images/common/icon_minus01_white.png");
  }
}
@media only screen and (min-width: 768px) {
  #header .header_right .global_navi > ul > li > a {
    height: 4.15rem;
    padding: 0.9rem 0;
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  #header .header_right .global_navi > ul > li > a {
    padding: 1.8rem 0 1.8rem  2rem;
    color: #ffffff !important;
    display: inline-block;
  }
}
@media only screen and (min-width: 768px) {
  #header .header_right .global_navi > ul > li .dropdown_menu {
    padding-top: 2.4rem;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
  }
  #header .header_right .global_navi > ul > li .dropdown_menu ul {
    font-size: 1.3rem;
    white-space: nowrap;
    background-color: #0B1C26;
  }
  #header .header_right .global_navi > ul > li .dropdown_menu ul li {
    width: 24rem;
    border-bottom: solid 1px #CBCFD1;
  }
  #header .header_right .global_navi > ul > li .dropdown_menu ul li:last-child {
    border-bottom: none;
  }
  #header .header_right .global_navi > ul > li .dropdown_menu ul li a {
    color: #ffffff;
    padding: 0.5em 1em;
    display: block;
  }
  #header .header_right .global_navi > ul > li .dropdown_menu ul li a:before {
    width: 0.6rem;
    height: 1rem;
    margin-right: 0.5rem;
    content: '';
    background-image: url("../images/common/icon_arrow01_white.png");
    -webkit-background-size: cover;
    background-size: cover;
    display: inline-block;
    vertical-align: 0;
  }
  #header .header_right .global_navi > ul > li .dropdown_menu ul li a:hover {
    color: #0092E6;
  }
  #header .header_right .global_navi > ul > li .mega_menu {
    width: 100%;
    padding-top: 2.4rem;
    display: none;
    position: absolute;
    top: calc(100% - 2.4rem);
    left: 0;
  }
  #header .header_right .global_navi > ul > li .mega_menu:after {
    width: 100%;
    height: calc(100% - 2.4rem);
    content: '';
    background-color: #0B1C26;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
  }
  #header .header_right .global_navi > ul > li .mega_menu .inner {
    padding: 2rem 0;
    color: #ffffff;
  }
  #header .header_right .global_navi > ul > li .mega_menu .inner a {
    color: #ffffff;
  }
  #header .header_right .global_navi > ul > li .mega_menu .inner a:hover {
    color: #0092E6;
  }
  #header .header_right .global_navi > ul > li .mega_menu .inner > ul {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
  #header .header_right .global_navi > ul > li .mega_menu .inner > ul > li .parent {
    width: 100%;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 500;
  }
  #header .header_right .global_navi > ul > li .mega_menu .inner > ul > li .parent a:after,
  #header .header_right .global_navi > ul > li .mega_menu .inner > ul > li .parent span:after {
    width: 0.6rem;
    height: 1rem;
    margin-left: 1rem;
    content: '';
    background-image: url("../images/common/icon_arrow01_dark.png");
    -webkit-background-size: cover;
    background-size: cover;
    display: inline-block;
    vertical-align: 0.1em;
  }
  #header .header_right .global_navi > ul > li .mega_menu .inner > ul > li .wrap {
    display: -webkit-flex;
    display: flex;
  }
  #header .header_right .global_navi > ul > li .mega_menu .inner > ul > li .wrap > * {
    margin-right: 4em;
  }
  #header .header_right .global_navi > ul > li .mega_menu .inner > ul > li dl + dl {
    margin-top: 1rem;
  }
  #header .header_right .global_navi > ul > li .mega_menu .inner > ul > li dl dt {
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
  }
  #header .header_right .global_navi > ul > li .mega_menu .inner > ul > li dl dt a:before {
    width: 0.6rem;
    height: 1.2rem;
    margin-right: 1rem;
    content: '';
    background-image: url("../images/common/icon_arrow03_blue.png");
    -webkit-background-size: cover;
    background-size: cover;
    display: inline-block;
    vertical-align: 0;
  }
  #header .header_right .global_navi > ul > li .mega_menu .inner > ul > li dl dd {
    padding-left: 1.6rem;
  }
  #header .header_right .global_navi > ul > li .mega_menu .inner > ul > li ul li {
    font-size: 1.4rem;
  }
  #header .header_right .global_navi > ul > li .mega_menu .inner > ul > li ul li:before {
    width: 1em;
    content: '・';
    display: inline-block;
  }
  #header .header_right .global_navi > ul > li .mega_menu .inner > ul > li ul li + li {
    margin-top: 0.8rem;
  }
  #header .header_right .global_navi > ul > li .mega_menu .inner > ul > li ul li ul {
    margin-top: 0.8rem;
  }
  #header .header_right .global_navi > ul > li .mega_menu .inner > ul > li ul li ul li {
    padding-left: 1.6rem;
  }
  #header .header_right .global_navi > ul > li .mega_menu .inner > ul > li dl.-orange {
    margin-top: 2em;
    border-top: solid 1px #CFD1D2;
  }
  #header .header_right .global_navi > ul > li .mega_menu .inner > ul > li dl.-orange dt {
    padding-top: 2em;
  }
  #header .header_right .global_navi > ul > li .mega_menu .inner > ul > li dl.-orange dt a {
    color: #e68a00;
  }
  #header .header_right .global_navi > ul > li .mega_menu .inner > ul > li dl.-orange dt a:before {
    background-image: url("../images/common/icon_arrow04_orange.png");
  }
  #header .header_right .global_navi > ul > li .mega_menu .inner > ul.mega_menu_block {
    justify-content: space-between;
    margin-bottom: 2rem;
  }
  #header .header_right .global_navi > ul > li .mega_menu .inner > ul.mega_menu_block:last-child {
    margin-bottom: 0;
  }
  #header .header_right .global_navi > ul > li .mega_menu .inner > ul.mega_menu_block > li:first-child {
    width: 22.5rem;
  }
  #header .header_right .global_navi > ul > li .mega_menu .inner > ul.mega_menu_block > li:nth-child(2) {
    width: 21rem;
  }
  #header .header_right .global_navi > ul > li .mega_menu .inner > ul.mega_menu_block > li:nth-child(3) {
    width: 21rem;
  }
  #header .header_right .global_navi > ul > li .mega_menu .inner > ul.mega_menu_block > li:nth-child(4) {
    width: 15.4rem;
  }
  #header .header_right .global_navi > ul > li .mega_menu .inner > ul .menu__list__item {
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
  }
  #header .header_right .global_navi > ul > li .mega_menu .inner > ul .menu__list__item::before {
    display: none;
  }
  #header .header_right .global_navi > ul > li .mega_menu .inner > ul .menu__list__item a:before {
    width: 0.6rem;
    height: 1.2rem;
    margin-right: 1rem;
    content: '';
    background-image: url("../images/common/icon_arrow03_blue.png");
    -webkit-background-size: cover;
    background-size: cover;
    display: inline-block;
    vertical-align: 0;
  }
  #header .header_right .global_navi > ul > li:nth-child(4) .mega_menu .inner ul.mega_menu_block > li .parent a::after {
    display: none;
  }
  #header .header_right .global_navi > ul > li:nth-child(4) .mega_menu .inner ul.mega_menu_block > li:first-child {
    width: 15.9rem;
  }
  #header .header_right .global_navi > ul > li:nth-child(4) .mega_menu .inner ul.mega_menu_block > li:nth-child(2) {
    width: 24rem;
  }
  #header .header_right .global_navi > ul > li:nth-child(4) .mega_menu .inner ul.mega_menu_block > li:nth-child(3) {
    width: 18.2rem;
  }
  #header .header_right .global_navi > ul > li:nth-child(4) .mega_menu .inner ul.mega_menu_block > li:nth-child(4) {
    width: 12.5rem;
  }
  #header .header_right .global_navi > ul > li:nth-child(4) .mega_menu .inner ul.mega_menu_block > li:nth-child(4) .parent {
    margin-top: 3rem;
  }
  #header .header_right .global_navi > ul > li:nth-child(4) .mega_menu .inner ul.mega_menu_block > li:nth-child(4) .parent:first-child {
    margin-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  #header .header_right .global_navi > ul > li .dropdown_menu, #header .header_right .global_navi > ul > li .mega_menu {
    display: none;
    height: auto;
    background-color: #0B1C26;
    overflow: hidden;
    -webkit-transition: max-height 0.3s;
    transition: max-height 0.3s;
  }
  #header .header_right .global_navi > ul > li .dropdown_menu a, #header .header_right .global_navi > ul > li .mega_menu a {
    color: #ffffff;
  }
  #header .header_right .global_navi > ul > li .dropdown_menu ul {
    padding: 2.5rem 4.5rem;
  }
  #header .header_right .global_navi > ul > li .dropdown_menu ul li {
    padding-left: 1rem;
    font-size: 1.5rem;
  }
  #header .header_right .global_navi > ul > li .dropdown_menu ul li:before {
    width: 0.5rem;
    height: 1px;
    margin: 0 0.5rem 0 -1rem;
    content: '';
    background-color: #CFD1D2;
    display: inline-block;
    vertical-align: 0.25em;
  }
  #header .header_right .global_navi > ul > li .dropdown_menu ul li + li {
    margin-top: 1em;
  }
  #header .header_right .global_navi > ul > li .dropdown_menu ul li a {
    color: #CFD1D2;
  }
  #header .header_right .global_navi > ul > li .mega_menu .inner {
    width: 100%;
    padding: 2.5rem 2rem;
  }
  #header .header_right .global_navi > ul > li .mega_menu .inner > ul.mega_menu_block {
    margin-top: 3rem;
  }
  #header .header_right .global_navi > ul > li .mega_menu .inner > ul.mega_menu_block.-ir > li .parent span::after {
    display: none;
  }
  #header .header_right .global_navi > ul > li .mega_menu .inner > ul > li + li {
    margin-top: 3rem;
  }
  #header .header_right .global_navi > ul > li .mega_menu .inner > ul > li .wrap > div + div {
    margin-top: 2rem;
  }
  #header .header_right .global_navi > ul > li .mega_menu .inner > ul > li .parent {
    margin-bottom: 2.5rem;
    font-size: 1.8rem;
  }
  #header .header_right .global_navi > ul > li .mega_menu .inner > ul > li .parent a,
  #header .header_right .global_navi > ul > li .mega_menu .inner > ul > li .parent span {
    display: inline-block;
  }
  #header .header_right .global_navi > ul > li .mega_menu .inner > ul > li .parent a:after,
  #header .header_right .global_navi > ul > li .mega_menu .inner > ul > li .parent span:after {
    width: 0.6rem;
    height: 1rem;
    margin-left: 1rem;
    content: '';
    background-image: url("../images/common/icon_arrow01_white.png");
    -webkit-background-size: cover;
    background-size: cover;
    display: inline-block;
    vertical-align: 0.1em;
  }
  #header .header_right .global_navi > ul > li .mega_menu .inner > ul > li dl + dl {
    margin-top: 2rem;
  }
  #header .header_right .global_navi > ul > li .mega_menu .inner > ul > li dl dt {
    margin: 0 1.5rem 1rem 1.5rem;
    padding-bottom: 1rem;
    border-bottom: solid 1px #CFD1D2;
  }
  #header .header_right .global_navi > ul > li .mega_menu .inner > ul > li ul {
    padding-left: 3rem;
  }
  #header .header_right .global_navi > ul > li .mega_menu .inner > ul > li ul li {
    padding-left: 1rem;
    font-size: 1.5rem;
  }
  #header .header_right .global_navi > ul > li .mega_menu .inner > ul > li ul li:before {
    width: 0.5rem;
    height: 1px;
    margin: 0 0.5rem 0 -1rem;
    content: '';
    background-color: #CFD1D2;
    display: inline-block;
    vertical-align: 0.25em;
  }
  #header .header_right .global_navi > ul > li .mega_menu .inner > ul > li ul li + li {
    margin-top: 1em;
  }
  #header .header_right .global_navi > ul > li .mega_menu .inner > ul > li ul li a {
    color: #CFD1D2;
  }
  #header .header_right .global_navi > ul > li .mega_menu .inner > ul > li ul li ul {
    margin-top: 1rem;
  }
  #header .header_right .global_navi > ul > li .mega_menu .inner > ul > li ul li ul li {
    padding-left: 1rem;
  }
  #header .header_right .global_navi > ul > li .mega_menu .inner > ul > li dl.-orange {
    margin-top: 2rem;
  }
  #header .header_right .global_navi > ul > li .mega_menu .inner > ul > li dl.-orange dt {
    padding-top: 2rem;
  }
  #header .header_right .global_navi > ul > li .mega_menu .inner > ul > li dl.-orange dt a {
    color: #e68a00;
  }
  #header .header_right .global_navi > ul > li:nth-child(4) .mega_menu .inner ul.mega_menu_block > li .parent a::after {
    display: none;
  }
  #header .header_right .global_navi > ul > li:nth-child(4) .mega_menu .inner ul.mega_menu_block > li:nth-child(4) .parent {
    margin-top: 3rem;
  }
  #header .header_right .global_navi > ul > li:nth-child(4) .mega_menu .inner ul.mega_menu_block > li:nth-child(4) .parent:first-child {
    margin-top: 0;
  }
}
@media only screen and (min-width: 768px) {
  #header .header_right .langeage_select {
    padding: 0.9rem 0;
    position: relative;
  }
  #header .header_right .langeage_select:hover span:after {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
  #header .header_right .langeage_select span {
    font-size: 1.3rem;
    color: #1D1D1D;
    display: block;
  }
  #header .header_right .langeage_select span:after {
    width: 0.6rem;
    height: 1rem;
    margin-left: 0.5rem;
    content: '';
    background-image: url("../images/common/icon_arrow01_dark.png");
    -webkit-background-size: cover;
    background-size: cover;
    display: inline-block;
    vertical-align: 0;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition: transform 0.3s;
    transition: transform 0.3s;
  }
  #header .header_right .langeage_select .dropdown_menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
  }
  #header .header_right .langeage_select ul {
    padding: 0.5em 0;
    font-size: 1.3rem;
    white-space: nowrap;
    background-color: #ffffff;
  }
  #header .header_right .langeage_select ul li {
    padding: 0.5em 1em;
  }
  #header .header_right .langeage_select ul li a {
    color: #1D1D1D;
  }
  #header .header_right .langeage_select ul li a:hover {
    color: #0092E6;
  }
}
@media only screen and (max-width: 767px) {
  #header .header_right .langeage_select {
    margin-top: 2rem;
    margin-bottom: 5rem;
    padding-top: 2rem;
    border-top: solid 1px rgba(255, 255, 255, 0.15);
  }
  #header .header_right .langeage_select .dropdown_menu ul {
    text-align: center;
    letter-spacing: -0.4em;
  }
  #header .header_right .langeage_select .dropdown_menu ul > * {
    display: inline-block;
    letter-spacing: normal;
  }
  #header .header_right .langeage_select .dropdown_menu ul li {
    padding: 0 1rem;
    font-size: 1.5rem;
  }
  #header .header_right .langeage_select .dropdown_menu ul li + li {
    border-left: solid 1px #CFD1D2;
  }
  #header .header_right .langeage_select .dropdown_menu ul li a {
    color: #CFD1D2;
  }
}
@media only screen and (min-width: 768px) {
  #header .header_right .contact_btn {
    margin-left: 3rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1100px) {
  #header .header_right .contact_btn {
    margin-left: 2rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 900px) {
  #header .header_right .contact_btn {
    margin-top: 1.5rem;
  }
}
@media only screen and (min-width: 768px) {
  #header .header_right .contact_btn .btn01 {
    width: 12.8rem;
    min-width: 0;
  }
}
@media only screen and (max-width: 767px) {
  #header .header_right .contact_btn {
    text-align: center;
  }
  #header .header_right .contact_btn .btn01 {
    width: 24rem;
    font-size: 1.5rem;
    background: none;
    background-color: transparent;
    border-color: #ffffff;
  }
}

/*フッターブロック*/
#footer .footer_top {
  padding: 4rem 0;
  background-color: #313B4C;
}
@media only screen and (max-width: 767px) {
  #footer .footer_top {
    padding: 3rem 0;
  }
}
#footer .footer_top ul {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  #footer .footer_top ul {
    display: block;
    text-align: center;
  }
}
#footer .footer_top ul li {
  margin: 0 3rem;
}
@media only screen and (max-width: 767px) {
  #footer .footer_top ul li {
    text-align: center;
    margin: 0;
  }
  #footer .footer_top ul li + li {
    margin-top: 2rem;
  }
}
#footer .footer_middle {
  padding: 2.2rem 0;
  text-align: center;
  background-color: #F2F5F7;
}
@media only screen and (max-width: 767px) {
  #footer .footer_middle {
    padding: 3rem 0;
    text-align: left;
  }
}
@media only screen and (min-width: 768px) {
  #footer .footer_middle .inner {
    letter-spacing: -0.4em;
  }
  #footer .footer_middle .inner > * {
    display: inline-block;
    letter-spacing: normal;
  }
}
#footer .footer_middle span {
  margin: 0.8rem 2.5rem;
  font-size: 1.3rem;
}
@media only screen and (max-width: 1100px) {
  #footer .footer_middle span {
    margin: 0.8rem 1rem;
  }
}
@media only screen and (max-width: 767px) {
  #footer .footer_middle span {
    margin: 0 0 1em 0;
    display: block;
  }
  #footer .footer_middle span:last-child {
    margin-bottom: 0;
  }
}
#footer .footer_middle span a {
  color: #6B7D87;
}
#footer .footer_middle span a:hover {
  color: #0B1C26;
}
#footer .footer_bottom {
  padding: 4rem 0;
}
@media only screen and (max-width: 767px) {
  #footer .footer_bottom {
    padding-bottom: 8rem;
  }
}
#footer .footer_bottom .logo {
  width: 16.3rem;
  margin: 0 auto 2rem auto;
}
#footer .footer_bottom .copyright {
  font-size: 1.2rem;
  text-align: center;
  font-weight: 300;
  color: #6B7D87;
}
@media only screen and (max-width: 767px) {
  #footer .footer_bottom .copyright {
    font-size: 1.1rem;
  }
}

#pagetop {
  width: 4.5rem;
  display: none;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 90;
}

/*下層ページタイトル部*/
.pagetitle {
  height: 31rem;
  margin-bottom: 6rem;
  padding-top: 16rem;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center center;
}
@media only screen and (max-width: 767px) {
  .pagetitle {
    height: 26rem;
    padding-top: 12.5rem;
    margin-bottom: 5rem;
  }
}
.pagetitle h2 {
  color: #ffffff;
}
@media only screen and (max-width: 767px) {
  .pagetitle h2 {
    font-size: 1.4rem;
  }
}
.pagetitle h2 span {
  font-family: "Raleway", sans-serif;
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.16667;
  display: block;
}
@media only screen and (max-width: 767px) {
  .pagetitle h2 span {
    font-size: 3.6rem;
  }
}

/*パンくず*/
.breadcrumbs {
  padding-top: 1.4rem;
  padding-bottom: 1.7rem;
  border-top: solid 1px #CBCFD1;
}
@media only screen and (max-width: 767px) {
  .breadcrumbs {
    padding-top: 1rem;
    padding-bottom: 1.2rem;
  }
}
.breadcrumbs ol {
  letter-spacing: -0.4em;
}
.breadcrumbs ol > * {
  display: inline-block;
  letter-spacing: normal;
}
.breadcrumbs ol li {
  font-size: 1.3rem;
  color: #6B7D87;
}
@media only screen and (max-width: 767px) {
  .breadcrumbs ol li {
    font-size: 1.2rem;
  }
}
.breadcrumbs ol li:after {
  width: 0.3rem;
  height: 0.5rem;
  margin: 0 1rem;
  content: '';
  background-image: url("../images/common/icon_arrow01_light.png");
  -webkit-background-size: cover;
  background-size: cover;
  display: inline-block;
  vertical-align: 0.15em;
}
.breadcrumbs ol li:last-child:after {
  content: none;
}
.breadcrumbs ol li a {
  color: #6B7D87;
}
.breadcrumbs ol li a:hover {
  color: #0B1C26;
}

/*コンポーネント*/
/*ボタン要素*/
.btn01 {
  min-width: 20rem;
  padding: 1rem;
  font-size: 1.4rem;
  text-align: center;
  color: #ffffff !important;
  background: -webkit-linear-gradient(to right, #313C4D 50%, #0092E6 50%);
  background: linear-gradient(to right, #313C4D 50%, #0092E6 50%);
  background-size: 200% 100%;
  background-position: 0 0;
  border: 1px solid #313C4D;
  -webkit-border-radius: 999px;
  -moz-border-radius: 999px;
  border-radius: 999px;
  -webkit-transition: background-position 0.3s;
  transition: background-position 0.3s;
  display: inline-block;
}
.btn01:hover {
  background-position: -100% 0;
  border-color: #0092E6;
}

.btn02 {
  min-width: 20rem;
  padding: 1rem;
  font-size: 1.4rem;
  text-align: center;
  color: #ffffff !important;
  background: -webkit-linear-gradient(to right, transparent 50%, #0092E6 50%);
  background: linear-gradient(to right, transparent 50%, #0092E6 50%);
  background-size: 200% 100%;
  background-position: 0 0;
  border: 1px solid #ffffff;
  -webkit-border-radius: 999px;
  -moz-border-radius: 999px;
  border-radius: 999px;
  -webkit-transition: background-position 0.3s;
  transition: background-position 0.3s;
  display: inline-block;
}
.btn02:hover {
  background-position: -100% 0;
  border-color: #0092E6;
}

.btn03 {
  width: 52rem;
  padding: 2.4rem 6rem 2.4rem 3rem;
  font-size: 2.4rem;
  color: #ffffff !important;
  background: -webkit-linear-gradient(to right, #313C4D 50%, #0092E6 50%);
  background: linear-gradient(to right, #313C4D 50%, #0092E6 50%);
  background-size: 200% 100%;
  background-position: 0 0;
  border: 1px solid #ffffff;
  -webkit-transition: background-position 0.3s;
  transition: background-position 0.3s;
  display: inline-block;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .btn03 {
    width: 100%;
    padding: 1.3rem 4rem 1.3rem 2rem;
    font-size: 1.6rem;
    display: block;
  }
}
.btn03:after {
  width: 3rem;
  height: 3rem;
  margin-top: -1.5rem;
  content: '';
  background-image: url("../images/common/icon_arrow02_white.png");
  -webkit-background-size: 1.2rem auto;
  background-size: 1.2rem auto;
  background-repeat: no-repeat;
  background-position: center center;
  border: solid 1px #ffffff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 2rem;
}
@media only screen and (max-width: 767px) {
  .btn03:after {
    width: 2.4rem;
    height: 2.4rem;
    margin-top: -1.2rem;
    -webkit-background-size: 1rem auto;
    background-size: 1rem auto;
  }
}
.btn03:hover {
  background-position: -100% 0;
  border-color: #0092E6;
}

.btn04 {
  min-width: 20rem;
  padding: 1rem;
  font-size: 1.4rem;
  text-align: center;
  color: #313B4C;
  background: -webkit-linear-gradient(to right, transparent 50%, #0092E6 50%);
  background: linear-gradient(to right, transparent 50%, #0092E6 50%);
  background-size: 200% 100%;
  background-position: 0 0;
  border: 1px solid #313B4C;
  -webkit-border-radius: 999px;
  -moz-border-radius: 999px;
  border-radius: 999px;
  -webkit-transition: background-position 0.3s;
  transition: background-position 0.3s;
  display: inline-block;
}
.btn04:hover {
  color: #ffffff;
  background-position: -100% 0;
  border-color: #0092E6;
}

/*小見出し*/
.subTtl01 {
  margin-bottom: 1.875em;
}
.subTtl01 > span {
  font-size: 1.4rem;
  display: inline-block;
  color: #4D4D4D;
  position: relative;
  z-index: 1;
}
.subTtl01 > span:after {
  width: 9.7rem;
  height: 16.4rem;
  margin-top: -9.5rem;
  content: '';
  background-image: url("../images/common/fig01.png");
  -webkit-background-size: cover;
  background-size: cover;
  position: absolute;
  right: -4rem;
  top: 50%;
}
.subTtl01 > span span {
  font-family: "Raleway", sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.15625;
  color: #313C4E;
  display: block;
}
.subTtl01.subTtl01--center {
  text-align: center;
}
.subTtl01.subTtl01--center > span:after {
  margin-left: -4rem;
  left: 50%;
  right: auto;
}

.subTtl02 {
  margin-bottom: 1.875em;
}
.subTtl02 > span {
  font-size: 2.8rem;
  font-weight: 700;
  display: inline-block;
  color: #313C4E;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .subTtl02 > span {
    font-size: 2.6rem;
  }
}
.subTtl02 > span:after {
  width: 9.7rem;
  height: 16.4rem;
  margin-top: -8rem;
  content: '';
  background-image: url("../images/common/fig01.png");
  -webkit-background-size: cover;
  background-size: cover;
  position: absolute;
  right: -4rem;
  top: 50%;
}
@media only screen and (max-width: 767px) {
  .subTtl02 > span:after {
    width: 7.76rem;
    height: 13.12rem;
    margin-top: -6rem;
    right: -3.5rem;
  }
}

.subTtl03 {
  margin-bottom: 4rem;
  padding-bottom: 1.2rem;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.45;
  color: #313C4E;
  border-bottom: solid 1px #313C4D;
}
@media only screen and (max-width: 767px) {
  .subTtl03 {
    margin-bottom: 1.6rem;
    padding-bottom: 1rem;
  }
}

.subTtl04 {
  margin-bottom: 1.875em;
}
.subTtl04 > span {
  font-size: 2.8rem;
  font-weight: 700;
  display: inline-block;
  color: #4D4D4D;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .subTtl04 > span {
    font-size: 2.6rem;
  }
}
.subTtl04 > span:after {
  width: 9.7rem;
  height: 16.4rem;
  margin-top: -9.5rem;
  content: '';
  background-image: url("../images/common/fig01.png");
  -webkit-background-size: cover;
  background-size: cover;
  position: absolute;
  right: -4rem;
  top: 50%;
}
.subTtl04 > span span {
  font-family: "Raleway", sans-serif;
  font-size: 1.4rem;
  color: #313C4E;
  display: block;
}
@media only screen and (max-width: 767px) {
  .subTtl04 > span span {
    font-size: 1.3rem;
    line-height: 1.8;
  }
}

/*リンク*/
.link_map {
  font-size: 1.3rem;
  font-weight: 400;
  color: #0092E6;
  display: inline-block;
}
.link_map:hover {
  text-decoration: underline;
}
.link_map:after {
  width: 1.2rem;
  height: 1.6rem;
  margin-left: 0.5rem;
  content: '';
  background-image: url("../images/common/icon_map01.png");
  -webkit-background-size: cover;
  background-size: cover;
  display: inline-block;
  vertical-align: -0.2em;
}

.link_blank {
  color: #0092E6;
  display: inline-block;
}
.link_blank:hover {
  text-decoration: underline;
}
.link_blank:after {
  width: 1.15rem;
  height: 1.15rem;
  margin-left: 0.5rem;
  content: '';
  background-image: url("../images/common/icon_link01.png");
  -webkit-background-size: cover;
  background-size: cover;
  display: inline-block;
  vertical-align: -0.1em;
}

/*タブ切り替え*/
.tab_content .tab_body > *:not(.current) {
  display: none;
}

/*アコーディオン*/
.acc .acc_head {
  position: relative;
  cursor: pointer;
}
.acc .acc_body {
  display: none;
}
.acc.open .acc_body {
  display: block;
}

/*タイトル付きボックス(dl)*/
.titled_box01 {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0.8rem 4rem rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0.8rem 4rem rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.8rem 4rem rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}
.titled_box01 dt {
  padding: 1.7rem 3rem;
  font-size: 1.8rem;
  color: #ffffff;
  background-color: #313C4D;
  -webkit-box-shadow: 0 0.8rem 4rem rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0.8rem 4rem rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.8rem 4rem rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 767px) {
  .titled_box01 dt {
    padding: 1.3rem 2rem;
    font-size: 1.6rem;
  }
}
.titled_box01 dd {
  padding: 3rem;
}
@media only screen and (max-width: 767px) {
  .titled_box01 dd {
    padding: 2rem;
  }
}

/*リスト*/
.list01 li {
  padding-left: 2.8rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .list01 li {
    padding-left: 2rem;
    font-size: 1.5rem;
  }
}
.list01 li:before {
  width: 1.8rem;
  height: 1.8rem;
  content: "";
  background-color: #313C4D;
  position: absolute;
  top: 0.15em;
  left: 0;
}
@media only screen and (max-width: 767px) {
  .list01 li:before {
    width: 1rem;
    height: 1rem;
    top: 0.3em;
  }
}
.list01 li + li {
  margin-top: 1.6rem;
}
@media only screen and (max-width: 767px) {
  .list01 li + li {
    margin-top: 1rem;
  }
}

/*番号リスト*/
.number_list01 {
  counter-reset: num;
}
.number_list01 li {
  padding-left: 4rem;
  counter-increment: num;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .number_list01 li {
    padding-left: 3.8rem;
  }
}
.number_list01 li:before {
  width: 2.6rem;
  height: 2.6rem;
  content: counter(num);
  font-family: "Noto Sans", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.6rem;
  text-align: center;
  color: #ffffff;
  background-color: #313C4D;
  position: absolute;
  top: 0;
  left: 0;
}
.number_list01 li + li {
  margin-top: 2.5rem;
}
@media only screen and (max-width: 767px) {
  .number_list01 li + li {
    margin-top: 1.6rem;
  }
}

/*YouTube*/
.youtube {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  position: relative;
}
.youtube iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* クラシックエディタ用基本CSS */
.editor-area {
  /* 段落 */
  /* 見出し */
  /* リスト */
  /* 画像配置 */
  /* 引用 */
  /* テーブル */
  /* リンク、太字、イタリック */
}
.editor-area:after {
  content: "";
  display: block;
  clear: both;
}
.editor-area > *:last-child {
  margin-bottom: 0 !important;
}
.editor-area div:after, .editor-area p:after {
  content: "";
  display: block;
  clear: both;
}
.editor-area p {
  margin-bottom: 2em;
  font-size: 1.5rem;
  line-height: 1.8;
}
.editor-area h1, .editor-area h2, .editor-area h3, .editor-area h4, .editor-area h5, .editor-area h6 {
  margin-bottom: 1em;
}
.editor-area h4 {
  margin-bottom: 0.6rem;
  font-size: 1.6rem;
  font-weight: 700;
}
.editor-area h5 {
  margin-bottom: 0.6rem;
  font-size: 1.5rem;
  font-weight: 700;
}
.editor-area ul, .editor-area ol {
  margin-bottom: 2em;
  padding-left: 1.5em;
  font-size: 1.5rem;
  line-height: 1.8;
}
.editor-area ul {
  list-style: disc;
}
.editor-area ol {
  list-style: decimal;
}
.editor-area ul li, .editor-area ol li {
  margin-bottom: 0.5em;
}
.editor-area img.alignleft {
  max-width: 50%;
  float: left;
  margin-right: 1em;
  margin-bottom: 1em;
}
.editor-area img.alignright {
  max-width: 50%;
  float: right;
  margin-left: 1em;
  margin-bottom: 1em;
}
.editor-area img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2em;
  margin-bottom: 2em;
}
.editor-area blockquote {
  margin-bottom: 2em;
  margin-left: 0;
  padding-left: 1em;
  font-size: 1.5rem;
  font-style: italic;
  color: #666666;
  border-left: 4px solid #CBCFD1;
}
.editor-area table {
  width: 100%;
  margin-bottom: 2em;
  font-size: 1.5rem;
  line-height: 1.8;
  border-collapse: collapse;
}
.editor-area tr:last-child td, .editor-area tr:last-child th {
  border-bottom: none;
}
.editor-area td, .editor-area th {
  padding: 1em 1.3em;
  border-bottom: 1px solid #CBCFD1;
}
.editor-area th {
  font-weight: 500;
  color: #ffffff;
  background-color: #303C4D;
  vertical-align: top;
  border-right: 1px solid #ffffff;
}
.editor-area td {
  background-color: #F2F5F7;
  vertical-align: top;
}
.editor-area a {
  color: #0092E6;
  word-break: break-all;
}
.editor-area a:hover {
  text-decoration: underline;
}
.editor-area strong, .editor-area b {
  font-weight: 700;
}
.editor-area em, .editor-area i {
  font-style: italic;
}
