@charset "utf-8";

/*
Theme Name: SCSK
*/

/* RESET
----------------------------------------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video,picture {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  line-height: 1.5em;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  margin : 0;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}

img {
  vertical-align: bottom;
  border: none;
}
picture {
  display: block;
}
/* ----------------------------------------------

 * 設定をしなおす

---------------------------------------------- */
:root {
  --inner: 112.6rem;
  --mainColor: #1A2692;
  --subColor: #C6C1E2;
  --bgColor: #ECECEC;
  --black: #212121;
}
@media (prefers-reduced-motion: reduce) {
  * {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
  }
}
html {
  -webkit-font-smoothing: antialiased;
  font-size: 62.5%;
}
@media screen and (max-width: 1200px) {
  html {
    font-size: 0.7320644217vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}
body {
  margin: 0 auto;
  padding: 0;
  font-size: 1.6rem;
  line-height: 1.8em;
  color: var(--black);
  height: 100%;
  font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 400;
  position: relative;
  background: url(./img/bg.jpg) repeat-y top left / 100% fixed;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

.en {
  font-family: "din-2014", sans-serif;
  font-weight: 400;
  font-style: normal;
}

table {
  margin : 0;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}

img {
  vertical-align: bottom;
  border: none;
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
}
main {
  display: block;
  position: relative;
}

a {
  outline:none;
  color: var(--black);
}

a:hover {
  text-decoration: none;
}

a,a:hover,a:hover img,button,input {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none;
}

a:hover {
  filter: alpha(opacity=80);
  -moz-opacity:0.80;
  opacity:0.80;
}

* {
  -webkit-box-sizing:border-box;
  -moz-box-sizing:border-box;
  box-sizing:border-box;
}


/* -----------------------------------------------
 * COMMON
----------------------------------------------- */
input[type=text]:focus {
    outline: none;
}

section {
  position: relative;
}
.container {
  max-width: calc(var(--inner) + 4rem);
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
.large_container {
  max-width: 124.6rem;
}
.pt-0 {
  padding-top: 0 !important;
}
.pb-0 {
  padding-bottom: 0 !important;
}

@media only screen and ( max-width : 767px ) {
  .container {
    max-width: 100%;
  }
  .section {
    padding: 45px 0;
  }
  .br_pc {
    display: none;
  }
  .sp_none{display:none !important;}
}
@media print, screen and ( min-width : 768px ) {
  .section {
    padding: 60px 0;
  }
  .br_sp {
    display: none;
  }
  .sp { display:none !important; }
}
/* ---------------------------------------------------------------------------------------------

　   FLEX

--------------------------------------------------------------------------------------------- */
.d-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}
.flex-row {
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}
.justify-content-start {
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.align-items-start {
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-end {
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}


@media (min-width: 576px) {
  .d-sm-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .justify-content-sm-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-sm-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .align-items-sm-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
}

@media (min-width: 768px) {
  .d-md-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .justify-content-md-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-md-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .align-items-md-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-md-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-md-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
}

@media (min-width: 992px) {
  .d-lg-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .justify-content-lg-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-lg-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .align-items-lg-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xl-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .align-items-xl-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
}

/* ---------------------------------------------------------------------------------------------

　   TEXT

--------------------------------------------------------------------------------------------- */
.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}
.mb-1 {
  margin-bottom: 0.25rem !important;
}
.mb-2 {
  margin-bottom: 0.5rem !important;
}
.mb-3 {
  margin-bottom: 1rem !important;
}
.mb-4 {
  margin-bottom: 1.5rem !important;
}
.mb-5 {
  margin-bottom: 3rem !important;
}
@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}

@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}

/* ---------------------------------------------------------------------------------------------

　   HEADER

--------------------------------------------------------------------------------------------- */
#header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: transform 0.3s 0.3s;
}
#header.scroll {
  /*background: rgba(255,255,255,.95);*/
  background: transparent;
  backdrop-filter: blur(5px);
}
#header.hidden {
    transform: translateY(-100%);
    transition: transform 0.3s ease-out;
}

#h_logo,
#h_contact {
  position: relative;
  z-index: 9999;
}
#h_logo a {
  display: flex;
  color: var(--mainColor);
  font-weight: 700;
}
#h_logo img {
  transition: .3s;
}
.open #h_logo a {
  background: url(./img/logo_white.svg) no-repeat center / 100%;
}
.open #h_logo img {
  opacity: 0;
}
.open #h_logo a span {
  display: none;
}
#h_contact {
  display: flex;
  align-items: center;
}
.h_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  background: var(--mainColor);
}
.h_btn_txt {
  position: relative;
}

#menu_btn {
  transition: .3s;
  cursor: pointer;
  position: relative;
  z-index: 9999;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 70px;
  height: 32px;
  padding: 10px;
}

.menu-trigger {
  vertical-align: middle;
  text-align: center;
  position: relative;
  width: 100%;
  height: 100%;
}
.menu-trigger span {
  display: inline-block;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #212121;
  transition: all .5s;
}
#menu_btn .midnightHeader.white .menu-trigger span {
  background: #212121;
}
#menu_btn.active .menu-trigger span {
  background-color: #212121;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}

#menu_btn.active .menu-trigger span:nth-of-type(1) {
  transform: translateY(4px) rotate(-20deg);
}

.menu-trigger span:nth-of-type(2) {
  bottom: 0;
}
#menu_btn.active .menu-trigger span:nth-of-type(2) {
  transform: translateY(-4px) rotate(20deg);
}

.overlay {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(255, 255, 255, .2);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  opacity: 0;
  transition: opacity .5s;
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
}
.overlay.open {
  width: 100%;
  height: 100vh;
  opacity: 1;
}
#main {
  height: 100%;
  transition: all .5s;
}
#gNav {
  height: calc(100vh - 2rem);
  overflow: auto;
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 101;
  transition: all .2s;
  width: calc(100% - 2rem);
  border-radius: 2rem;
  border: .2rem solid #fff;
  background: url(./img/nav_bg_02.png) no-repeat left top / cover ,url(./img/bg.jpg) repeat-y left top / 100% fixed;
  opacity: 0;
  visibility: hidden;
}
#gNav.open {
  opacity: 1;
  visibility: visible;
}
.nav_wrapper {
  position: relative;
}
#gNav:before {
  content: "";
  background: url(./img/nav_bg.jpg) no-repeat left top / cover;
  position: absolute;
  z-index: 1;
}
.nav_content {
  position: relative;
  z-index: 2;
}
.nav_ul {
  position: relative;
}
.nav_ul:before,
.nav_ul:after {
  content: "";
  background: url(./img/deco.svg) no-repeat center / 100%;
  width: 3.6rem;
  height: 3.6rem;
  position: absolute;
}
.nav_ul:before {
  top: 0;
  left: 0;
}
.nav_ul:after {
  bottom: 0;
  right: 0;
}
.nav li:last-child,
.nav li li:last-child {
  margin-bottom: 0;
}
.nav li a,
.nav_title {
  display: block;
  position: relative;
  letter-spacing: .04em;
  font-weight: 700;
  color: var(--mainColor);
}
.nav li li a {
  color: var(--subColor);
}
.nav li li a:hover {
  color: var(--mainColor);
}

.sub_nav_link a {
  color: var(--subColor);
  font-weight: 700;
}
.sub_nav_link a:hover {
  color: var(--mainColor);
}
.ico-window {
  display: inline-block;
  margin-left: .7rem;
}
.ico-window img {
  display: block;
  width: 1.5rem;
}
a:hover .ico-window img {
  opacity: 0;
}
a:hover .ico-window {
  background: url(./img/ico-window-color.svg) no-repeat center / 100%;
}

@media only screen and ( max-width : 767px ) {
  #header {
    height: 8rem;
    padding: 1.5rem;
  }
  header.hidden {
    transform: translateY(-8rem) !important;
  }
  #h_logo img {
    width: 11.8rem;
  }
  #h_logo a span {
    font-size: 1.2rem;
    margin-top: 1rem;
    margin-left: 1rem;
  }
  #h_contact .h_btn {
    display: none;
  }
  #menu_btn.active {
    right: 1rem;
    top: .6rem;
  }
  #menu_btn.active .menu-trigger span {
    background-color: #fff;
  }
  #gNav {
    padding: 12rem 0 2rem;
  }
  .nav {
    padding: 0 3.6rem;
  }
  #gNav:before {
    width: 100%;
    top: 0;
    left: 0;
    height: 10rem;
  }
  .open #h_logo {
    top: 1.5rem;
    left: .5rem;
  }
  .nav_ul {
    padding-top: 3.4rem;
  }
  .nav_ul:before {
    width: 2.4rem;
    height: 2.4rem;
    top: 0;
    left: 1.5rem;
  }
  .nav_ul:after {
    content: none;
  }
  .nav_content {
    position: relative;
    padding-bottom:3.6rem;
  }
  .nav_content:after {
    content: "";
    background: url(./img/deco.svg) no-repeat center / 100%;
    width: 2.4rem;
    height: 2.4rem;
    position: absolute;
    bottom: 0;
    right: 1.5rem;
  }
  .nav {
    margin-bottom: 3.5rem;
  }
  .nav li {
    margin-bottom: 3.5rem;
    font-size: 1.6rem;
  }
  .nav li ul {
    margin-top: 1.5rem;
  }
  .nav li li {
    margin-bottom: 1rem;
    font-size: 1.4rem;
  }
  .sub_nav {
    font-size: 1.2rem;
    padding: 0 3.6rem;
  }
  .sub_nav a {
    margin-right: 2.5rem;
  }
  .sub_nav a:last-child {
    margin-right: 0;
  }
  .ico-window {
    margin-left: .4rem;
  }
  .ico-window img {
    width: 1.1rem;
  }
  #gNav .h_btn {
    width: 100%;
    height: 5.5rem;
    margin-right: 3.5rem;
    font-size: 1.6rem;
    margin-bottom: 3.5rem;
  }
  #gNav .h_btn_txt {
    padding-left: 2.8rem;
  }
  #gNav .h_btn_txt:before {
    content: "";
    width: 1.2rem;
    height: 1.2rem;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #C6C1E2;
    border-radius: 50%;
  }
}
@media print, screen and ( min-width : 768px ) {
  #header {
    height: 11rem;
    padding: 0 6rem;
  }
  header.hidden {
    transform: translateY(-11rem) !important;
  }
  .open #h_logo {
    top: 3.5rem;
  }
  #h_logo img {
    width: 17.5rem;
  }
  #h_logo a span {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-left: 1.2rem;
  }
  .h_btn {
    width: 23rem;
    height: 5.5rem;
    margin-right: 3.5rem;
  }
  .h_btn_txt {
    padding-left: 2.8rem;
  }
  .h_btn_txt:before {
    content: "";
    width: 1.2rem;
    height: 1.2rem;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #C6C1E2;
    border-radius: 50%;
  }
  #gNav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 6rem;
  }
  #gNav:before {
    width: 31.57%;
    top: 0;
    left: 0;
    height: 100%;
  }
  .nav_wrapper {
    width: 65%;
  }
  .nav_ul {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 8.6rem;
  }
  .nav {
    width: 49%;
  }
  .nav li {
    margin-bottom: 6rem;
    font-size: 2rem;
  }
  .nav li ul {
    margin-top: 2rem;
  }
  .nav li li {
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
  }
  .sub_nav {
    margin-top: 14.4rem;
    font-size: 1.6rem;
    padding: 0 8.6rem;
  }
  .sub_nav a {
    margin-right: 3.5rem;
  }
  .sub_nav a:last-child {
    margin-right: 0;
  }
  .sub_nav .h_btn {
    display: none;
  }
}
@media print, screen and ( min-width : 1920px ) {
  .nav li {
    font-size: 1.4vw;
  }
  .nav li ul {
    margin-top: 1.4vw;
  }
  .nav li li {
    margin-bottom: 1vw;
    font-size: 1vw;
  }
  .sub_nav {
    margin-top: 14.4rem;
    font-size: 1vw;
  }
  .ico-window img {
    width: 1vw;
  }
}


/* ---------------------------------------------------------------------------------------------

　   FOOTER

--------------------------------------------------------------------------------------------- */
#footer {
  position: relative;
  /*background: transparent;
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);*/
  z-index: 10;
}
#footer_anime {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  opacity: .4;
  width: 100%;
  height: auto !important;
  bottom: 0;
}
#footer_content {
  border: .2rem solid #fff;
  border-radius: 2rem;
  background: rgba(255,255,255,.1);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  position: relative;
  z-index: 1;
}
#footer .container {
  position: relative;
}
.f_top {
  border-top: .2rem solid var(--subColor);
}
.f_logo img {
  width: 100%;
}
#footer .f_nav li a,
#footer .f_nav li .f_nav_title {
  color: var(--mainColor);
  position: relative;
  display: block;
  font-weight: 700;
}
#footer .f_nav li li a,
.f_sub_nav a {
  color: var(--subColor);
  font-weight: 700;
}
#footer .f_nav li li a:hover,
.f_sub_nav a:hover {
  color: var(--mainColor);
}

.f_copy {
  text-align: center;
  font-weight: 700;
}
#footer_wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

@media only screen and ( max-width : 767px ) {
  #footer_wrapper {
    padding-top: 30rem;
    margin-top: -30rem;
  }
  #footer_content {
    padding: 4rem 0 3rem;
  }
  .f_logo {
    width: 15.2rem;
    margin-bottom: 3.5rem;
  }
  .f_top {
    padding-top: 5rem;
    margin-top: 5rem;
  }
  .f_nav li ul {
    margin-top: 1.5rem;
  }
  .f_nav li {
    margin-bottom: 3.5rem;
    font-size: 1.6rem;
  }
  .f_nav li li {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
  .f_nav li li:last-child {
    margin-bottom: 0;
  }
  .f_bottom {
    padding: 1.5rem 0;
  }
  .f_sub_nav a {
    margin-right: 2.5rem;
    font-size: 1.2rem;
  }
  .f_copy {
    font-size: 1.2rem;
  }
  #footer_anime {
    width: 75rem !important;
  }
}

@media print, screen and ( min-width : 768px ) {
  #footer_wrapper {
    padding-top: 32rem;
    margin-top: -32rem;
  }
  #footer_content {
    padding: 6rem 0;
  }
  .f_top {
    padding-top: 9rem;
    margin-top: 9rem;
  }
  .f_top_left {
    width: 22.8rem;
    margin-right: 10rem;
  }
  .f_top_right {
    width: calc(100% - 32.8rem);
    display: flex;
    justify-content: space-between;
  }
  .f_nav {
    width: 29%;
  }
  .f_nav:last-child {
    width: 36%;
  }
  .f_nav li ul {
    margin-top: 2rem;
  }
  .f_nav li {
    margin-bottom: 6rem;
    font-size: 2rem;
  }
  .f_nav li li {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }
  .f_nav li:last-child,
  .f_nav li li:last-child {
    margin-bottom: 0;
  }
  .f_bottom {
    padding: 2.5rem 0;
  }
  .f_sub_nav {
    margin-top: 6rem;
  }
  .f_sub_nav a {
    margin-right: 3.5rem;
  }
  .f_copy {
    font-size: 1.4rem;
  }
  #footer_anime {
    width: 160rem !important;
  }
}

/* ---------------------------------------------------------------------------------------------

　   CONTACT

--------------------------------------------------------------------------------------------- */
#contact {
  position: relative;
  z-index: 4;
}
#contact .contact_tit {
  color: var(--mainColor);
  font-weight: 700;
  letter-spacing: .04em;
  display: flex;
  justify-content: space-between;
}
#contact .contact_tit span {
  line-height: 1;
}
#contact .contact_tit span:first-of-type {
  color: var(--subColor);
}
#contact .contact_content p {
  letter-spacing: .04em;
  line-height: 1.8em;
}
@media only screen and ( max-width : 767px ) {
  #contact .contact_tit {
    margin-bottom: 1.5rem;
    font-size: 5.2rem;
  }
  #contact .contact_content p {
    font-size: 1.4rem;
    margin-bottom: 4rem;
  }
  #contact .contact_link {
    width: 29rem;
    margin: 0 auto;
  }
  #contact .contact_link .btn {
    padding: 0;
  }
}
@media print, screen and ( min-width : 768px ) {
  #contact .contact_tit {
    font-size: 19.6rem;
    margin-bottom: 4rem;
  }
  #contact .contact_content {
    width: calc(100% - (29rem + 6rem));
  }
  #contact .contact_link {
    width: 29rem;
    margin-left: 6rem;
  }
}



/* ---------------------------------------------------------------------------------------------

　   COMMON

--------------------------------------------------------------------------------------------- */
#wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.fit {
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  width: 100%;
  height: 100%;
}
.btn {
  background: var(--mainColor);
  color: #fff;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-weight: 700;
  max-width: 29rem;
}
.btn span {
  position: relative;
  padding-left: 2.8rem;
}
.btn span:before {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: var(--subColor)
}
.btn_center {
  margin: 0 auto;
}

.heading {
  display: flex;
  align-items: center;
  justify-content: center;
}
.heading.heading_left {
  justify-content: flex-start;
}
.heading_small {
  flex-direction: column;
  align-items: flex-start; 
}
.heading-en {
  color: var(--mainColor);
  font-weight: 700;
  line-height: 1;
  letter-spacing: .2em;
  position: relative;
}
.heading-en:before,
.heading-en:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
.heading-en:before {
  background: var(--subColor);
  left: 0;
}
.heading-en:after {
  background: var(--mainColor);
}
.heading-jp {
  font-weight: 700;
  color: var(--mainColor);
  line-height: 1.56;
}
@media only screen and ( max-width : 767px ) {
  #wrapper_sp {
    overflow: hidden;
    width: 100%;
    position: relative;
  }
  .sec {
    padding: 7rem 0;
  }
  .btn {
    height: 5.5rem;
    padding: 0 2rem;
    font-size: 1.6rem;
  }
  .heading {
    flex-direction: column;
    margin-bottom: 3rem;
  }
  .heading-jp {
    font-size: 3.2rem;
  }
  .heading-en {
    padding-left: 2.5rem;
  }
  .heading-en:before {
    width: 1.5rem;
    height: 1.5rem;
  }
  .heading-en:after {
    width: .7rem;
    height: .7rem;
    left: .4rem;
  }
  .heading.heading_left_sp {
    align-items: flex-start;
  }
  .heading_small .heading-jp {
    font-size: 2.4rem;
    margin-top: 1rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  .sec {
    padding: 10rem 0;
  }
  .heading {
    margin-bottom: 7rem;
  }
  .heading-en {
    padding-left: 3rem;
  }
  .heading-en:before {
    width: 2rem;
    height: 2rem;
  }
  .heading-en:after {
    width: .8rem;
    height: .8rem;
    left: .6rem;
  }
  .heading-jp {
    font-size: 6.4rem;
    margin-left: 3.6rem;
  }
  .heading_small .heading-jp {
    font-size: 3.6rem;
    margin-left: 0;
    margin-top: 1rem;
  }
}



/* ---------------------------------------------------------------------------------------------

　   pagenavi

--------------------------------------------------------------------------------------------- */


.wp-pagenavi {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.wp-pagenavi .pages,
.previouspostslink,
.nextpostslink {
  display: none;
}

.wp-pagenavi .page,
.wp-pagenavi .current {
  width: 6rem;
  height: 6rem;
  background: none;
  text-align: center;
  line-height: 6rem;
  margin: 0 1rem;
  color: var(--mainColor);
  font-family: "din-2014", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  border: 1.5px solid var(--mainColor) !important;
  border-radius: 50%;
  background: #fff;
}
.wp-pagenavi .current {
}
.wp-pagenavi .page:hover {
  background: var(--mainColor);
  color: #fff;
}
.wp-pagenavi .current {
  background: var(--mainColor);
  color: #fff;
}
@media only screen and ( max-width : 767px ) {
  .wp-pagenavi {
    margin-top: 5rem;
  }
  .wp-pagenavi .page,
  .wp-pagenavi .current {
    width: 4rem;
    height: 4rem;
    line-height: 3.5rem;
    margin: 0 .5rem;
    font-size: 1.4rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  .wp-pagenavi {
    margin-top: 10rem;
  }
  .wp-pagenavi .page,
  .wp-pagenavi .current {
    width: 6rem;
    height: 6rem;
    line-height: 5rem;
    margin: 0 1rem;
    font-size: 2.4rem;
  }
}

/* ---------------------------------------------------------------------------------------------

　   XXX

--------------------------------------------------------------------------------------------- */

@media only screen and ( max-width : 767px ) {
}
@media print, screen and ( min-width : 768px ) {
}

