@charset "UTF-8";
/* ----------------------------------------------------------------------------------------------------
*  基本情報
* --------------------------------------------------------------------------------------------------*/
html, body {
  height: 100%;
}
html {
  font-size: 62.5%;
}
body, h1, h2, h3, h4, h5, h6, p, address, ul, ol, li, dl, dt, dd, table, th, td, img, form, input, figure {
  margin: 0;
  padding: 0;
  border: none;
  line-height: 100%;
  list-style-type: none;
  font-style: normal;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  text-align: left;
  color: #333333;
  letter-spacing: 1px;
  -webkit-text-size-adjust: 100%;
  text-align: justify;
  hanging-punctuation: allow-end;
}
a {
  text-decoration: none;
  color: #333333;
}
a:hover {
  opacity: 0.5;
  filter: alpha(opacity=50);
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
div, h1, h2, h3, h4, h5, h6, p, dl, dt, dd, ol, ul, li, form, input, textarea, button, table, tr, th, td, article, aside, footer, header, hgroup, nav, section, a, span, img, figure {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  width: 100%;
  word-break: break-all;
  -webkit-appearance: none;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, p {
  text-align: justify;
  text-justify: distribute;
  line-height: 1.5;
}
img {
  max-width: 100%;
  width: auto;
  height: auto;
  vertical-align: bottom;
}
input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select::-ms-expand {
  display: none;
}
.wrap {
  max-width: 1200px;
  width: 92%;
  margin: auto;
}
.en {
  font-family: "Akshar", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-weight: 400;
}
.font_serif {
  font-family: "Noto Serif JP", sans-serif;
}
@media screen and (min-width: 769px){
  .sp {
    display: none;
  }
}
@media screen and (max-width: 768px){
  .pc {
    display: none;
  }
}

/* 省略 */
.line-1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.line-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.line-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

/* ----------------------------------------------------------------------------------------------------
*  ヘッダー
* --------------------------------------------------------------------------------------------------*/
#header {
  background: rgba(255, 255, 255, 0.68);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 101;
}
.header_wrap {
  display: flex;
  justify-content: space-between;
  padding-left: 3rem;
  height: 80px;
}
.header_wrap .logo {
  padding: 13px 0;
}
.header_navi {
  display: flex;
}
.header_navi .navi_list {
  display: flex;
  margin-right: 2.8rem;
}
.header_navi .navi_list > li {
  display: flex;
  align-items: center;
  height: 100%;
  margin-right: 5rem;
  cursor: pointer;
}
.header_navi .navi_list > li:last-child {
  margin-right: 0;
}
.header_navi .navi_list > li:hover {
  opacity: 0.5;
  filter: alpha(opacity=50);
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.header_navi .navi_list > li > a {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.5;
  position: relative;
}
.header_navi .navi_list > li.hover:hover, 
.header_navi .navi_list > li.hover > a:hover {
  opacity: 1.0;
  filter: alpha(opacity=100);
}
.header_navi .navi_list > li.hover > a::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 8px solid #272D74;
  border-bottom: 0;
  margin-left: -5px;
  position: absolute;
  left: 50%;
  bottom: -14px;
  transition: transform 0.3s ease;
}
.header_navi .navi_list > li.hover._gl > a::before {
  border-top: 8px solid #009a60;
}
.header_navi .navi_list > li.hover:hover > a::before {
  bottom: -16px;
  transform: rotate(-60deg);
  transition: transform 0.3s ease;
}
.header_navi .navi_list .inner_nav {
  background: #272D74;
  color: #fff;
  padding: 3.3rem 0 3.8rem;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  translate: 0% 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 101;
  -webkit-transition: opacity 0.2s, visibility 0s ease 0.2s;
  transition: opacity 0.2s, visibility 0s ease 0.2s;
}
.header_navi .navi_list li.hover._gl .inner_nav {
  background: #009a60;
}
.header_navi .navi_list li.hover:hover .inner_nav {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  opacity: 1;
  visibility: visible;
}
.header_navi .navi_list .inner_nav .title {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-bottom: 3rem;
  padding-bottom: 1.7rem;
}
.header_navi .navi_list .inner_nav .title .in,
.header_navi .navi_list .inner_nav ul {
  max-width: 1200px;
  margin: 0 auto;
  width: 96%;
}
.header_navi .navi_list .inner_nav ul {
  display: flex;
}
.header_navi .navi_list .inner_nav ul li + li {
  margin-left: 4.8rem;
}
.header_navi .navi_list .inner_nav ul li a {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  position: relative;
  padding-left: 2.6rem;
}
.header_navi .navi_list .inner_nav ul li a::before {
  background: url(../img/common/icon_link_hover.svg) no-repeat;
  background-size: 18px 18px;
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  left: 0;
  top: 4px;
}
.header_navi .navi_list li.hover._gl .inner_nav ul li a::before {
  background-image: url(../img/common/icon_link_hover_gl.svg);
}
.header_navi .contact_btn a {
  background-color: #272D74;
  background-image: linear-gradient(135deg, #009A60 50%, transparent 50%);
  background-position: 100%;
  background-size: 300%;
  color: #fff;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  padding: 0 10.5rem;
  text-align: center;
  -webkit-clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
  clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
}
.header_navi .contact_btn a:hover {
  background-position: 0;
  opacity: 1.0;
  filter: alpha(opacity=100);
}
.header_navi .contact_btn a .en, 
.header_navi .contact_btn a .jp {
  width: 100%;
}
.header_navi .contact_btn a .en {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 0.2rem;
}
.header_navi .contact_btn a .jp {
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 1400px) {
  .header_wrap .logo {
    display: flex;
    align-items: center;
    width: 30%;
  }
  .header_navi .navi_list {
    margin-right: 2vw;
  }
  .header_navi .navi_list > li {
    margin-right: 3.57143vw;
  }
  .header_navi .navi_list > li > a {
    font-size: 1.286vw;
  }
  .header_navi .navi_list .inner_nav {
    padding: 2.357143vw 0 2.7143vw;
  }
  .header_navi .navi_list .inner_nav .title {
    font-size: 1.4286vw;
    margin-bottom: 2.14286vw;
    padding-bottom: 1.2143vw;
  }
  .header_navi .navi_list .inner_nav ul li + li {
    margin-left: 3.4286vw;
  }
  .header_navi .navi_list .inner_nav ul li a {
    font-size: 1.14286vw;
    padding-left: 1.857143vw;
  }
  .header_navi .navi_list .inner_nav ul li a::before {
    background-size: 1.286vw 1.286vw;
    width: 1.286vw;
    height: 1.286vw;
    top: 4px;
  }
  .header_navi .contact_btn a {
    padding: 0 7.5vw;
  }
  .header_navi .contact_btn a .en {
    font-size: 1.7143vw;
  }
  .header_navi .contact_btn a .jp {
    font-size: 0.9286vw;
  }
}
@media screen and (min-width: 769px){
  .header_navi .contact_btn {
    position: relative;
  }
  .header_navi .contact_btn::before {
    background: #009A60;
    content: "";
    height: 100%;
    width: 80px;
    position: absolute;
    right: 0;
    top: 0;
  }
}
@media screen and (max-width: 768px) {
  #header {
    height: 70px;
  }
  .header_wrap {
    height: 70px;
    padding-left: 4%;
  }
  .header_wrap .logo {
    padding: 0;
    width: 100%;
  }
  .header_wrap .logo img {
    height: 46px;
  }
  .header_navi {
    display: none;
  }
}

/* btn_menu */
.btn_menu {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 70px;
  height: 70px;
  cursor: pointer;
  z-index: 101;
}
.toggle {
  position: relative;
  display: block;
  width: 35px;
  height: 26px;
}
.toggle span {
  display: inline-block;
  transition: .3s;
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 2px;
  margin: auto;
  background-color: #272D74;
}
.toggle span:nth-of-type(1) {
  top: 0;
}
.toggle span:nth-of-type(2){
  top: 12px;
}
.toggle span:nth-of-type(3){
  bottom: 0;
}
.btn_menu.active .toggle span:nth-of-type(1) {
  transform: translateY(9px) rotate(45deg);
}
.btn_menu.active .toggle span:nth-of-type(2) {
  opacity: 0;
}
.btn_menu.active .toggle span:nth-of-type(3) {
  top: 0;
  bottom: auto;
  transform: translateY(9px) rotate(-45deg);
}
.header_gnav {
  position: fixed;
  width: 100%;
  height: calc( 100vh - 70px );
  top: 70px;
  right: -100%;
  background: #242855;
  color: #fff;
  transition: .3s;
  z-index: 101;
  overflow: scroll;
}
.header_gnav.active {
  right: 0;
}
.header_gnav {
  color: #fff;
}
.header_gnav_in {
  padding: 8% 0;
  padding-left: 4%;
}
.header_gnav_item, 
.header_gnav .other_link {
  width: 87.5%;
}
.header_gnav_item a, 
.header_gnav .other_link a {
  color: #fff;
}
.header_gnav_item + .header_gnav_item {
  margin-top: 3rem;
}
.header_gnav_item .title {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
}
.header_gnav_item .title span {
  font-size: 1.3rem;
}
.header_gnav_item ul li a {
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.header_gnav_item ul li + li {
  margin-top: 1.5rem;
}
.header_gnav .other_link {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  margin-top: 3rem;
  padding-top: 1.5rem;
}
.header_gnav .other_link li a {
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.header_gnav .other_link li + li {
  margin-top: 1.5rem;
}
@media screen and (min-width: 769px){
  .btn_menu {
    display: none !important;
  }
}

/* ----------------------------------------------------------------------------------------------------
*  フッター
* --------------------------------------------------------------------------------------------------*/
#footer {
  background: #242855;
  color: #fff;
  padding: 7.4rem 0 5rem;
}
#footer .wrap {
  display: flex;
  justify-content: space-between;
  flex-flow: row-reverse nowrap;
}
#footer .footer_left {
  width: 34.58333%;
}
#footer .footer_right {
  width: 57.5%;
}
#footer .address {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
  margin-top: 3rem;
}
#footer .address a {
  color: #fff;
  text-decoration: underline;
}
#footer .address a:hover {
  text-decoration: none;
}
#footer .footer_nav + .footer_nav {
  margin-top: 5.4rem;
}
#footer .footer_nav .title {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-bottom: 1.6rem;
  padding-bottom: 1.4rem;
}
#footer .footer_nav .title span {
  font-size: 1.8rem;
}
#footer .footer_nav ul {
  display: flex;
}
#footer .footer_nav ul li + li {
  margin-left: 2.2rem;
}
#footer .footer_nav ul li a {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
#footer .footer_bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  margin-top: 15.8rem;
  padding-top: 4rem;
}
#footer .footer_bottom ul {
  display: flex;
}
#footer .footer_bottom ul li + li {
  margin-left: 5rem;
}
#footer .footer_bottom ul li a {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
#footer .copy {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.footer_link {
  border-top: 1px solid #272D74;
  padding: 3rem 0;
}
.footer_link ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1400px) {
  #footer {
    padding: 7.4rem 0 5rem;
  }
  #footer .footer_left {
    width: 34.58333%;
  }
  #footer .footer_right {
    width: 57.5%;
  }
  #footer .address {
    font-size: 1.07143vw;
    margin-top: 2.14286vw;
  }
  #footer .footer_nav + .footer_nav {
    margin-top: 3.857143vw;
  }
  #footer .footer_nav .title {
    font-size: 1.57143vw;
    margin-bottom: 1.14286vw;
    padding-bottom: 1vw;
  }
  #footer .footer_nav .title span {
    font-size: 1.286vw;
  }
  #footer .footer_nav ul li + li {
    margin-left: 1.57143vw;
  }
  #footer .footer_nav ul li a {
    font-size: 1.14286vw;
  }
  #footer .footer_bottom {
    margin-top: 11.2858vw;
    padding-top: 2.857143vw;
  }
  #footer .footer_bottom ul li + li {
    margin-left: 3.57143vw;
  }
  #footer .footer_bottom ul li a {
    font-size: 1.07143vw;
  }
  #footer .copy {
    font-size: 0.857143vw;
  }
  .footer_link {
    padding: 3rem 0;
  }
}
@media screen and (max-width: 1200px) {
  .footer_link ul li:nth-child(1) {
    width: 14.417%;
  }
  .footer_link ul li:nth-child(2) {
    width: 18.25%;
  }
  .footer_link ul li:nth-child(3) {
    width: 17.917%;
  }
  .footer_link ul li:nth-child(4) {
    width: 11.67%;
  }
  .footer_link ul li:nth-child(5) {
    width: 23.333%;
  }
}
@media screen and (min-width: 769px) {
  .fix_contact {
    display: none !important;
  }
  .footer_link ul li:nth-child(1) img {
    width: 143px;
  }
  .footer_link ul li:nth-child(2) img {
    width: 239px;
  }
  .footer_link ul li:nth-child(3) img {
    width: 185px;
  }
  .footer_link ul li:nth-child(4) img {
    width: 110px;
  }
  .footer_link ul li:nth-child(5) img {
    width: 250px;
  }
}
@media screen and (max-width: 768px) {
  #footer {
    padding: 10.6667vw 0;
  }
  #footer .wrap {
    display: block;
  }
  #footer .footer_left {
    margin-top: 13.333vw;
    width: 100%;
  }
  #footer .footer_right {
    width: 100%;
  }
  #footer .address {
    font-size: 1.2rem;
    margin-top: .8rem;
  }
  #footer .footer_nav + .footer_nav {
    margin-top: 3rem;
  }
  #footer .footer_nav .title {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    padding-bottom: 1.25rem;
  }
  #footer .footer_nav .title span {
    font-size: 1.3rem;
  }
  #footer .footer_nav ul {
    display: block;
  }
  #footer .footer_nav ul li + li {
    margin-left: 0;
    margin-top: 1.5rem;
  }
  #footer .footer_nav ul li a {
    font-size: 1.3rem;
  }
  #footer .footer_bottom {
    border-top: none;
    margin-top: 6.4vw;
    padding-top: 0;
  }
  #footer .footer_bottom ul {
    display: none;
  }
  #footer .copy {
    font-size: 1rem;
    text-align: center;
  }
  .footer_link {
    padding: 8vw 0;
  }
  .footer_link ul {
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .footer_link ul li {
    margin-top: 4.861%;
  }
  .footer_link ul li:nth-child(1) {
    width: 40.278%;
    margin-top: 0;
  }
  .footer_link ul li:nth-child(2) {
    width: 37.5%;
    margin-top: 0;
  }
  .footer_link ul li:nth-child(3) {
    width: 45.556%;
  }
  .footer_link ul li:nth-child(4) {
    width: 29.86%;
  }
  .footer_link ul li:nth-child(5) {
    margin-top: 5.2%;
    width: 65.278%;
  }
  .fix_contact {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 101;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    opacity: 1;
    visibility: visible;
  }
  .fix_contact.hidden {
    opacity: 0;
    visibility: hidden;
  }
  .fix_contact a {
    background-color: #272D74;
    width: 100%;
    height: 16vw;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10.5rem;
    text-align: center;
    -webkit-clip-path: polygon(0 0%, 100% 0%, 85% 100%, 0% 100%);
    clip-path: polygon(0 0%, 100% 0%, 85% 100%, 0% 100%);
  }
  .fix_contact::before {
    background: #009A60;
    content: "";
    height: 100%;
    width: 80px;
    position: absolute;
    right: 0;
    top: 0;
  }
  .fix_contact a .en {
    font-size: 2.4rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1;
    padding-left: 3rem;
    position: relative;
  }
  .fix_contact a .en::before {
    background: url(../img/common/icon_contact.svg) no-repeat;
    background-size: 2.2rem 1.6rem;
    content: "";
    width: 2.2rem;
    height: 1.6rem;
    position: absolute;
    left: 0;
    top: 4px;
  }
}