@charset "UTF-8";
/*--------------------------------------
font
---------------------------------------*/
body, .tooltip, .popover,
button, input, optgroup, select, textarea,
h1, h2, h3, h4, h5,
.h1, .h2, .h3, .h4, .h5 {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  line-height: 1.8;
}

/* Noto sansのIE表示用のCSS　*/
@media screen and (min-width: 0\0 ) and (min-resolution: 72dpi) {
  body, .tooltip, .popover,
  button, input, optgroup, select, textarea,
  h1, h2, h3, h4, h5,
  .h1, .h2, .h3, .h4, .h5 {
    font-family: Meiryo, sans-serif;
    font-weight: normal;
  }
}
/*--------------------------------------
base
---------------------------------------*/
body, button, input, optgroup, select, textarea,
h1, h2, h3, h4, h5, p {
  margin: 0;
  padding: 0;
}

ol, ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  vertical-align: baseline;
  font-size: 0;
  line-height: 0;
}

a {
  color: #333333;
  text-decoration: none;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
@media all and (min-width: 769px) {
  a:hover {
    color: #CCCCCC;
  }
}
@media all and (min-width: 769px) {
  a::active {
    color: #CCCCCC;
  }
}

/*--------------------------------------
reset
---------------------------------------*/
/* animation */
.wow {
  visibility: hidden;
}

/*--------------------------------------
body
---------------------------------------*/
html {
  min-height: 100vh;
}
@media all and (max-width: 767px) {
  html {
    min-height: auto;
    background-color: transparent !important;
  }
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  color: #333333;
  background-color: #FFFFFF;
  box-sizing: border-box;
  margin: 0;
}

svg {
  display: inline-block;
  vertical-align: middle;
}

/*--------------------------------------
header
---------------------------------------*/
header#header {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  padding: 12px 0;
  transition: background-color 0.3s ease, padding 0.3s ease;
}
@media all and (min-width: 1281px) {
  header#header {
    left: 50%;
    transform: translateX(-50%);
    max-width: 1400px;
    width: 98%;
  }
}
@media all and (max-width: 600px) {
  header#header {
    padding: 12px 0;
  }
}
header#header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 0 0 20px 20px;
}
header#header #logo {
  width: 238px;
  line-height: 0;
  z-index: 9999;
  padding-left: 10px;
  cursor: pointer;
}
header#header #logo a {
  display: block;
}
header#header #logo img {
  width: 100%;
}
header#header #g-nav {
  padding-right: 20px;
}
@media all and (max-width: 1280px) {
  header#header #g-nav {
    position: fixed;
    z-index: 999;
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh;
    background: #206DD8;
    transition: all 0.6s;
    background-image: rgba(188, 167, 151, 0.8);
    background-repeat: no-repeat;
    background-size: cover;
    padding-right: 0;
  }
}
header#header #g-nav.panelactive {
  right: 0;
}
header#header #g-nav.panelactive #g-nav-list {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
@media all and (min-width: 1281px) {
  header#header #g-nav #g-nav-list > div {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
  }
}
@media all and (max-width: 1280px) {
  header#header #g-nav #g-nav-list > div {
    width: 80%;
    margin: auto;
    padding-top: 76px;
    padding-bottom: 30px;
  }
}
header#header #g-nav ul {
  display: flex;
}
@media all and (max-width: 1280px) {
  header#header #g-nav ul {
    width: 90%;
    display: block;
    max-width: 320px;
    margin: auto;
  }
}
@media all and (min-width: 1281px) {
  header#header #g-nav ul {
    margin-right: 40px;
  }
}
header#header #g-nav ul li {
  list-style: none;
}
@media all and (max-width: 1280px) {
  header#header #g-nav ul li {
    margin-right: 0;
  }
}
@media all and (min-width: 1281px) {
  header#header #g-nav ul li:not(:last-of-type) {
    margin-right: 30px;
  }
}
header#header #g-nav ul li a {
  color: #206DD8;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  transition: all .3s ease;
  overflow: hidden;
  position: relative;
}
@media all and (max-width: 1280px) {
  header#header #g-nav ul li a {
    color: #FFFFFF;
    padding: 14px 0;
    font-size: 22px;
  }
}
header#header #g-nav ul li a::before {
  content: "";
  transition: all .3s ease;
}
@media all and (min-width: 1281px) {
  header#header #g-nav ul li a:hover {
    color: #7DF7F9;
  }
}
@media all and (min-width: 1281px) {
  header#header #g-nav ul li a:hover::before {
    width: 26px;
    height: 26px;
    background-color: #FDFF8B;
    border-radius: 90px;
    position: absolute;
    top: 0;
    left: 2px;
    z-index: -1;
  }
}
@media all and (max-width: 1280px) {
  header#header #g-nav ul li a > div {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
  }
}
header#header #g-nav ul li a .menu-icon-sp {
  width: 18px;
  height: 18px;
  background-color: #FDFF8B;
  border-radius: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 8px;
}
@media all and (min-width: 1281px) {
  header#header #g-nav ul li a .menu-icon-sp {
    display: none;
  }
}
header#header #g-nav ul li a .menu-icon-sp svg.arrow-btn {
  color: #206DD8;
  width: 12px;
  height: 9px;
  transition: all .3s ease;
}
header#header #g-nav ul li a span.title-en {
  font-size: 12px;
  font-weight: 900;
  font-family: "Commissioner", sans-serif;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}
@media all and (min-width: 1281px) {
  header#header #g-nav ul li a span.title-en {
    display: none;
  }
}
@media all and (min-width: 1281px) {
  header#header #g-nav ul li a br {
    display: none;
  }
}
header#header #g-nav ul > div {
  margin-top: 100px;
}
@media all and (max-width: 1500px) {
  header#header #g-nav ul > div {
    margin-top: 60px;
  }
}
header#header #g-nav ul > div .txt {
  color: #FFFFFF;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
}
@media all and (max-width: 1500px) {
  header#header #g-nav ul > div .txt {
    font-size: 18px;
  }
}
header#header #g-nav ul > div .txt span {
  color: #FFF614;
}
@media all and (max-width: 1280px) {
  header#header #g-nav ul > div .txt span {
    display: block;
  }
}
header#header #g-nav ul > div .link {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}
header#header #g-nav ul > div .link > div:not(:last-of-type) {
  margin-right: 140px;
}
@media all and (max-width: 1500px) {
  header#header #g-nav ul > div .link > div:not(:last-of-type) {
    margin-right: 100px;
  }
}
@media all and (max-width: 1280px) {
  header#header #g-nav ul > div .link > div:not(:last-of-type) {
    margin-right: 40px;
  }
}
header#header #g-nav ul > div .link a {
  color: #FFFFFF;
  font-size: 18px;
  transition: ease .3s;
}
@media all and (max-width: 1500px) {
  header#header #g-nav ul > div .link a {
    font-size: 14px;
  }
}
header#header #g-nav ul > div .link a:hover {
  color: #93E8F4;
}
@media all and (min-width: 1281px) {
  header#header #g-nav .tel {
    margin-right: 16px;
  }
}
@media all and (max-width: 1280px) {
  header#header #g-nav .tel {
    width: 90%;
    max-width: 320px;
    margin: auto;
    padding-top: 24px;
  }
}
header#header #g-nav .tel a {
  color: #206DD8;
  font-size: 22px;
  font-family: "Commissioner", sans-serif;
  font-weight: 800;
  cursor: default;
  line-height: 1.2;
  transition: all .3s ease;
  overflow: hidden;
  position: relative;
}
@media all and (max-width: 1280px) {
  header#header #g-nav .tel a {
    color: #FDFF8B;
    font-size: 34px;
    padding: 16px 0;
  }
}
header#header #g-nav .tel a::before {
  content: "";
  transition: all .3s ease;
}
@media all and (min-width: 1281px) {
  header#header #g-nav .tel a:hover {
    color: #7DF7F9;
  }
}
@media all and (min-width: 1281px) {
  header#header #g-nav .tel a:hover::before {
    width: 26px;
    height: 26px;
    background-color: #FDFF8B;
    border-radius: 90px;
    position: absolute;
    top: 0;
    left: 2px;
    z-index: -1;
  }
}
header#header #g-nav .btn-entry {
  max-width: 147px;
}
@media all and (max-width: 1280px) {
  header#header #g-nav .btn-entry {
    width: 100%;
    max-width: 300px;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
  }
}
header#header #g-nav .btn-entry a {
  color: #000000;
  font-size: 19px;
  font-family: "Commissioner", sans-serif;
  font-weight: 800;
  background-color: #FDFF8B;
  box-shadow: 1px 2px 0px #000000;
  border-radius: 90px;
  padding: 4px 6px 4px 42px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 20px;
  transition: all .3s ease;
  position: relative;
}
@media all and (max-width: 1280px) {
  header#header #g-nav .btn-entry a {
    padding: 11px 0;
    justify-content: center;
  }
}
header#header #g-nav .btn-entry a svg.arrow-btn {
  color: #206DD8;
  width: 16px;
  height: 12px;
  transition: all .3s ease;
}
@media all and (max-width: 1280px) {
  header#header #g-nav .btn-entry a svg.arrow-btn {
    color: #000000;
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
  }
}
@media all and (min-width: 1281px) {
  header#header #g-nav .btn-entry a:hover {
    color: #FFFFFF;
    background-color: #206DD8;
  }
}
@media all and (min-width: 1281px) {
  header#header #g-nav .btn-entry a:hover svg.arrow-btn {
    color: #FDFF8B;
  }
}
header#header .openbtn {
  position: fixed;
  z-index: 9999;
  top: 10px;
  right: 10px;
  cursor: pointer;
  width: 95px;
  height: 95px;
  background-color: #7DF7F9;
  border-radius: 90px;
  box-shadow: 1px 2px 0px #000000;
  transition: ease .2s;
  display: block;
}
@media all and (min-width: 1281px) {
  header#header .openbtn {
    display: none;
  }
}
@media all and (max-width: 1500px) {
  header#header .openbtn {
    width: 53px;
    height: 53px;
  }
}
header#header .openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  border-radius: 2px;
  background-color: #FDFF8B;
  width: 45%;
}
@media all and (max-width: 1500px) {
  header#header .openbtn span {
    width: 36%;
  }
}
header#header .openbtn span:nth-of-type(1) {
  top: 20px;
}
@media all and (max-width: 1500px) {
  header#header .openbtn span:nth-of-type(1) {
    top: 20px;
  }
}
header#header .openbtn span:nth-of-type(2) {
  top: 26px;
}
@media all and (max-width: 1500px) {
  header#header .openbtn span:nth-of-type(2) {
    top: 26px;
  }
}
header#header .openbtn span:nth-of-type(3) {
  top: 32px;
}
@media all and (max-width: 1500px) {
  header#header .openbtn span:nth-of-type(3) {
    top: 32px;
  }
}
header#header .openbtn.active {
  background-color: #FDFF8B;
}
header#header .openbtn.active span {
  background-color: #000000;
}
header#header .openbtn.active span:nth-of-type(1) {
  top: 27px;
  transform: translateX(-50%) rotate(-45deg);
  width: 36%;
}
@media all and (max-width: 1500px) {
  header#header .openbtn.active span:nth-of-type(1) {
    top: 27px;
    width: 36%;
  }
}
header#header .openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
header#header .openbtn.active span:nth-of-type(3) {
  top: 27px;
  transform: translateX(-50%) rotate(45deg);
  width: 36%;
}
@media all and (max-width: 1500px) {
  header#header .openbtn.active span:nth-of-type(3) {
    top: 27px;
    width: 36%;
  }
}

body:not(#index) header#header {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 0 0 20px 20px;
}
@media all and (min-width: 1281px) {
  body:not(#index) header#header {
    max-width: 1400px;
    left: 50%;
    transform: translateX(-50%);
    width: 98%;
  }
}
body:not(#index) header#header .openbtn {
  right: 20px;
}

/*--------------------------------------
fixed btn entry
---------------------------------------*/
.fixed-btn-entry {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 400;
  background-color: #FDFF8B;
  text-align: center;
  z-index: 9;
}
@media all and (min-width: 768px) {
  .fixed-btn-entry {
    display: none;
  }
}
.fixed-btn-entry a {
  color: #000000;
  font-size: 26px;
  font-family: "Commissioner", sans-serif;
  font-weight: 700;
  width: 100%;
  height: 100%;
  display: inline-block;
  padding: 10px 0;
}

/*--------------------------------------
footer
---------------------------------------*/
footer {
  background-color: #003D92;
  padding-top: 60px;
  padding-bottom: 30px;
  position: relative;
}
footer .btn-backtop {
  position: absolute;
  top: 15px;
  right: 35px;
}
@media all and (max-width: 600px) {
  footer .btn-backtop {
    right: 15px;
  }
}
footer .btn-backtop a {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media all and (max-width: 600px) {
  footer .btn-backtop a img {
    width: 18px;
  }
}
footer .logo {
  width: 60%;
  max-width: 330px;
  margin: auto;
}
@media all and (max-width: 600px) {
  footer .logo {
    width: 100%;
    max-width: 180px;
  }
}
footer .logo img {
  width: 100%;
}
footer .btn-entry {
  width: 70%;
  max-width: 330px;
  margin: auto;
  padding-top: 60px;
}
@media all and (max-width: 767px) {
  footer .btn-entry {
    padding-top: 30px;
  }
}
@media all and (max-width: 600px) {
  footer .btn-entry {
    width: 100%;
    max-width: 230px;
  }
}
footer .btn-entry a {
  color: #000000;
  font-size: 22px;
  font-family: "Commissioner", sans-serif;
  font-weight: 700;
  background-color: #FDFF8B;
  box-shadow: 1px 2px 0px #000000;
  border-radius: 90px;
  padding: 10px;
  display: block;
  text-align: center;
  position: relative;
  transition: all .3s ease;
}
@media all and (min-width: 768px) {
  footer .btn-entry a:hover {
    color: #003D92;
    background-color: #7DF7F9;
    box-shadow: 4px 5px 0px #000000;
  }
}
footer .btn-entry a:hover svg.arrow-btn {
  color: #FEF247;
}
footer .btn-entry a svg.arrow-btn {
  color: #000000;
  width: 16px;
  height: 12px;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  transition: all .3s ease;
}
footer .tel {
  text-align: center;
  margin-top: 30px;
}
footer .tel a {
  color: #FDFF8B;
  font-size: 30px;
  font-family: "Commissioner", sans-serif;
  font-weight: 900;
}
@media all and (max-width: 600px) {
  footer .tel a {
    font-size: 26px;
  }
}
footer .copyright {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  margin-top: 50px;
}

/*--------------------------------------
btn viewmore
---------------------------------------*/
.btn-viewmore a {
  color: #FFFFFF;
  font-family: "Commissioner", sans-serif;
  font-size: 17px;
  font-weight: 800;
  text-align: center;
  background-color: #F75A7C;
  box-shadow: 1px 2px 0px #000000;
  border-radius: 90px;
  max-width: 215px;
  padding: 10px 0;
  display: block;
  transition: all .3s ease;
}
@media all and (min-width: 768px) {
  .btn-viewmore a:hover {
    background-color: #000000;
    box-shadow: 1px 2px 0px #F75A7C;
  }
}

/*--------------------------------------
hero
---------------------------------------*/
#index #kv {
  background-color: #7DF7F9;
  position: relative;
  line-height: 0.8;
}
#index #kv .iiner {
  position: relative;
}
#index #kv .kv-img {
  position: relative;
}
#index #kv .kv-img img {
  width: 100%;
  max-width: 100%;
}
#index #kv .kv-img .mask {
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 0;
  left: 0;
}
#index #kv .catchcopy {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 94%;
  max-width: 1370px;
}
@media all and (max-width: 500px) {
  #index #kv .catchcopy {
    position: static;
    transform: none;
    margin-top: 10px;
    padding-left: 8%;
    box-sizing: border-box;
  }
}
#index #kv .catchcopy .copy01 {
  color: #000000;
  font-size: calc(20px + (84 - 20) * ((100vw - 375px) / (1440 - 375)));
  font-weight: 900;
  line-height: 1.3;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media all and (min-width: 1441px) {
  #index #kv .catchcopy .copy01 {
    font-size: 84px;
  }
}
@media all and (max-width: 500px) {
  #index #kv .catchcopy .copy01 {
    font-size: 32px;
    position: static;
    margin-bottom: 10px;
    line-height: 1.4;
  }
}
#index #kv .catchcopy .copy02 {
  color: #206DD8;
  font-size: calc(42px + (161 - 42) * ((100vw - 375px) / (1440 - 375)));
  font-weight: 900;
  line-height: 1.1;
  position: absolute;
  bottom: 0;
  right: 0;
  white-space: nowrap;
}
@media all and (min-width: 1441px) {
  #index #kv .catchcopy .copy02 {
    font-size: 161px;
  }
}
@media all and (max-width: 500px) {
  #index #kv .catchcopy .copy02 {
    font-size: 56px;
    position: static;
  }
}

/*--------------------------------------
section culture
---------------------------------------*/
#index #culture {
  padding-top: calc(40px + (100 - 40) * ((100vw - 375px) / (1440 - 375)));
  background-color: #7DF7F9;
}
@media all and (min-width: 1441px) {
  #index #culture {
    padding-top: 100px;
  }
}
@media all and (max-width: 375px) {
  #index #culture {
    padding-top: 40px;
  }
}
#index #culture .slider01, #index #culture .slider02 {
  overflow: hidden;
  margin-bottom: 10px;
}
#index #culture .slider01 ul, #index #culture .slider02 ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}
#index #culture .slider01 ul li, #index #culture .slider02 ul li {
  margin: 0 5px;
  width: calc(140px + (400 - 140) * ((100vw - 375px) / (1440 - 375)));
  border-radius: 10px;
  overflow: hidden;
}
@media all and (min-width: 1441px) {
  #index #culture .slider01 ul li, #index #culture .slider02 ul li {
    width: 400px;
  }
}
@media all and (max-width: 375px) {
  #index #culture .slider01 ul li, #index #culture .slider02 ul li {
    width: 140px;
  }
}
#index #culture .slider01 ul li img, #index #culture .slider02 ul li img {
  width: 100%;
  display: block;
}
#index #culture .slider02 {
  direction: rtl;
}
#index #culture .culture-catchcopy {
  color: #003D92;
  font-size: calc(36px + (90 - 36) * ((100vw - 375px) / (1440 - 375)));
  font-weight: 900;
  text-align: center;
  line-height: 1.5;
}
@media all and (min-width: 1441px) {
  #index #culture .culture-catchcopy {
    font-size: 90px;
  }
}
@media all and (max-width: 767px) {
  #index #culture .culture-catchcopy {
    margin-top: 30px;
  }
}
@media all and (max-width: 375px) {
  #index #culture .culture-catchcopy {
    font-size: 36px;
  }
}
#index #culture .culture-catchcopy span {
  color: #FFFFFF;
}
@media all and (min-width: 768px) {
  #index #culture .culture-catchcopy br {
    display: none;
  }
}
#index #culture .inner {
  width: 70%;
  max-width: 950px;
  margin: 30px auto 0;
}
@media all and (min-width: 768px) {
  #index #culture .inner .box {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
  }
}
@media all and (min-width: 768px) {
  #index #culture .inner .box .box-left,
  #index #culture .inner .box .box-right {
    width: 50%;
  }
}
#index #culture .inner .box .box-left h2 {
  color: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(20px + (24 - 20) * ((100vw - 375px) / (1440 - 375)));
  font-weight: 700;
  line-height: 1.3;
  padding-top: 30px;
  position: relative;
}
@media all and (min-width: 1441px) {
  #index #culture .inner .box .box-left h2 {
    font-size: 24px;
  }
}
@media all and (max-width: 375px) {
  #index #culture .inner .box .box-left h2 {
    font-size: 20px;
  }
}
#index #culture .inner .box .box-left h2::before {
  content: "";
  background-image: url(../_img/index/culture-title-decoration.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: calc(103px + (123 - 103) * ((100vw - 375px) / (1440 - 375)));
  height: calc(84px + (101 - 84) * ((100vw - 375px) / (1440 - 375)));
  position: absolute;
  top: -20px;
  left: calc(-56px + (-66 - (-56)) * ((100vw - 375px) / (1440 - 375)));
}
@media all and (min-width: 1441px) {
  #index #culture .inner .box .box-left h2::before {
    width: 123px;
    height: 101px;
    left: -66px;
  }
}
@media all and (max-width: 375px) {
  #index #culture .inner .box .box-left h2::before {
    width: 103px;
    height: 84px;
    left: -56px;
  }
}
#index #culture .inner .box .box-left h2 span {
  font-family: "Commissioner", sans-serif;
  font-size: calc(40px + (60 - 40) * ((100vw - 375px) / (1440 - 375)));
  font-weight: 800;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}
@media all and (min-width: 1441px) {
  #index #culture .inner .box .box-left h2 span {
    font-size: 60px;
  }
}
@media all and (max-width: 375px) {
  #index #culture .inner .box .box-left h2 span {
    font-size: 40px;
  }
}
@media all and (max-width: 767px) {
  #index #culture .inner .box .box-right {
    margin-top: 20px;
  }
}
#index #culture .inner .box .box-right p {
  font-weight: 700;
  line-height: 2.3;
  font-size: calc(16px + (19 - 16) * ((100vw - 375px) / (1440 - 375)));
}
@media all and (min-width: 1441px) {
  #index #culture .inner .box .box-right p {
    font-size: 19px;
  }
}
@media all and (max-width: 375px) {
  #index #culture .inner .box .box-right p {
    font-size: 16px;
  }
}
#index #culture .inner .btn-viewmore {
  margin-top: 20px;
}
@media all and (min-width: 768px) {
  #index #culture .inner .btn-viewmore {
    margin-top: -30px;
  }
}
@media all and (max-width: 767px) {
  #index #culture .inner .btn-viewmore a {
    margin: auto;
  }
}
#index #culture .text-marquee {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  padding: 20px 0;
}
#index #culture .text-marquee ul.marquee-inner {
  display: flex;
  width: fit-content;
  animation: marquee 30s linear infinite;
}
#index #culture .text-marquee ul.marquee-inner li {
  padding-right: 20px;
}
#index #culture .text-marquee ul.marquee-inner li img {
  height: calc(40px + (120 - 40) * ((100vw - 375px) / (1440 - 375)));
  width: auto;
}
@media all and (min-width: 1441px) {
  #index #culture .text-marquee ul.marquee-inner li img {
    height: 120px;
  }
}
@media all and (max-width: 375px) {
  #index #culture .text-marquee ul.marquee-inner li img {
    height: 30px;
  }
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    /* 同じ画像が2つ並んでいるので、半分動いたところでループさせる */
    transform: translateX(-50%);
  }
}
.slick-track {
  display: flex;
  align-items: center;
}

/*--------------------------------------
section aboutus
---------------------------------------*/
#index #aboutus {
  background-color: #206DD8;
  padding: 50px 0;
}
#index #aboutus .catchcopy {
  width: 64%;
  margin: 0 0 0 auto;
  padding: 16px 12px;
  color: #FDFF8B;
  background-color: #003D92;
  font-size: calc(30px + (64 - 30) * ((100vw - 375px) / (1440 - 375)));
  font-weight: 900;
  line-height: 1.2;
}
@media all and (min-width: 1441px) {
  #index #aboutus .catchcopy {
    font-size: 64px;
  }
}
@media all and (max-width: 375px) {
  #index #aboutus .catchcopy {
    font-size: 30px;
  }
}
@media all and (min-width: 1537px) {
  #index #aboutus .catchcopy {
    width: 62%;
  }
}
@media all and (max-width: 767px) {
  #index #aboutus .catchcopy {
    width: 90%;
    box-sizing: border-box;
  }
}
#index #aboutus .catchcopy > div {
  display: inline-block;
  text-align: right;
}
#index #aboutus .catchcopy span {
  color: #FFFFFF;
}
@media all and (min-width: 767px) {
  #index #aboutus .catchcopy br.sp {
    display: none;
  }
}
#index #aboutus .inner {
  width: 90%;
  max-width: 1440px;
  margin: -8% auto 0;
}
@media all and (max-width: 1200px) {
  #index #aboutus .inner {
    margin: -5% auto 0;
  }
}
@media all and (max-width: 991px) {
  #index #aboutus .inner {
    margin: 30px auto 0;
  }
}
#index #aboutus .inner .box {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
@media all and (max-width: 991px) {
  #index #aboutus .inner .box {
    flex-direction: column;
  }
}
#index #aboutus .inner .box .box-left,
#index #aboutus .inner .box .box-right {
  width: 50%;
  padding: 0 4%;
}
@media all and (max-width: 991px) {
  #index #aboutus .inner .box .box-left,
  #index #aboutus .inner .box .box-right {
    width: 100%;
    max-width: 500px;
    padding: 0;
  }
}
#index #aboutus .inner .box .box-left > div {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 0 0 auto;
}
@media all and (max-width: 1200px) {
  #index #aboutus .inner .box .box-left > div {
    max-width: 380px;
    margin: 0 auto 30px;
  }
}
@media all and (max-width: 600px) {
  #index #aboutus .inner .box .box-left > div {
    max-width: 230px;
  }
}
#index #aboutus .inner .box .box-left > div h2 {
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 30px;
  padding-right: 3rem;
}
@media all and (max-width: 600px) {
  #index #aboutus .inner .box .box-left > div h2 {
    font-size: 20px;
    margin-bottom: 20px;
    padding-right: 1rem;
  }
}
#index #aboutus .inner .box .box-left > div h2 .img {
  width: 300px;
  height: 255px;
  position: absolute;
  top: 0px;
  left: -140px;
}
@media all and (max-width: 600px) {
  #index #aboutus .inner .box .box-left > div h2 .img {
    width: 200px;
    height: 255px;
    top: 10px;
    left: -110px;
  }
}
#index #aboutus .inner .box .box-left > div h2 .img img {
  width: 100%;
}
#index #aboutus .inner .box .box-left > div > .img::before {
  content: "";
  width: 86px;
  height: 86px;
  display: block;
  background-image: url(../_img/index/about-title-decoration.png);
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: 100px;
  left: 20px;
}
@media all and (max-width: 1200px) {
  #index #aboutus .inner .box .box-left > div > .img::before {
    width: 66px;
    height: 66px;
    top: 100px;
    left: 10px;
  }
}
@media all and (max-width: 600px) {
  #index #aboutus .inner .box .box-left > div > .img::before {
    width: 46px;
    height: 46px;
    top: 70px;
    left: 0px;
  }
}
#index #aboutus .inner .box .box-left > div > .img img {
  width: 100%;
}
#index #aboutus .inner .box .box-right p {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.2rem;
}
#index #aboutus .inner .box .box-right .btn-viewmore {
  margin-top: 50px;
}
@media all and (max-width: 767px) {
  #index #aboutus .inner .box .box-right .btn-viewmore a {
    margin: auto;
  }
}

/*--------------------------------------
section project
---------------------------------------*/
#index #project {
  background-color: #206DD8;
}
#index #project h2 {
  color: #FFFFFF;
  font-size: calc(20px + (24 - 20) * ((100vw - 375px) / (1440 - 375)));
  font-weight: 700;
  margin-bottom: 20px;
  padding-left: 120px;
}
@media all and (min-width: 1441px) {
  #index #project h2 {
    font-size: 24px;
  }
}
@media all and (max-width: 375px) {
  #index #project h2 {
    font-size: 20px;
  }
}
@media all and (min-width: 1537px) {
  #index #project h2 {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media all and (max-width: 991px) {
  #index #project h2 {
    padding-left: 60px;
  }
}
@media all and (max-width: 600px) {
  #index #project h2 {
    margin-bottom: 10px;
    padding-left: 30px;
  }
}
#index #project .box {
  position: relative;
}
#index #project .box .catchcopy {
  color: #FDFF8B;
  background-color: #003D92;
  font-size: calc(30px + (44 - 30) * ((100vw - 375px) / (991 - 375)));
  font-weight: 900;
  line-height: 1.2;
}
@media all and (min-width: 992px) {
  #index #project .box .catchcopy {
    font-size: calc(44px + (64 - 44) * ((100vw - 991px) / (1370 - 991)));
  }
}
@media all and (min-width: 1441px) {
  #index #project .box .catchcopy {
    font-size: 64px;
  }
}
@media all and (max-width: 375px) {
  #index #project .box .catchcopy {
    font-size: 30px;
  }
}
@media all and (min-width: 1537px) {
  #index #project .box .catchcopy {
    width: 58%;
  }
}
@media all and (max-width: 767px) {
  #index #project .box .catchcopy {
    width: 90%;
    box-sizing: border-box;
  }
}
#index #project .box .catchcopy > div {
  padding: 20px 0 20px 120px;
}
@media all and (max-width: 991px) {
  #index #project .box .catchcopy > div {
    padding-left: 60px !important;
  }
}
@media all and (max-width: 600px) {
  #index #project .box .catchcopy > div {
    padding-left: 30px !important;
  }
}
@media all and (min-width: 1537px) {
  #index #project .box .catchcopy > div {
    max-width: 600px;
    margin-left: auto;
    margin-right: 20%;
  }
}
#index #project .box .catchcopy span {
  color: #FFFFFF;
}
#index #project .box .txt {
  width: 56%;
  margin-top: 60px;
}
@media all and (min-width: 1537px) {
  #index #project .box .txt {
    width: 58%;
  }
}
@media all and (max-width: 767px) {
  #index #project .box .txt {
    width: 90%;
    margin: 30px auto auto;
  }
}
#index #project .box .txt > div {
  max-width: 600px;
  padding-left: 120px;
}
@media all and (min-width: 1537px) {
  #index #project .box .txt > div {
    margin-left: auto;
    margin-right: 20%;
  }
}
@media all and (max-width: 991px) {
  #index #project .box .txt > div {
    padding-left: 60px;
  }
}
@media all and (max-width: 767px) {
  #index #project .box .txt > div {
    margin: auto;
    padding: 0;
  }
}
#index #project .box .txt > div p {
  max-width: 520px;
}
#index #project .box .txt p {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.2rem;
}
#index #project .box .txt .btn-viewmore {
  margin-top: 50px;
  z-index: 9;
  position: relative;
}
@media all and (max-width: 767px) {
  #index #project .box .txt .btn-viewmore a {
    margin: auto;
  }
}
#index #project .box .box-right {
  width: 44%;
  max-width: 630px;
  position: absolute;
  top: 0;
  right: 0;
}
@media all and (min-width: 1537px) {
  #index #project .box .box-right {
    left: 55%;
  }
}
@media all and (max-width: 767px) {
  #index #project .box .box-right {
    position: relative;
    margin: 80px auto auto;
    width: 70%;
  }
}
#index #project .box .box-right::before {
  content: "PROJECT";
  color: #FFFFFF;
  font-size: 48px;
  font-weight: 900;
  font-family: "Commissioner", sans-serif;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: -40px;
  left: -34px;
  transform: rotate(-18deg);
  z-index: 9;
}
@media all and (max-width: 600px) {
  #index #project .box .box-right::before {
    font-size: 30px;
  }
}
#index #project .box .box-right::after {
  content: "";
  width: 302px;
  height: 113px;
  display: block;
  background-image: url("../_img/index/project-title-decoration.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -26px;
  left: -44px;
}
@media all and (max-width: 600px) {
  #index #project .box .box-right::after {
    width: 202px;
    height: 75px;
    top: -26px;
    left: -44px;
  }
}
#index #project .box .box-right .img {
  border-radius: 30px 0px 0px 30px;
  overflow: hidden;
  line-height: 0;
  position: relative;
}
@media all and (max-width: 767px) {
  #index #project .box .box-right .img {
    border-radius: 30px;
  }
}
#index #project .box .box-right .img img {
  width: 100%;
}
#index #project .text-marquee {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  padding-bottom: 20px;
  margin-top: -40px;
}
@media all and (max-width: 767px) {
  #index #project .text-marquee {
    margin-top: 20px;
  }
}
#index #project .text-marquee ul.marquee-inner {
  display: flex;
  width: fit-content;
  animation: marquee 30s linear infinite;
}
#index #project .text-marquee ul.marquee-inner li {
  padding-right: 20px;
}
#index #project .text-marquee ul.marquee-inner li img {
  height: calc(40px + (120 - 40) * ((100vw - 375px) / (1440 - 375)));
  width: auto;
}
@media all and (min-width: 1441px) {
  #index #project .text-marquee ul.marquee-inner li img {
    height: 120px;
  }
}
@media all and (max-width: 375px) {
  #index #project .text-marquee ul.marquee-inner li img {
    height: 30px;
  }
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/*--------------------------------------
section data
---------------------------------------*/
#index #data {
  background-color: #003D92;
  color: #FFFFFF;
  padding-top: 100px;
  padding-bottom: 120px;
  overflow: hidden;
}
@media all and (max-width: 767px) {
  #index #data {
    padding-top: 80px;
    padding-bottom: 100px;
  }
}
#index #data h2 {
  color: #FFFFFF;
  font-size: calc(20px + (24 - 20) * ((100vw - 375px) / (1440 - 375)));
  font-weight: 700;
  width: 90%;
  max-width: 950px;
  margin: auto;
  display: flex;
  z-index: 9;
  position: relative;
}
@media all and (min-width: 1441px) {
  #index #data h2 {
    font-size: 24px;
  }
}
@media all and (max-width: 375px) {
  #index #data h2 {
    font-size: 20px;
  }
}
#index #data h2 > span {
  font-size: 48px;
  font-weight: 900;
  position: relative;
  margin-right: 50px;
}
@media all and (max-width: 767px) {
  #index #data h2 > span {
    font-size: 38px;
    margin-right: 30px;
  }
}
#index #data h2 > span:before {
  content: "";
  width: 146px;
  height: 70px;
  display: block;
  background-image: url(../_img/index/data-title-decoration01.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -26px;
  left: -21px;
}
@media all and (max-width: 767px) {
  #index #data h2 > span:before {
    width: 116px;
    height: 56px;
    top: -22px;
  }
}
#index #data h2 > span::after {
  content: "";
  width: 164px;
  height: 12px;
  display: block;
  background-image: url(../_img/index/data-title-decoration02.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  left: -10px;
}
@media all and (max-width: 767px) {
  #index #data h2 > span::after {
    width: 134px;
    height: 11px;
    bottom: -4px;
  }
}
#index #data h2 > span > span {
  transform: rotate(-12deg);
  display: inline-block;
  font-family: "Commissioner", sans-serif;
  line-height: 1;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}
#index #data .slider {
  margin-top: -80px;
  margin-bottom: 50px;
}
@media all and (max-width: 767px) {
  #index #data .slider {
    margin-top: -40px;
  }
}
#index #data .slider .slick-list {
  overflow: visible !important;
}
#index #data .slider ul {
  display: flex;
  align-items: flex-start;
  margin: 0;
  padding: 0;
  list-style: none;
}
#index #data .slider ul li {
  margin: 0 10px;
  width: calc(140px + (320 - 140) * ((100vw - 375px) / (1440 - 375)));
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}
@media all and (min-width: 1441px) {
  #index #data .slider ul li {
    width: 320px;
  }
}
@media all and (max-width: 375px) {
  #index #data .slider ul li {
    width: 140px;
  }
}
#index #data .slider ul li.photo02 {
  margin-top: 140px !important;
}
@media all and (max-width: 767px) {
  #index #data .slider ul li.photo02 {
    margin-top: 60px !important;
  }
}
#index #data .slider ul li.photo05 {
  margin-top: 90px !important;
}
@media all and (max-width: 767px) {
  #index #data .slider ul li.photo05 {
    margin-top: 40px !important;
  }
}
#index #data .slider ul li img {
  width: 100%;
  display: block;
}
#index #data .txt {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
}
@media all and (max-width: 767px) {
  #index #data .txt {
    flex-direction: column;
  }
}
#index #data .txt .txt-left {
  width: 52%;
}
@media all and (max-width: 767px) {
  #index #data .txt .txt-left {
    width: 100%;
  }
}
#index #data .txt .txt-left .catchcopy {
  color: #FDFF8B;
  font-size: calc(30px + (64 - 30) * ((100vw - 375px) / (1440 - 375)));
  font-weight: 900;
  line-height: 1.2;
}
@media all and (min-width: 1441px) {
  #index #data .txt .txt-left .catchcopy {
    font-size: 64px;
  }
}
@media all and (max-width: 375px) {
  #index #data .txt .txt-left .catchcopy {
    font-size: 30px;
  }
}
@media all and (max-width: 767px) {
  #index #data .txt .txt-left .catchcopy {
    margin-bottom: 30px;
  }
}
#index #data .txt .txt-left .catchcopy span {
  color: #FFFFFF;
}
#index #data .txt .txt-right {
  width: 48%;
}
@media all and (min-width: 768px) {
  #index #data .txt .txt-right {
    padding-left: 40px;
    box-sizing: border-box;
  }
}
@media all and (max-width: 767px) {
  #index #data .txt .txt-right {
    width: 100%;
  }
}
#index #data .txt .txt-right p {
  font-size: 16px;
  font-weight: 500;
  line-height: 2.2;
}
#index #data .txt .txt-right .btn-viewmore {
  margin-top: 40px;
}
@media all and (max-width: 767px) {
  #index #data .txt .txt-right .btn-viewmore a {
    margin: auto;
  }
}

/*--------------------------------------
section voice
---------------------------------------*/
#index #voice {
  background-color: #7DF7F9;
  padding-top: 70px;
}
@media all and (min-width: 992px) {
  #index #voice {
    padding-bottom: 100px;
  }
}
#index #voice > div {
  width: 90%;
  max-width: 1440px;
  margin: auto;
}
#index #voice h2 {
  color: #FFFFFF;
  font-size: calc(20px + (24 - 20) * ((100vw - 375px) / (1440 - 375)));
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
}
@media all and (min-width: 1441px) {
  #index #voice h2 {
    font-size: 24px;
  }
}
@media all and (max-width: 375px) {
  #index #voice h2 {
    font-size: 20px;
  }
}
#index #voice h2 > span {
  font-size: calc(40px + (60 - 40) * ((100vw - 375px) / (1440 - 375)));
  font-weight: 900;
  font-family: "Commissioner", sans-serif;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  position: relative;
}
@media all and (min-width: 1441px) {
  #index #voice h2 > span {
    font-size: 60px;
  }
}
@media all and (max-width: 375px) {
  #index #voice h2 > span {
    font-size: 40px;
  }
}
#index #voice h2 > span::before {
  content: "";
  width: 92px;
  height: 81px;
  display: block;
  background-image: url("../_img/index/voice-title-decoration.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -51px;
  right: -30px;
}
#index #voice .catchcopy {
  margin-top: 60px;
  color: #003D92;
  font-size: calc(28px + (64 - 28) * ((100vw - 375px) / (1440 - 375)));
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}
@media all and (min-width: 1441px) {
  #index #voice .catchcopy {
    font-size: 64px;
  }
}
@media all and (max-width: 375px) {
  #index #voice .catchcopy {
    font-size: 28px;
  }
}
#index #voice .catchcopy span {
  color: #FFFFFF;
}
@media all and (min-width: 992px) {
  #index #voice .catchcopy br {
    display: none;
  }
}
#index #voice p {
  width: 90%;
  margin: auto;
  font-size: 16px;
  font-weight: 500;
  margin-top: 50px;
}
@media all and (max-width: 500px) {
  #index #voice p {
    margin-top: 30px;
  }
}
#index #voice .contents {
  display: grid;
  width: min(100%, 1440px);
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto 1fr auto auto;
  position: relative;
  column-gap: 30px;
  row-gap: 0;
  margin-top: 60px;
}
@media all and (max-width: 991px) {
  #index #voice .contents {
    grid-template-columns: 1fr;
    row-gap: 40px;
    width: 100%;
    max-width: 670px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media all and (max-width: 500px) {
  #index #voice .contents {
    margin-top: 40px;
  }
}
#index #voice .contents .box {
  grid-row: span 4;
  display: grid;
  grid-template-rows: subgrid;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 30px;
  color: #FFFFFF;
}
@media all and (max-width: 991px) {
  #index #voice .contents .box {
    grid-row: auto;
    grid-template-columns: 1fr;
    row-gap: 0;
  }
}
#index #voice .contents .box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -2;
  transition: transform 0.5s ease;
}
#index #voice .contents .box:nth-of-type(1)::before {
  background-image: url("../_img/index/voice-photo01.png");
}
#index #voice .contents .box:nth-of-type(2)::before {
  background-image: url("../_img/index/voice-photo02.png");
}
#index #voice .contents .box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(98, 185, 229, 0.3);
  z-index: -1;
  transition: background-color 0.5s ease;
}
#index #voice .contents .box a {
  display: contents;
  color: inherit;
  text-decoration: none;
  display: block;
  padding: 20px;
}
#index #voice .contents .box .num {
  font-size: 20px;
  font-weight: 900;
  font-family: "Commissioner", sans-serif;
  margin-top: 10px;
  margin-left: 10px;
}
#index #voice .contents .box .title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
  margin-top: 33%;
}
@media all and (max-width: 500px) {
  #index #voice .contents .box .title {
    font-size: 18px;
  }
}
#index #voice .contents .box .profile {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  margin-top: 1.25rem;
}
#index #voice .contents .box .profile .name {
  font-size: 18px;
  font-weight: 700;
}
#index #voice .contents .box .profile .joining {
  font-size: 15px;
  font-weight: 500;
  margin-left: 2rem;
}
#index #voice .contents .box .arrow {
  width: 32px;
  height: 32px;
  background-color: #FDFF8B;
  border-radius: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 0;
  margin-left: auto;
  transition: all .3s ease;
}
#index #voice .contents .box .arrow svg.arrow-btn {
  color: #206DD8;
  width: 22px;
  height: 16px;
  transition: all .3s ease;
}
@media all and (min-width: 768px) {
  #index #voice .contents .box:hover::before {
    transform: scale(1.1);
  }
  #index #voice .contents .box:hover::after {
    background-color: rgba(211, 242, 245, 0.5);
  }
  #index #voice .contents .box:hover .arrow {
    background-color: #7DF7F9;
  }
  #index #voice .contents .box:hover .arrow svg.arrow-btn {
    color: #FFFFFF;
  }
}

/*--------------------------------------
section recruitment
---------------------------------------*/
#index #recruitment {
  overflow: hidden;
  position: relative;
}
#index #recruitment a {
  display: block;
  padding-top: 12%;
  padding-bottom: 12%;
}
#index #recruitment a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../_img/index/recruitment-photo-bg.png");
  background-size: cover;
  background-position: center;
  z-index: -2;
  transition: transform 0.5s ease;
}
#index #recruitment a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(98, 185, 229, 0.3);
  z-index: -1;
  transition: background-color 0.5s ease;
}
@media all and (min-width: 768px) {
  #index #recruitment a:hover::before {
    transform: scale(1.1);
  }
  #index #recruitment a:hover::after {
    background-color: rgba(211, 242, 245, 0.5);
  }
  #index #recruitment a:hover .arrow {
    background-color: #7DF7F9;
  }
  #index #recruitment a:hover .arrow svg.arrow-btn {
    color: #FFFFFF;
  }
}
#index #recruitment h2 {
  color: #FFFFFF;
  font-size: calc(16px + (24 - 16) * ((100vw - 375px) / (1440 - 375)));
  font-weight: 700;
  text-align: center;
  line-height: 1.8;
  position: relative;
}
@media all and (min-width: 1441px) {
  #index #recruitment h2 {
    font-size: 24px;
  }
}
@media all and (max-width: 375px) {
  #index #recruitment h2 {
    font-size: 16px;
  }
}
#index #recruitment h2::before {
  content: "";
  width: 41px;
  height: 35px;
  background-image: url("../_img/index/recruitment-title-decoration.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}
@media all and (max-width: 767px) {
  #index #recruitment h2::before {
    width: 31px;
    height: 27px;
    top: -10px;
  }
}
#index #recruitment h2 span {
  font-size: calc(32px + (60 - 32) * ((100vw - 375px) / (1440 - 375)));
  font-family: "Commissioner", sans-serif;
  font-weight: 900;
  display: inline-block;
  position: relative;
}
@media all and (min-width: 1441px) {
  #index #recruitment h2 span {
    font-size: 60px;
  }
}
@media all and (max-width: 375px) {
  #index #recruitment h2 span {
    font-size: 32px;
  }
}
#index #recruitment h2 span::after {
  content: "";
  width: 84%;
  height: 3px;
  background-image: url(../_img/index/recruitment-line.png);
  background-size: contain;
  background-position: center;
  display: block;
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
}
#index #recruitment .arrow {
  width: 32px;
  height: 32px;
  background-color: #FDFF8B;
  border-radius: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: auto;
  margin-left: auto;
  transition: all .3s ease;
  margin-top: 6%;
}
#index #recruitment .arrow svg.arrow-btn {
  color: #206DD8;
  width: 22px;
  height: 16px;
  transition: all .3s ease;
}

/*--------------------------------------
page aboutus
---------------------------------------*/
#page-aboutus {
  color: #FFFFFF;
  background-color: #206DD8;
}
#page-aboutus #mainContents {
  margin-top: 15rem;
}
@media all and (max-width: 767px) {
  #page-aboutus #mainContents {
    margin-top: 8rem;
  }
}
#page-aboutus .greeting {
  margin-bottom: 10rem;
}
@media all and (min-width: 1537px) {
  #page-aboutus .greeting {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
  }
}
#page-aboutus .greeting .title {
  width: 90%;
  max-width: 1210px;
  margin: 0 auto 8.75rem;
}
@media all and (max-width: 767px) {
  #page-aboutus .greeting .title {
    margin: 0 auto 4.75rem;
  }
}
#page-aboutus .greeting .title > div {
  display: block;
  margin-left: auto;
  margin-right: 0;
  width: 86%;
  max-width: 1040px;
  position: relative;
}
@media all and (max-width: 500px) {
  #page-aboutus .greeting .title > div {
    width: 88%;
  }
}
#page-aboutus .greeting .title > div::before {
  content: "";
  width: 18%;
  height: 59%;
  background-image: url(../_img/aboutus/title-aboutus.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: -33%;
  left: -17%;
}
#page-aboutus .greeting .title h2 {
  font-size: calc(16px + (24 - 16) * ((100vw - 375px) / (1440 - 375)));
  font-weight: 700;
  margin-bottom: 10px;
}
@media all and (min-width: 1441px) {
  #page-aboutus .greeting .title h2 {
    font-size: 24px;
  }
}
@media all and (max-width: 375px) {
  #page-aboutus .greeting .title h2 {
    font-size: 16px;
  }
}
#page-aboutus .greeting .title .catchcopy {
  font-size: calc(26px + (80 - 26) * ((100vw - 375px) / (1440 - 375)));
  font-weight: 900;
  line-height: 1.2;
}
@media all and (min-width: 1441px) {
  #page-aboutus .greeting .title .catchcopy {
    font-size: 80px;
  }
}
@media all and (max-width: 375px) {
  #page-aboutus .greeting .title .catchcopy {
    font-size: 26px;
  }
}
#page-aboutus .greeting .title .catchcopy span {
  color: #FDFF8B;
}
@media all and (min-width: 768px) {
  #page-aboutus .greeting .title .catchcopy br.sp {
    display: none;
  }
}
#page-aboutus .greeting .img {
  line-height: 0;
  width: 81%;
  max-width: 1160px;
  margin-left: 0;
  margin-right: auto;
  border-radius: 0 30px 30px 0;
}
#page-aboutus .greeting .img img {
  width: 100%;
  border-radius: 0 30px 30px 0;
}
#page-aboutus .greeting .txt {
  width: 80%;
  max-width: 830px;
  margin: 80px auto;
  position: relative;
}
#page-aboutus .greeting .txt::before {
  content: "";
  width: 198px;
  height: 8px;
  background-image: url("../_img/aboutus/line-wave.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: -30px;
  left: 0;
}
@media all and (max-width: 500px) {
  #page-aboutus .greeting .txt::before {
    width: 150px;
  }
}
#page-aboutus .greeting .txt::after {
  content: "";
  width: 198px;
  height: 8px;
  background-image: url("../_img/aboutus/line-wave.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  bottom: -40px;
  right: 0;
}
@media all and (max-width: 500px) {
  #page-aboutus .greeting .txt::after {
    width: 150px;
  }
}
#page-aboutus .greeting .txt p {
  font-size: 16px;
  font-weight: 500;
  line-height: 2.2;
}
#page-aboutus .greeting .txt p::before {
  content: "";
  width: 101px;
  height: 216px;
  background-image: url("../_img/aboutus/decoration01.png");
  background-size: contain;
  background-position: center;
  display: block;
  position: absolute;
  top: -40px;
  left: -130px;
}
#page-aboutus .greeting .txt .name {
  font-size: 28px;
  font-weight: 500;
  text-align: right;
  margin-top: 25px;
}
@media all and (max-width: 500px) {
  #page-aboutus .greeting .txt .name {
    font-size: 24px;
  }
}
#page-aboutus .greeting .txt .name span {
  font-size: 18px;
  margin-right: 6px;
}
@media all and (max-width: 500px) {
  #page-aboutus .greeting .txt .name span {
    font-size: 16px;
  }
}
#page-aboutus .philosophy {
  color: #000000;
  background-color: #7DF7F9;
  padding-top: 3.75rem;
  padding-bottom: 7.8rem;
}
@media all and (max-width: 767px) {
  #page-aboutus .philosophy {
    padding-bottom: 5.8rem;
  }
}
#page-aboutus .philosophy .contents {
  width: 90%;
  max-width: 1040px;
  margin: auto;
}
#page-aboutus .philosophy .contents .box {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
}
@media all and (max-width: 767px) {
  #page-aboutus .philosophy .contents .box {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
}
@media all and (min-width: 768px) {
  #page-aboutus .philosophy .contents .box:nth-of-type(even) {
    flex-direction: row-reverse;
  }
}
#page-aboutus .philosophy .contents .box:not(:last-of-type) {
  margin-bottom: 30px;
}
#page-aboutus .philosophy .contents .box .txt {
  width: 100%;
  padding-top: 75px;
  padding-left: 40px;
  box-sizing: border-box;
  position: relative;
}
@media all and (max-width: 767px) {
  #page-aboutus .philosophy .contents .box .txt {
    margin-bottom: 30px;
  }
}
@media all and (max-width: 500px) {
  #page-aboutus .philosophy .contents .box .txt {
    padding-left: 20px;
  }
}
#page-aboutus .philosophy .contents .box .txt::before {
  content: "";
  width: 276px;
  height: 112px;
  background-image: url("../_img/aboutus/decoration02.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
@media all and (max-width: 767px) {
  #page-aboutus .philosophy .contents .box .txt::before {
    width: 236px;
  }
}
@media all and (max-width: 500px) {
  #page-aboutus .philosophy .contents .box .txt::before {
    width: 176px;
  }
}
#page-aboutus .philosophy .contents .box .txt h3 {
  color: #FFFFFF;
  font-size: calc(40px + (60 - 40) * ((100vw - 375px) / (1440 - 375)));
  font-weight: 900;
  font-family: Commissioner, sans-serif;
  line-height: 1;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}
@media all and (min-width: 1441px) {
  #page-aboutus .philosophy .contents .box .txt h3 {
    font-size: 60px;
  }
}
@media all and (max-width: 375px) {
  #page-aboutus .philosophy .contents .box .txt h3 {
    font-size: 40px;
  }
}
#page-aboutus .philosophy .contents .box .txt p {
  font-size: 17px;
  font-weight: 700;
  line-height: 2;
}
@media all and (max-width: 500px) {
  #page-aboutus .philosophy .contents .box .txt p {
    font-size: 15px;
  }
}
#page-aboutus .philosophy .contents .box .txt p span.color-red {
  color: #F75A7C;
  font-weight: 900;
}
#page-aboutus .philosophy .contents .box .txt p span.color-blue {
  color: #003D92;
  font-weight: 900;
}
@media all and (min-width: 768px) {
  #page-aboutus .philosophy .contents .box.mission {
    justify-content: flex-start;
    margin-bottom: 15px;
  }
}
#page-aboutus .philosophy .contents .box.mission .txt {
  max-width: 480px;
}
@media all and (min-width: 768px) {
  #page-aboutus .philosophy .contents .box.mission .img {
    margin-top: -10px;
    margin-left: 11%;
    margin-right: auto;
  }
}
#page-aboutus .philosophy .contents .box.vision .txt {
  max-width: 540px;
}
@media all and (min-width: 768px) {
  #page-aboutus .philosophy .contents .box.vision .img {
    margin-top: 80px;
    margin-right: 17%;
    margin-left: auto;
  }
}
@media all and (min-width: 768px) {
  #page-aboutus .philosophy .contents .box.value {
    align-items: flex-end;
    margin-top: -110px;
  }
}
#page-aboutus .philosophy .contents .box.value .txt {
  max-width: 555px;
}
@media all and (min-width: 768px) {
  #page-aboutus .philosophy .contents .box.value .img {
    margin-bottom: -90px;
  }
}
#page-aboutus .company {
  background-color: #206DD8;
  padding-top: 17.8rem;
  margin-bottom: 17.6rem;
}
@media all and (max-width: 767px) {
  #page-aboutus .company {
    padding-top: 14.8rem;
    margin-bottom: 6.6rem;
  }
}
@media all and (max-width: 500px) {
  #page-aboutus .company {
    padding-top: 10.8rem;
  }
}
#page-aboutus .company .contents {
  width: 90%;
  max-width: 830px;
  margin: auto;
  position: relative;
}
#page-aboutus .company .contents::before {
  content: "";
  width: 302px;
  height: 203px;
  background-image: url("../_img/aboutus/title-company.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: -220px;
  left: -170px;
}
@media all and (max-width: 1200px) {
  #page-aboutus .company .contents::before {
    width: 252px;
    height: 171px;
    top: -200px;
    left: -80px;
  }
}
@media all and (max-width: 767px) {
  #page-aboutus .company .contents::before {
    width: 222px;
    height: 149px;
    top: -190px;
    left: -20px;
  }
}
@media all and (max-width: 500px) {
  #page-aboutus .company .contents::before {
    width: 172px;
    height: 117px;
    top: -150px;
  }
}
#page-aboutus .company .contents > dl {
  border-bottom: 1px solid #FFFFFF;
  margin-bottom: 25px;
  padding-bottom: 25px;
}
#page-aboutus .company .contents > dl:nth-child(-n + 4) {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
}
@media all and (max-width: 767px) {
  #page-aboutus .company .contents > dl:nth-child(-n + 4) {
    flex-direction: column;
    align-items: flex-start;
  }
}
#page-aboutus .company .contents > dl:nth-child(-n + 4):first-of-type {
  border-top: 1px solid #FFFFFF;
  padding-top: 25px;
}
#page-aboutus .company .contents > dl:nth-child(-n + 4) > dt {
  width: 115px;
}
@media all and (max-width: 767px) {
  #page-aboutus .company .contents > dl:nth-child(-n + 4) > dt {
    width: 100%;
    border-bottom: 1px solid #FFFFFF;
    margin-bottom: 25px;
    padding-bottom: 25px;
  }
}
#page-aboutus .company .contents > dl:nth-child(-n + 4) > dd {
  width: calc(100% - 115px);
}
@media all and (min-width: 768px) {
  #page-aboutus .company .contents > dl:nth-child(-n + 4) > dd {
    padding-left: 25px;
    box-sizing: border-box;
  }
}
@media all and (max-width: 767px) {
  #page-aboutus .company .contents > dl:nth-child(-n + 4) > dd {
    width: 100%;
  }
}
#page-aboutus .company .contents > dl:nth-child(n + 5) > dt {
  border-bottom: 1px solid #FFFFFF;
  padding-bottom: 25px;
}
#page-aboutus .company .contents > dl:nth-child(n + 5) > dd {
  padding-top: 25px;
}
#page-aboutus .company .contents > dl dd {
  margin: 0;
}
#page-aboutus .company .contents > dl .contents-history dl {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  margin-bottom: 10px;
}
@media all and (max-width: 500px) {
  #page-aboutus .company .contents > dl .contents-history dl {
    flex-direction: column;
    margin-bottom: 20px;
  }
}
#page-aboutus .company .contents > dl .contents-history dl.color-yellow {
  color: #FDFF8B;
  font-weight: 700;
}
#page-aboutus .company .contents > dl .contents-history dl dt {
  width: 115px;
}
@media all and (max-width: 500px) {
  #page-aboutus .company .contents > dl .contents-history dl dt {
    width: 100%;
    font-size: 14px;
  }
}
#page-aboutus .company .contents > dl .contents-history dl dd {
  width: calc(100% - 115px);
  box-sizing: border-box;
}
@media all and (min-width: 501px) {
  #page-aboutus .company .contents > dl .contents-history dl dd {
    padding-left: 25px;
  }
}
@media all and (max-width: 500px) {
  #page-aboutus .company .contents > dl .contents-history dl dd {
    width: 100%;
  }
}
#page-aboutus .company .contents > dl.access p {
  margin-bottom: 20px;
}
#page-aboutus .company .contents > dl.access .map {
  width: 100%;
}
#page-aboutus .company .contents > dl.access .map iframe {
  width: 100%;
}
#page-aboutus .company .contents > dl.access .link {
  text-align: right;
}
#page-aboutus .company .contents > dl.access .link a {
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 500;
  padding-right: 30px;
  position: relative;
}
#page-aboutus .company .contents > dl.access .link a::before {
  content: "";
  width: 16px;
  height: 1px;
  background-color: #FFFFFF;
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translateY(-50%);
}
#page-aboutus .company .contents > dl.access .link a::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 8px;
  border-style: solid;
  border-width: 3px 0 3px 5px;
  border-color: transparent transparent transparent #FFFFFF;
  border-radius: 1px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

/*--------------------------------------
page culture
---------------------------------------*/
#page-culture #mainContents {
  color: #FFFFFF;
  background-color: #7DF7F9;
}
#page-culture .kv {
  margin-top: 10rem;
}
#page-culture .kv .inner {
  width: 80%;
  max-width: 1120px;
  margin: 0 auto;
}
#page-culture .kv .inner h2 {
  font-size: calc(28px + (48 - 28) * ((100vw - 375px) / (1440 - 375)));
  font-family: "Commissioner", sans-serif;
  font-weight: 900;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
  position: relative;
}
@media all and (min-width: 1441px) {
  #page-culture .kv .inner h2 {
    font-size: 48px;
  }
}
@media all and (max-width: 375px) {
  #page-culture .kv .inner h2 {
    font-size: 28px;
  }
}
#page-culture .kv .inner h2::before {
  content: "";
  width: 123px;
  height: 101px;
  background-image: url("../_img/culture/catchcopy-decoration01.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: -40px;
  left: -65px;
}
@media all and (max-width: 1000px) {
  #page-culture .kv .inner h2::before {
    width: 93px;
    height: 76px;
    top: -30px;
    left: -55px;
  }
}
@media all and (max-width: 500px) {
  #page-culture .kv .inner h2::before {
    width: 73px;
    height: 56px;
    top: -22px;
    left: -42px;
  }
}
#page-culture .kv .inner .title {
  padding-left: 7.5rem;
}
@media all and (max-width: 600px) {
  #page-culture .kv .inner .title {
    padding-left: 2rem;
  }
}
#page-culture .kv .inner .title .sub-title {
  font-size: 24px;
  font-weight: 700;
}
#page-culture .kv .inner .title .catchcopy {
  color: #003D92;
  font-size: calc(34px + (80 - 34) * ((100vw - 375px) / (1440 - 375)));
  font-weight: 900;
}
@media all and (min-width: 1441px) {
  #page-culture .kv .inner .title .catchcopy {
    font-size: 80px;
  }
}
@media all and (max-width: 375px) {
  #page-culture .kv .inner .title .catchcopy {
    font-size: 34px;
  }
}
#page-culture .kv .inner .title .catchcopy span {
  color: #FFF;
  position: relative;
}
#page-culture .kv .inner .title .catchcopy span::before {
  content: "";
  width: 131%;
  height: 142%;
  background-image: url(../_img/culture/catchcopy-decoration02.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-53%);
}
@media all and (max-width: 767px) {
  #page-culture .kv .inner .title .catchcopy span::before {
    top: -14px;
  }
}
#page-culture .kv .slider {
  margin-top: 9.375rem;
}
@media all and (max-width: 767px) {
  #page-culture .kv .slider {
    margin-top: 4rem;
  }
}
#page-culture .kv .slider .slider01, #page-culture .kv .slider .slider02 {
  overflow: hidden;
  margin-bottom: 10px;
}
#page-culture .kv .slider .slider01 ul, #page-culture .kv .slider .slider02 ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}
#page-culture .kv .slider .slider01 ul li, #page-culture .kv .slider .slider02 ul li {
  margin: 0 5px;
  width: calc(140px + (400 - 140) * ((100vw - 375px) / (1440 - 375)));
  border-radius: 10px;
  overflow: hidden;
}
@media all and (min-width: 1441px) {
  #page-culture .kv .slider .slider01 ul li, #page-culture .kv .slider .slider02 ul li {
    width: 400px;
  }
}
@media all and (max-width: 375px) {
  #page-culture .kv .slider .slider01 ul li, #page-culture .kv .slider .slider02 ul li {
    width: 140px;
  }
}
#page-culture .kv .slider .slider01 ul li img, #page-culture .kv .slider .slider02 ul li img {
  width: 100%;
  display: block;
}
#page-culture .kv .slider .slider02 {
  direction: rtl;
}
#page-culture .contents > div {
  width: 100%;
}
#page-culture .contents .box {
  position: relative;
}
#page-culture .contents .box .title {
  color: #FFFFFF;
  font-size: calc(26px + (50 - 26) * ((100vw - 375px) / (1440 - 375)));
  font-weight: 900;
  line-height: 1.5;
  padding: 25px 0;
}
@media all and (min-width: 1441px) {
  #page-culture .contents .box .title {
    font-size: 50px;
  }
}
@media all and (max-width: 375px) {
  #page-culture .contents .box .title {
    font-size: 26px;
  }
}
#page-culture .contents .box .title span.color-yellow {
  color: #FDFF8B;
}
#page-culture .contents .box .txt {
  color: #000000;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.2;
  padding-top: 50px;
}
@media all and (max-width: 767px) {
  #page-culture .contents .box .txt {
    padding-top: 30px;
  }
}
#page-culture .contents .box .img {
  line-height: 0;
  position: absolute;
}
@media all and (max-width: 767px) {
  #page-culture .contents .box .img {
    position: relative;
    margin-top: 50px;
  }
}
#page-culture .contents .box .img img {
  width: 100%;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
#page-culture .contents.contents01 > div {
  margin-top: 7.5rem;
  margin-bottom: 6.5rem;
}
@media all and (max-width: 767px) {
  #page-culture .contents.contents01 > div {
    margin-top: 6.5rem;
  }
}
#page-culture .contents.contents01 .box.box01 .title {
  width: 64%;
  background-color: #206DD8;
}
@media all and (max-width: 767px) {
  #page-culture .contents.contents01 .box.box01 .title {
    width: 96%;
  }
}
#page-culture .contents.contents01 .box.box01 .title > div {
  max-width: 590px;
  margin-left: auto;
  margin-right: 14%;
}
@media all and (min-width: 768px) {
  #page-culture .contents.contents01 .box.box01 .title > div {
    padding-left: 20px;
  }
}
@media all and (max-width: 767px) {
  #page-culture .contents.contents01 .box.box01 .title > div {
    width: 90%;
    margin-right: auto;
  }
}
#page-culture .contents.contents01 .box.box01 .txt {
  width: 64%;
}
@media all and (max-width: 767px) {
  #page-culture .contents.contents01 .box.box01 .txt {
    width: 100%;
  }
}
#page-culture .contents.contents01 .box.box01 .txt > div {
  max-width: 590px;
  margin-left: auto;
  margin-right: 14%;
}
@media all and (min-width: 768px) {
  #page-culture .contents.contents01 .box.box01 .txt > div {
    padding-left: 20px;
  }
}
@media all and (max-width: 767px) {
  #page-culture .contents.contents01 .box.box01 .txt > div {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
#page-culture .contents.contents01 .box.box01 .img {
  width: 42%;
  top: 0;
  right: 0;
}
@media all and (min-width: 1537px) {
  #page-culture .contents.contents01 .box.box01 .img {
    max-width: 604px;
    left: 56%;
  }
}
@media all and (max-width: 767px) {
  #page-culture .contents.contents01 .box.box01 .img {
    width: 90%;
    margin-left: auto;
    margin-right: 0;
  }
}
#page-culture .contents.contents01 .box.box01 .img::before {
  content: "";
  width: 64px;
  height: 64px;
  background-image: url("../_img/culture/title-icon01.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: -30px;
  left: -30px;
}
@media all and (max-width: 500px) {
  #page-culture .contents.contents01 .box.box01 .img::before {
    width: 44px;
    height: 44px;
    top: -10px;
    left: -20px;
  }
}
#page-culture .contents.contents01 .box.box01 .img img {
  border-radius: 30px 0 0 30px;
}
#page-culture .contents.contents02 {
  background-color: #206DD8;
}
#page-culture .contents.contents02 > div {
  padding-top: 8.75rem;
}
@media all and (max-width: 767px) {
  #page-culture .contents.contents02 > div {
    padding-top: 6.5rem;
  }
}
#page-culture .contents.contents02 .box {
  padding-bottom: 6.25rem;
}
#page-culture .contents.contents02 .box .title {
  background-color: #003D92;
}
#page-culture .contents.contents02 .box .txt {
  color: #FFFFFF;
}
#page-culture .contents.contents02 .box.box02 .title {
  width: 64%;
  margin-right: 0;
  margin-left: auto;
}
@media all and (max-width: 767px) {
  #page-culture .contents.contents02 .box.box02 .title {
    width: 96%;
  }
}
#page-culture .contents.contents02 .box.box02 .title > div {
  max-width: 660px;
  margin-right: auto;
  margin-left: 19%;
}
@media all and (max-width: 767px) {
  #page-culture .contents.contents02 .box.box02 .title > div {
    width: 90%;
    margin-right: auto;
    margin-left: auto;
  }
}
#page-culture .contents.contents02 .box.box02 .txt {
  width: 64%;
  margin-right: 0;
  margin-left: auto;
}
@media all and (max-width: 767px) {
  #page-culture .contents.contents02 .box.box02 .txt {
    width: 90%;
    margin-right: auto;
  }
}
#page-culture .contents.contents02 .box.box02 .txt > div {
  max-width: 540px;
  margin-right: auto;
  margin-left: 19%;
}
@media all and (min-width: 768px) {
  #page-culture .contents.contents02 .box.box02 .txt > div {
    padding-right: 20px;
  }
}
@media all and (max-width: 767px) {
  #page-culture .contents.contents02 .box.box02 .txt > div {
    margin-left: auto;
  }
}
#page-culture .contents.contents02 .box.box02 .img {
  width: 43%;
}
@media all and (min-width: 1537px) {
  #page-culture .contents.contents02 .box.box02 .img {
    max-width: 620px;
    right: 56%;
    left: auto !important;
  }
}
#page-culture .contents.contents02 .box.box02 .img::before {
  content: "";
  width: 58px;
  height: 61px;
  background-image: url("../_img/culture/title-icon02.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: -20px;
  right: -30px;
}
@media all and (max-width: 500px) {
  #page-culture .contents.contents02 .box.box02 .img::before {
    width: 38px;
    height: 40px;
    top: -10px;
    right: -10px;
  }
}
#page-culture .contents.contents02 .box.box03 .title {
  width: 64%;
  margin-right: auto;
  margin-left: 0;
}
@media all and (max-width: 767px) {
  #page-culture .contents.contents02 .box.box03 .title {
    width: 96%;
  }
}
#page-culture .contents.contents02 .box.box03 .title > div {
  max-width: 660px;
  margin-right: 8%;
  margin-left: auto;
}
@media all and (min-width: 768px) {
  #page-culture .contents.contents02 .box.box03 .title > div {
    padding-left: 20px;
  }
}
@media all and (max-width: 767px) {
  #page-culture .contents.contents02 .box.box03 .title > div {
    width: 90%;
    margin: 0 auto;
  }
}
#page-culture .contents.contents02 .box.box03 .txt {
  width: 64%;
}
@media all and (max-width: 767px) {
  #page-culture .contents.contents02 .box.box03 .txt {
    width: 90%;
    margin: 0 auto;
  }
}
#page-culture .contents.contents02 .box.box03 .txt > div {
  max-width: 660px;
  margin-right: 8%;
  margin-left: auto;
}
@media all and (min-width: 768px) {
  #page-culture .contents.contents02 .box.box03 .txt > div {
    padding-left: 20px;
  }
}
@media all and (max-width: 767px) {
  #page-culture .contents.contents02 .box.box03 .txt > div {
    margin-right: auto;
  }
}
#page-culture .contents.contents02 .box.box03 .txt > div > div {
  max-width: 540px;
}
#page-culture .contents.contents02 .box.box03 .img {
  width: 40%;
}
@media all and (min-width: 1537px) {
  #page-culture .contents.contents02 .box.box03 .img {
    max-width: 576px;
    left: 58%;
  }
}
@media all and (max-width: 767px) {
  #page-culture .contents.contents02 .box.box03 .img {
    margin-top: 80px;
  }
}
#page-culture .contents.contents02 .box.box03 .img::before {
  content: "";
  width: 139px;
  height: 134px;
  background-image: url("../_img/culture/title-icon03.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: -40px;
  left: -180px;
}
@media all and (max-width: 767px) {
  #page-culture .contents.contents02 .box.box03 .img::before {
    top: -80px;
    left: -50px;
  }
}
@media all and (max-width: 500px) {
  #page-culture .contents.contents02 .box.box03 .img::before {
    width: 119px;
    height: 115px;
    left: -30px;
  }
}
#page-culture .contents.contents02 .box.box04 .title {
  width: 64%;
  margin-right: 0;
  margin-left: auto;
}
@media all and (max-width: 767px) {
  #page-culture .contents.contents02 .box.box04 .title {
    width: 96%;
  }
}
#page-culture .contents.contents02 .box.box04 .title > div {
  max-width: 660px;
  margin-right: auto;
  margin-left: 22%;
}
@media all and (max-width: 767px) {
  #page-culture .contents.contents02 .box.box04 .title > div {
    width: 90%;
    margin: 0 auto;
  }
}
#page-culture .contents.contents02 .box.box04 .title > div span.deco {
  position: relative;
}
#page-culture .contents.contents02 .box.box04 .title > div span.deco::before {
  content: "";
  width: 48px;
  height: 48px;
  background-image: url("../_img/culture/title-icon06.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: 0px;
  right: -20px;
}
@media all and (max-width: 1000px) {
  #page-culture .contents.contents02 .box.box04 .title > div span.deco::before {
    width: 38px;
    height: 38px;
    right: -10px;
  }
}
@media all and (max-width: 1000px) {
  #page-culture .contents.contents02 .box.box04 .title > div span.deco::before {
    width: 28px;
    height: 28px;
  }
}
#page-culture .contents.contents02 .box.box04 .txt {
  width: 64%;
  margin-right: 0;
  margin-left: auto;
}
@media all and (max-width: 767px) {
  #page-culture .contents.contents02 .box.box04 .txt {
    width: 90%;
    margin: 0 auto;
  }
}
#page-culture .contents.contents02 .box.box04 .txt > div {
  max-width: 540px;
  margin-right: auto;
  margin-left: 22%;
}
@media all and (min-width: 768px) {
  #page-culture .contents.contents02 .box.box04 .txt > div {
    padding-right: 20px;
  }
}
@media all and (max-width: 767px) {
  #page-culture .contents.contents02 .box.box04 .txt > div {
    margin-left: auto;
  }
}
#page-culture .contents.contents02 .box.box04 .img {
  width: 43%;
}
@media all and (min-width: 1537px) {
  #page-culture .contents.contents02 .box.box04 .img {
    max-width: 620px;
    right: 56%;
    left: auto !important;
  }
}
#page-culture .contents.contents02 .box.box04 .img::before {
  content: "";
  width: 101px;
  height: 84px;
  background-image: url("../_img/culture/title-icon04.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: -50px;
  right: -40px;
}
@media all and (max-width: 500px) {
  #page-culture .contents.contents02 .box.box04 .img::before {
    width: 81px;
    height: 67px;
    right: -30px;
  }
}
#page-culture .contents.contents02 .box.box05 .title {
  width: 64%;
  margin-right: auto;
  margin-left: 0;
}
@media all and (max-width: 767px) {
  #page-culture .contents.contents02 .box.box05 .title {
    width: 96%;
  }
}
#page-culture .contents.contents02 .box.box05 .title > div {
  max-width: 660px;
  margin-right: 11%;
  margin-left: auto;
}
@media all and (min-width: 768px) {
  #page-culture .contents.contents02 .box.box05 .title > div {
    padding-left: 20px;
  }
}
@media all and (max-width: 767px) {
  #page-culture .contents.contents02 .box.box05 .title > div {
    width: 90%;
    margin: 0 auto;
  }
}
#page-culture .contents.contents02 .box.box05 .txt {
  width: 64%;
  margin-right: auto;
  margin-left: 0;
}
@media all and (max-width: 767px) {
  #page-culture .contents.contents02 .box.box05 .txt {
    width: 90%;
    margin: 0 auto;
  }
}
#page-culture .contents.contents02 .box.box05 .txt > div {
  max-width: 660px;
  margin-right: 11%;
  margin-left: auto;
}
@media all and (min-width: 768px) {
  #page-culture .contents.contents02 .box.box05 .txt > div {
    padding-left: 20px;
  }
}
@media all and (max-width: 767px) {
  #page-culture .contents.contents02 .box.box05 .txt > div {
    margin-right: auto;
  }
}
#page-culture .contents.contents02 .box.box05 .txt > div > div {
  max-width: 540px;
}
#page-culture .contents.contents02 .box.box05 .img {
  width: 40%;
  z-index: 0;
}
@media all and (min-width: 1537px) {
  #page-culture .contents.contents02 .box.box05 .img {
    max-width: 576px;
    left: 58%;
  }
}
#page-culture .contents.contents02 .box.box05 .img::before {
  content: "";
  width: 118px;
  height: 126px;
  background-image: url("../_img/culture/title-icon05.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: 50%;
  left: -80px;
  transform: translateY(-50%);
  z-index: -1;
}
@media all and (max-width: 767px) {
  #page-culture .contents.contents02 .box.box05 .img::before {
    top: 10px;
    left: -30px;
    z-index: 1;
  }
}
@media all and (max-width: 500px) {
  #page-culture .contents.contents02 .box.box05 .img::before {
    width: 98px;
    height: 104px;
  }
}
#page-culture .contents.contents02 .box:nth-of-type(odd) .img {
  top: 0;
  left: 0;
}
@media all and (max-width: 767px) {
  #page-culture .contents.contents02 .box:nth-of-type(odd) .img {
    width: 90%;
    margin-right: auto;
    margin-left: 0;
  }
}
#page-culture .contents.contents02 .box:nth-of-type(odd) .img img {
  border-radius: 0 30px 30px 0;
}
#page-culture .contents.contents02 .box:nth-of-type(even) .img {
  top: 0;
  right: 0;
}
@media all and (max-width: 767px) {
  #page-culture .contents.contents02 .box:nth-of-type(even) .img {
    width: 90%;
    margin-right: 0;
    margin-left: auto;
  }
}
#page-culture .contents.contents02 .box:nth-of-type(even) .img img {
  border-radius: 30px 0 0 30px;
}

/*--------------------------------------
page project
---------------------------------------*/
#page-project {
  background-color: #206DD8;
}
#page-project #mainContents {
  padding-top: 8.75rem;
}
#page-project .kv {
  width: 100%;
  max-width: 1350px;
  margin-bottom: 6.25rem;
  margin-left: auto;
  margin-right: auto;
}
#page-project .kv .inner {
  width: 80%;
  max-width: 1190px;
  margin-right: 5%;
  margin-left: auto;
  padding-top: 8.75rem;
  padding-left: 40px;
  box-sizing: border-box;
  position: relative;
}
@media all and (max-width: 767px) {
  #page-project .kv .inner {
    padding-top: 6.75rem;
  }
}
#page-project .kv .inner h2 {
  color: #FFFFFF;
  font-size: 48px;
  font-weight: 900;
  position: absolute;
  top: 20px;
  left: -100px;
}
@media all and (max-width: 767px) {
  #page-project .kv .inner h2 {
    font-size: 26px;
    left: -30px;
  }
}
#page-project .kv .inner h2::before {
  content: "";
  width: 302px;
  height: 113px;
  background-image: url("../_img/project/title_underlineline.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  bottom: -44px;
  left: 0;
}
@media all and (max-width: 767px) {
  #page-project .kv .inner h2::before {
    width: 182px;
    height: 68px;
    bottom: -30px;
  }
}
#page-project .kv .inner h2 > div {
  transform: rotate(-18deg);
}
#page-project .kv .inner .catchcopy {
  color: #FFFFFF;
  font-size: calc(30px + (80 - 30) * ((100vw - 375px) / (1440 - 375)));
  font-weight: 900;
  line-height: 1.2;
  position: relative;
}
@media all and (min-width: 1441px) {
  #page-project .kv .inner .catchcopy {
    font-size: 80px;
  }
}
@media all and (max-width: 375px) {
  #page-project .kv .inner .catchcopy {
    font-size: 30px;
  }
}
#page-project .kv .inner .catchcopy::before {
  content: "";
  width: 66px;
  height: 55px;
  background-image: url("../_img/project/catchcopy_decoration.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  bottom: -20px;
  left: -80px;
}
@media all and (max-width: 767px) {
  #page-project .kv .inner .catchcopy::before {
    width: 56px;
    height: 47px;
    bottom: -16px;
    left: -70px;
  }
}
@media all and (max-width: 500px) {
  #page-project .kv .inner .catchcopy::before {
    width: 46px;
    height: 38px;
  }
}
#page-project .kv .inner .catchcopy::after {
  content: "";
  width: 51%;
  height: 36px;
  background-image: url("../_img/project/catchcopy_underline.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  bottom: -36px;
  left: 0;
}
@media all and (max-width: 767px) {
  #page-project .kv .inner .catchcopy::after {
    width: 70%;
  }
}
#page-project .kv .inner .catchcopy span {
  color: #FDFF8B;
}
@media all and (min-width: 768px) {
  #page-project .kv .inner .catchcopy br.sp {
    display: none;
  }
}
#page-project .kv .inner .name {
  font-size: 22px;
  color: #FFFFFF;
  font-weight: 700;
  margin-top: 6.25rem;
}
@media all and (max-width: 767px) {
  #page-project .kv .inner .name {
    margin-top: 4.25rem;
  }
}
@media all and (max-width: 500px) {
  #page-project .kv .inner .name {
    margin-top: 3rem;
  }
}
#page-project .kv .inner .name span {
  font-size: 17px;
  margin-left: 1rem;
}
#page-project .kv .inner .contens {
  margin-top: 3.75rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
@media all and (max-width: 767px) {
  #page-project .kv .inner .contens {
    flex-direction: column;
    justify-content: flex-start;
  }
}
#page-project .kv .inner .contens .txt {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 700;
  line-height: 2.2;
  width: 45%;
  position: relative;
}
@media all and (max-width: 767px) {
  #page-project .kv .inner .contens .txt {
    width: 100%;
  }
}
@media all and (max-width: 500px) {
  #page-project .kv .inner .contens .txt {
    font-size: 15px;
  }
}
#page-project .kv .inner .contens .txt::before {
  content: "";
  width: 113px;
  height: 70px;
  background-image: url("../_img/project/kv_decoration01.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: -46px;
  left: -40px;
}
@media all and (max-width: 767px) {
  #page-project .kv .inner .contens .txt::before {
    width: 83px;
    height: 53px;
    top: -26px;
    left: -30px;
  }
}
#page-project .kv .inner .contens .img {
  width: 45%;
  line-height: 0;
  position: relative;
}
@media all and (max-width: 767px) {
  #page-project .kv .inner .contens .img {
    width: 100%;
    max-width: 380px;
    margin-top: 30px;
  }
}
#page-project .kv .inner .contens .img::before {
  content: "";
  width: 641px;
  height: 673px;
  background-image: url(../_img/project/kv_decoration02.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: 50%;
  left: -320px;
  transform: translateY(-50%);
  z-index: -1;
}
@media all and (max-width: 767px) {
  #page-project .kv .inner .contens .img::before {
    width: 401px;
    height: 393px;
    left: -200px;
    transform: translateY(-80%);
  }
}
#page-project .kv .inner .contens .img img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
#page-project .interview {
  background-color: #7DF7F9;
}
#page-project .interview > div {
  width: 100%;
  padding: 6.25rem 0 7.5rem;
}
#page-project .interview .box {
  margin-bottom: 50px;
  position: relative;
}
#page-project .interview .box .title {
  color: #FFFFFF;
  font-size: calc(28px + (50 - 28) * ((100vw - 375px) / (1440 - 375)));
  font-weight: 900;
  line-height: 1.5;
  background-color: #206DD8;
  padding: 25px 0;
}
@media all and (min-width: 1441px) {
  #page-project .interview .box .title {
    font-size: 50px;
  }
}
@media all and (max-width: 375px) {
  #page-project .interview .box .title {
    font-size: 28px;
  }
}
#page-project .interview .box .title span {
  color: #FDFF8B;
}
#page-project .interview .box .txt {
  font-size: 16px;
  font-weight: 500;
  line-height: 2.2;
  padding-top: 50px;
}
@media all and (max-width: 767px) {
  #page-project .interview .box .txt {
    padding-top: 30px;
  }
}
#page-project .interview .box .img {
  line-height: 0;
  overflow: hidden;
  position: absolute;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
@media all and (max-width: 767px) {
  #page-project .interview .box .img {
    position: static;
    margin-top: 30px;
  }
}
#page-project .interview .box .img img {
  width: 100%;
}
#page-project .interview .box.interview01 .title {
  width: 64%;
  margin-left: 0;
  margin-right: auto;
}
@media all and (max-width: 767px) {
  #page-project .interview .box.interview01 .title {
    width: 96%;
  }
}
#page-project .interview .box.interview01 .title > div {
  width: 65%;
  max-width: 600px;
  margin-left: auto;
  margin-right: 15%;
  position: relative;
}
@media all and (min-width: 768px) {
  #page-project .interview .box.interview01 .title > div {
    padding-left: 20px;
  }
}
@media all and (max-width: 767px) {
  #page-project .interview .box.interview01 .title > div {
    width: 90%;
    margin: 0 auto;
  }
}
#page-project .interview .box.interview01 .title > div::before {
  content: "";
  width: 82px;
  height: 60px;
  background-image: url("../_img/project/title_decoration01.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: -60px;
  left: -50px;
}
@media all and (max-width: 500px) {
  #page-project .interview .box.interview01 .title > div::before {
    width: 62px;
    height: 46px;
    left: -20px;
  }
}
#page-project .interview .box.interview01 .txt {
  width: 64%;
  margin-left: 0;
  margin-right: auto;
}
@media all and (max-width: 767px) {
  #page-project .interview .box.interview01 .txt {
    width: 100%;
  }
}
#page-project .interview .box.interview01 .txt > div {
  width: 65%;
  max-width: 600px;
  margin-left: auto;
  margin-right: 15%;
}
@media all and (min-width: 768px) {
  #page-project .interview .box.interview01 .txt > div {
    padding-left: 20px;
  }
}
@media all and (max-width: 767px) {
  #page-project .interview .box.interview01 .txt > div {
    width: 90%;
    margin: 0 auto;
  }
}
#page-project .interview .box.interview01 .img {
  width: 41%;
  border-radius: 30px 0 0 30px;
  top: 0;
  right: 0;
}
@media all and (min-width: 1537px) {
  #page-project .interview .box.interview01 .img {
    max-width: 590px;
    left: 57%;
  }
}
@media all and (max-width: 767px) {
  #page-project .interview .box.interview01 .img {
    width: 90%;
    margin-right: 0;
    margin-left: auto;
  }
}
#page-project .interview .box.interview02 .title {
  width: 64%;
  margin-left: auto;
  margin-right: 0;
}
@media all and (max-width: 767px) {
  #page-project .interview .box.interview02 .title {
    width: 96%;
  }
}
#page-project .interview .box.interview02 .title > div {
  width: 65%;
  max-width: 600px;
  margin-left: 17%;
  margin-right: auto;
  position: relative;
}
@media all and (min-width: 768px) {
  #page-project .interview .box.interview02 .title > div {
    padding-right: 20px;
  }
}
@media all and (max-width: 767px) {
  #page-project .interview .box.interview02 .title > div {
    width: 90%;
    margin: 0 auto;
    z-index: 0;
  }
}
#page-project .interview .box.interview02 .title > div::before {
  content: "";
  width: 119px;
  height: 119px;
  background-image: url("../_img/project/title_decoration02.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: -70px;
  left: -21%;
  z-index: 5;
}
@media all and (max-width: 1200px) {
  #page-project .interview .box.interview02 .title > div::before {
    width: 99px;
    height: 99px;
    left: -24%;
  }
}
@media all and (max-width: 767px) {
  #page-project .interview .box.interview02 .title > div::before {
    top: -68px;
    left: -5%;
    z-index: -1;
  }
}
@media all and (max-width: 500px) {
  #page-project .interview .box.interview02 .title > div::before {
    width: 69px;
    height: 69px;
    top: -66px;
  }
}
#page-project .interview .box.interview02 .txt {
  width: 64%;
  margin-left: auto;
  margin-right: 0;
}
@media all and (max-width: 767px) {
  #page-project .interview .box.interview02 .txt {
    width: 100%;
  }
}
#page-project .interview .box.interview02 .txt > div {
  width: 65%;
  max-width: 600px;
  margin-left: 17%;
  margin-right: auto;
}
@media all and (min-width: 768px) {
  #page-project .interview .box.interview02 .txt > div {
    padding-right: 20px;
  }
}
@media all and (max-width: 767px) {
  #page-project .interview .box.interview02 .txt > div {
    width: 90%;
    margin: 0 auto;
  }
}
#page-project .interview .box.interview02 .img {
  width: 43%;
  border-radius: 0 30px 30px 0;
  top: 0;
  left: 0;
}
@media all and (min-width: 1537px) {
  #page-project .interview .box.interview02 .img {
    max-width: 620px;
    left: auto;
    right: 56%;
  }
}
@media all and (max-width: 767px) {
  #page-project .interview .box.interview02 .img {
    width: 80%;
    margin-right: auto;
    margin-left: 0;
  }
}

/*--------------------------------------
page data
---------------------------------------*/
#page-data {
  background-color: #7DF7F9;
}
#page-data .infograph {
  padding-top: 10.625rem;
  padding-bottom: 6.875rem;
}
#page-data .infograph > div {
  width: 90%;
  max-width: 1040px;
  margin: auto;
}
@media all and (max-width: 1200px) {
  #page-data .infograph > div {
    max-width: 890px;
  }
}
@media all and (max-width: 1000px) {
  #page-data .infograph > div {
    max-width: 700px;
  }
}
@media all and (max-width: 767px) {
  #page-data .infograph > div {
    max-width: 480px;
  }
}
@media all and (max-width: 500px) {
  #page-data .infograph > div {
    max-width: 320px;
  }
}
#page-data .infograph h2 {
  color: #003D92;
  font-size: calc(20px + (24 - 20) * ((100vw - 375px) / (1440 - 375)));
  font-weight: 700;
  display: flex;
  align-items: center;
  z-index: 9;
  position: relative;
}
@media all and (min-width: 1441px) {
  #page-data .infograph h2 {
    font-size: 24px;
  }
}
@media all and (max-width: 375px) {
  #page-data .infograph h2 {
    font-size: 20px;
  }
}
#page-data .infograph h2 > span {
  color: #FFFFFF;
  font-size: 48px;
  font-weight: 900;
  position: relative;
  margin-bottom: -10px;
  margin-right: 30px;
}
@media all and (max-width: 767px) {
  #page-data .infograph h2 > span {
    font-size: 38px;
    margin-right: 30px;
  }
}
#page-data .infograph h2 > span:before {
  content: "";
  width: 154px;
  height: 78px;
  display: block;
  background-image: url("../_img/data/infograph-title01.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -26px;
  left: -21px;
}
@media all and (max-width: 767px) {
  #page-data .infograph h2 > span:before {
    width: 116px;
    height: 56px;
    top: -20px;
  }
}
#page-data .infograph h2 > span::after {
  content: "";
  width: 164px;
  height: 12px;
  display: block;
  background-image: url("../_img/data/infograph-title02.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  left: -10px;
}
@media all and (max-width: 767px) {
  #page-data .infograph h2 > span::after {
    width: 134px;
    height: 11px;
    bottom: -4px;
  }
}
#page-data .infograph h2 > span > span {
  transform: rotate(-12deg);
  display: inline-block;
  font-family: "Commissioner", sans-serif;
  line-height: 1;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}
#page-data .infograph .contents {
  margin-top: 30px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}
#page-data .infograph .contents .box {
  background-color: #FFFFFF;
  border: 2px solid #206DD8;
  border-radius: 20px;
  box-sizing: border-box;
  padding: 25px;
}
#page-data .infograph .contents .box .title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}
@media all and (max-width: 1200px) {
  #page-data .infograph .contents .box .title {
    font-size: 28px;
  }
}
#page-data .infograph .contents .box .icon {
  line-height: 1;
}
#page-data .infograph .contents .box .value {
  color: #206DD8;
  font-weight: 700;
  line-height: 1;
}
#page-data .infograph .contents .box .value span.num {
  font-weight: 900;
  line-height: 1;
  font-family: "Commissioner", sans-serif;
}
#page-data .infograph .contents .box:nth-of-type(-n + 6) {
  width: calc(100% / 3);
  max-width: 324px;
  text-align: center;
}
@media all and (max-width: 1200px) {
  #page-data .infograph .contents .box:nth-of-type(-n + 6) {
    max-width: 274px;
  }
}
@media all and (max-width: 1000px) {
  #page-data .infograph .contents .box:nth-of-type(-n + 6) {
    width: calc(100% / 2);
    max-width: 322px;
  }
}
@media all and (max-width: 767px) {
  #page-data .infograph .contents .box:nth-of-type(-n + 6) {
    max-width: 225px;
  }
}
@media all and (max-width: 580px) {
  #page-data .infograph .contents .box:nth-of-type(-n + 6) {
    max-width: 100%;
    width: 100%;
  }
}
#page-data .infograph .contents .box:nth-of-type(-n + 6) .value {
  font-size: 45px;
  margin-top: -10px;
}
@media all and (max-width: 1200px) {
  #page-data .infograph .contents .box:nth-of-type(-n + 6) .value {
    font-size: 38px;
  }
}
#page-data .infograph .contents .box:nth-of-type(-n + 6) .value span.num {
  font-size: 80px;
}
@media all and (max-width: 1200px) {
  #page-data .infograph .contents .box:nth-of-type(-n + 6) .value span.num {
    font-size: 70px;
  }
}
#page-data .infograph .contents .box.age {
  width: 100%;
  text-align: center;
}
#page-data .infograph .contents .box.age .detail {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
#page-data .infograph .contents .box.age .detail .value-left > div,
#page-data .infograph .contents .box.age .detail .value-right > div {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-end;
  line-height: 1;
  margin-bottom: 50px;
  position: relative;
}
@media all and (max-width: 767px) {
  #page-data .infograph .contents .box.age .detail .value-left > div,
  #page-data .infograph .contents .box.age .detail .value-right > div {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
  }
}
#page-data .infograph .contents .box.age .detail .value-left > div::before,
#page-data .infograph .contents .box.age .detail .value-right > div::before {
  content: "";
  height: 2px;
  background-color: #01174C;
  position: absolute;
}
#page-data .infograph .contents .box.age .detail .value-left > div::after,
#page-data .infograph .contents .box.age .detail .value-right > div::after {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #01174C;
  border-radius: 90px;
  position: absolute;
}
@media all and (max-width: 1000px) {
  #page-data .infograph .contents .box.age .detail .value-left > div::after,
  #page-data .infograph .contents .box.age .detail .value-right > div::after {
    width: 8px;
    height: 8px;
  }
}
#page-data .infograph .contents .box.age .detail .value-left > div .decade,
#page-data .infograph .contents .box.age .detail .value-right > div .decade {
  color: #206DD8;
  font-size: 44px;
  font-weight: 700;
  margin-right: 20px;
}
@media all and (max-width: 1200px) {
  #page-data .infograph .contents .box.age .detail .value-left > div .decade,
  #page-data .infograph .contents .box.age .detail .value-right > div .decade {
    font-size: 38px;
  }
}
@media all and (max-width: 1000px) {
  #page-data .infograph .contents .box.age .detail .value-left > div .decade,
  #page-data .infograph .contents .box.age .detail .value-right > div .decade {
    font-size: 26px;
  }
}
@media all and (max-width: 767px) {
  #page-data .infograph .contents .box.age .detail .value-left > div .decade,
  #page-data .infograph .contents .box.age .detail .value-right > div .decade {
    font-size: 22px;
  }
}
@media all and (max-width: 500px) {
  #page-data .infograph .contents .box.age .detail .value-left > div .decade,
  #page-data .infograph .contents .box.age .detail .value-right > div .decade {
    font-size: 15px;
  }
}
#page-data .infograph .contents .box.age .detail .value-left > div .decade span,
#page-data .infograph .contents .box.age .detail .value-right > div .decade span {
  font-size: 70px;
  font-family: "Commissioner", sans-serif;
  font-weight: 900;
}
@media all and (max-width: 1200px) {
  #page-data .infograph .contents .box.age .detail .value-left > div .decade span,
  #page-data .infograph .contents .box.age .detail .value-right > div .decade span {
    font-size: 60px;
  }
}
@media all and (max-width: 1000px) {
  #page-data .infograph .contents .box.age .detail .value-left > div .decade span,
  #page-data .infograph .contents .box.age .detail .value-right > div .decade span {
    font-size: 50px;
  }
}
@media all and (max-width: 767px) {
  #page-data .infograph .contents .box.age .detail .value-left > div .decade span,
  #page-data .infograph .contents .box.age .detail .value-right > div .decade span {
    font-size: 40px;
  }
}
@media all and (max-width: 500px) {
  #page-data .infograph .contents .box.age .detail .value-left > div .decade span,
  #page-data .infograph .contents .box.age .detail .value-right > div .decade span {
    font-size: 28px;
  }
}
#page-data .infograph .contents .box.age .detail .value-left > div .value,
#page-data .infograph .contents .box.age .detail .value-right > div .value {
  font-size: 38px;
}
@media all and (max-width: 1000px) {
  #page-data .infograph .contents .box.age .detail .value-left > div .value,
  #page-data .infograph .contents .box.age .detail .value-right > div .value {
    font-size: 20px;
  }
}
@media all and (max-width: 767px) {
  #page-data .infograph .contents .box.age .detail .value-left > div .value,
  #page-data .infograph .contents .box.age .detail .value-right > div .value {
    font-size: 16px;
  }
}
@media all and (max-width: 500px) {
  #page-data .infograph .contents .box.age .detail .value-left > div .value,
  #page-data .infograph .contents .box.age .detail .value-right > div .value {
    font-size: 12px;
  }
}
#page-data .infograph .contents .box.age .detail .value-left > div .value span.num,
#page-data .infograph .contents .box.age .detail .value-right > div .value span.num {
  font-size: 60px;
}
@media all and (max-width: 1200px) {
  #page-data .infograph .contents .box.age .detail .value-left > div .value span.num,
  #page-data .infograph .contents .box.age .detail .value-right > div .value span.num {
    font-size: 50px;
  }
}
@media all and (max-width: 1000px) {
  #page-data .infograph .contents .box.age .detail .value-left > div .value span.num,
  #page-data .infograph .contents .box.age .detail .value-right > div .value span.num {
    font-size: 40px;
  }
}
@media all and (max-width: 767px) {
  #page-data .infograph .contents .box.age .detail .value-left > div .value span.num,
  #page-data .infograph .contents .box.age .detail .value-right > div .value span.num {
    font-size: 30px;
  }
}
@media all and (max-width: 500px) {
  #page-data .infograph .contents .box.age .detail .value-left > div .value span.num,
  #page-data .infograph .contents .box.age .detail .value-right > div .value span.num {
    font-size: 22px;
  }
}
#page-data .infograph .contents .box.age .detail .value-left .age-60s::before {
  width: 110px;
  bottom: -20px;
  right: -104px;
  transform: rotate(15deg);
}
@media all and (max-width: 1200px) {
  #page-data .infograph .contents .box.age .detail .value-left .age-60s::before {
    width: 78px;
    bottom: -20px;
    right: -68px;
    transform: rotate(26deg);
  }
}
@media all and (max-width: 1000px) {
  #page-data .infograph .contents .box.age .detail .value-left .age-60s::before {
    transform: rotate(32deg);
  }
}
@media all and (max-width: 767px) {
  #page-data .infograph .contents .box.age .detail .value-left .age-60s::before {
    width: 84px;
    bottom: -4px;
    right: -86px;
    transform: rotate(12deg);
  }
}
@media all and (max-width: 500px) {
  #page-data .infograph .contents .box.age .detail .value-left .age-60s::before {
    width: 40px;
    bottom: -5px;
    right: -37px;
    transform: rotate(30deg);
  }
}
#page-data .infograph .contents .box.age .detail .value-left .age-60s::after {
  bottom: -38px;
  right: -105px;
}
@media all and (max-width: 1200px) {
  #page-data .infograph .contents .box.age .detail .value-left .age-60s::after {
    bottom: -42px;
    right: -72px;
  }
}
@media all and (max-width: 1000px) {
  #page-data .infograph .contents .box.age .detail .value-left .age-60s::after {
    bottom: -46px;
    right: -70px;
  }
}
@media all and (max-width: 767px) {
  #page-data .infograph .contents .box.age .detail .value-left .age-60s::after {
    bottom: -16px;
    right: -87px;
  }
}
@media all and (max-width: 500px) {
  #page-data .infograph .contents .box.age .detail .value-left .age-60s::after {
    bottom: -20px;
    right: -42px;
  }
}
#page-data .infograph .contents .box.age .detail .value-left .age-50s::before {
  width: 146px;
  bottom: 42px;
  right: -60px;
  transform: rotate(-17deg);
}
@media all and (max-width: 1200px) {
  #page-data .infograph .contents .box.age .detail .value-left .age-50s::before {
    width: 110px;
    bottom: 35px;
    right: -37px;
    transform: rotate(-18deg);
  }
}
@media all and (max-width: 1000px) {
  #page-data .infograph .contents .box.age .detail .value-left .age-50s::before {
    width: 90px;
    bottom: 23px;
    right: -34px;
  }
}
@media all and (max-width: 767px) {
  #page-data .infograph .contents .box.age .detail .value-left .age-50s::before {
    width: 110px;
    bottom: 35px;
    right: -64px;
    transform: rotate(-28deg);
  }
}
@media all and (max-width: 500px) {
  #page-data .infograph .contents .box.age .detail .value-left .age-50s::before {
    width: 38px;
    bottom: 34px;
    right: -22px;
    transform: rotate(-18deg);
  }
}
#page-data .infograph .contents .box.age .detail .value-left .age-50s::after {
  bottom: 59px;
  right: -60px;
}
@media all and (max-width: 1200px) {
  #page-data .infograph .contents .box.age .detail .value-left .age-50s::after {
    bottom: 48px;
    right: -40px;
  }
}
@media all and (max-width: 1000px) {
  #page-data .infograph .contents .box.age .detail .value-left .age-50s::after {
    bottom: 34px;
    right: -39px;
  }
}
@media all and (max-width: 767px) {
  #page-data .infograph .contents .box.age .detail .value-left .age-50s::after {
    bottom: 58px;
    right: -65px;
  }
}
@media all and (max-width: 500px) {
  #page-data .infograph .contents .box.age .detail .value-left .age-50s::after {
    bottom: 38px;
    right: -26px;
  }
}
#page-data .infograph .contents .box.age .detail .value-left .age-40s::before {
  width: 164px;
  bottom: 73px;
  right: -70px;
  transform: rotate(-41deg);
}
@media all and (max-width: 1200px) {
  #page-data .infograph .contents .box.age .detail .value-left .age-40s::before {
    width: 134px;
    bottom: 69px;
    right: -52px;
    transform: rotate(-46deg);
  }
}
@media all and (max-width: 1000px) {
  #page-data .infograph .contents .box.age .detail .value-left .age-40s::before {
    width: 120px;
    bottom: 58px;
    right: -52px;
    transform: rotate(-46deg);
  }
}
@media all and (max-width: 767px) {
  #page-data .infograph .contents .box.age .detail .value-left .age-40s::before {
    width: 94px;
    bottom: 78px;
    right: -68px;
    transform: rotate(-46deg);
  }
}
@media all and (max-width: 500px) {
  #page-data .infograph .contents .box.age .detail .value-left .age-40s::before {
    width: 54px;
    bottom: 62px;
    right: -22px;
    transform: rotate(-48deg);
  }
}
#page-data .infograph .contents .box.age .detail .value-left .age-40s::after {
  bottom: 124px;
  right: -57px;
}
@media all and (max-width: 1200px) {
  #page-data .infograph .contents .box.age .detail .value-left .age-40s::after {
    bottom: 110px;
    right: -34px;
  }
}
@media all and (max-width: 1000px) {
  #page-data .infograph .contents .box.age .detail .value-left .age-40s::after {
    bottom: 98px;
    right: -37px;
  }
}
@media all and (max-width: 767px) {
  #page-data .infograph .contents .box.age .detail .value-left .age-40s::after {
    bottom: 108px;
    right: -58px;
  }
}
@media all and (max-width: 500px) {
  #page-data .infograph .contents .box.age .detail .value-left .age-40s::after {
    bottom: 80px;
    right: -18px;
  }
}
@media all and (max-width: 500px) {
  #page-data .infograph .contents .box.age .detail .value-right {
    margin-right: -10px;
  }
}
#page-data .infograph .contents .box.age .detail .value-right .age-70s::before {
  width: 150px;
  bottom: 7px;
  left: -154px;
  transform: rotate(-13deg);
}
@media all and (max-width: 1200px) {
  #page-data .infograph .contents .box.age .detail .value-right .age-70s::before {
    width: 116px;
    bottom: 0px;
    left: -119px;
    transform: rotate(-19deg);
  }
}
@media all and (max-width: 1000px) {
  #page-data .infograph .contents .box.age .detail .value-right .age-70s::before {
    width: 110px;
    bottom: -6px;
    left: -109px;
    transform: rotate(-29deg);
  }
}
@media all and (max-width: 767px) {
  #page-data .infograph .contents .box.age .detail .value-right .age-70s::before {
    width: 120px;
    bottom: 14px;
    left: -124px;
    transform: rotate(-9deg);
  }
}
@media all and (max-width: 500px) {
  #page-data .infograph .contents .box.age .detail .value-right .age-70s::before {
    width: 76px;
    bottom: 6px;
    left: -79px;
    transform: rotate(-17deg);
  }
}
#page-data .infograph .contents .box.age .detail .value-right .age-70s::after {
  bottom: -15px;
  left: -160px;
}
@media all and (max-width: 1200px) {
  #page-data .infograph .contents .box.age .detail .value-right .age-70s::after {
    bottom: -23px;
    left: -122px;
  }
}
@media all and (max-width: 1000px) {
  #page-data .infograph .contents .box.age .detail .value-right .age-70s::after {
    bottom: -35px;
    left: -105px;
  }
}
@media all and (max-width: 767px) {
  #page-data .infograph .contents .box.age .detail .value-right .age-70s::after {
    bottom: 1px;
    left: -131px;
  }
}
@media all and (max-width: 500px) {
  #page-data .infograph .contents .box.age .detail .value-right .age-70s::after {
    bottom: -8px;
    left: -82px;
  }
}
#page-data .infograph .contents .box.age .detail .value-right .age-20s::before {
  width: 60px;
  bottom: 47px;
  left: -64px;
  transform: rotate(17deg);
}
@media all and (max-width: 1200px) {
  #page-data .infograph .contents .box.age .detail .value-right .age-20s::before {
    width: 50px;
    bottom: 37px;
    left: -50px;
    transform: rotate(17deg);
  }
}
@media all and (max-width: 1000px) {
  #page-data .infograph .contents .box.age .detail .value-right .age-20s::before {
    width: 40px;
    bottom: 30px;
    left: -42px;
  }
}
@media all and (max-width: 767px) {
  #page-data .infograph .contents .box.age .detail .value-right .age-20s::before {
    width: 60px;
    bottom: 33px;
    left: -64px;
    transform: rotate(26deg);
  }
}
@media all and (max-width: 500px) {
  #page-data .infograph .contents .box.age .detail .value-right .age-20s::before {
    width: 36px;
    bottom: 27px;
    left: -41px;
    transform: rotate(14deg);
  }
}
#page-data .infograph .contents .box.age .detail .value-right .age-20s::after {
  bottom: 52px;
  left: -69px;
}
@media all and (max-width: 1200px) {
  #page-data .infograph .contents .box.age .detail .value-right .age-20s::after {
    bottom: 40px;
    left: -54px;
  }
}
@media all and (max-width: 1000px) {
  #page-data .infograph .contents .box.age .detail .value-right .age-20s::after {
    bottom: 32px;
    left: -44px;
  }
}
@media all and (max-width: 767px) {
  #page-data .infograph .contents .box.age .detail .value-right .age-20s::after {
    bottom: 42px;
    left: -64px;
  }
}
@media all and (max-width: 500px) {
  #page-data .infograph .contents .box.age .detail .value-right .age-20s::after {
    bottom: 28px;
    left: -44px;
  }
}
#page-data .infograph .contents .box.age .detail .value-right .age-30s::before {
  width: 126px;
  bottom: 46px;
  left: -128px;
  transform: rotate(15deg);
}
@media all and (max-width: 1200px) {
  #page-data .infograph .contents .box.age .detail .value-right .age-30s::before {
    width: 86px;
    bottom: 36px;
    left: -90px;
    transform: rotate(15deg);
  }
}
@media all and (max-width: 1000px) {
  #page-data .infograph .contents .box.age .detail .value-right .age-30s::before {
    width: 80px;
    bottom: 32px;
    left: -82px;
    transform: rotate(17deg);
  }
}
@media all and (max-width: 767px) {
  #page-data .infograph .contents .box.age .detail .value-right .age-30s::before {
    width: 110px;
    bottom: 50px;
    left: -118px;
    transform: rotate(27deg);
  }
}
@media all and (max-width: 500px) {
  #page-data .infograph .contents .box.age .detail .value-right .age-30s::before {
    width: 68px;
    bottom: 38px;
    left: -71px;
  }
}
#page-data .infograph .contents .box.age .detail .value-right .age-30s::after {
  bottom: 58px;
  left: -130px;
}
@media all and (max-width: 1200px) {
  #page-data .infograph .contents .box.age .detail .value-right .age-30s::after {
    bottom: 43px;
    left: -93px;
  }
}
@media all and (max-width: 1000px) {
  #page-data .infograph .contents .box.age .detail .value-right .age-30s::after {
    bottom: 41px;
    left: -84px;
  }
}
@media all and (max-width: 767px) {
  #page-data .infograph .contents .box.age .detail .value-right .age-30s::after {
    bottom: 71px;
    left: -114px;
  }
}
@media all and (max-width: 500px) {
  #page-data .infograph .contents .box.age .detail .value-right .age-30s::after {
    bottom: 51px;
    left: -72px;
  }
}
#page-data .infograph .contents .box.age .detail .icon {
  width: 230px;
  height: 230px;
}
@media all and (max-width: 1200px) {
  #page-data .infograph .contents .box.age .detail .icon {
    width: 200px;
    height: 200px;
  }
}
@media all and (max-width: 1000px) {
  #page-data .infograph .contents .box.age .detail .icon {
    width: 160px;
    height: 160px;
  }
}
@media all and (max-width: 500px) {
  #page-data .infograph .contents .box.age .detail .icon {
    width: 120px;
    height: 120px;
    margin-left: -10px;
  }
}
#page-data .infograph .contents .box.age .detail .icon img {
  width: 100%;
}
#page-data .infograph .contents .box:nth-last-of-type(-n + 2) {
  width: calc(100% / 2);
  max-width: 500px;
  text-align: center;
}
@media all and (max-width: 1200px) {
  #page-data .infograph .contents .box:nth-last-of-type(-n + 2) {
    max-width: 428px;
  }
}
@media all and (max-width: 1000px) {
  #page-data .infograph .contents .box:nth-last-of-type(-n + 2) {
    width: 100%;
    max-width: 100%;
  }
}
#page-data .infograph .contents .box:nth-last-of-type(-n + 2) .detail {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-end;
}
@media all and (max-width: 1000px) {
  #page-data .infograph .contents .box:nth-last-of-type(-n + 2) .detail {
    justify-content: center;
    gap: 0 30px;
  }
}
#page-data .infograph .contents .box:nth-last-of-type(-n + 2) .detail .title {
  margin-bottom: 10px;
}
#page-data .infograph .contents .box:nth-last-of-type(-n + 2) .detail .value-left .icon,
#page-data .infograph .contents .box:nth-last-of-type(-n + 2) .detail .value-right .icon {
  margin-top: -10px;
}
#page-data .infograph .contents .box:nth-last-of-type(-n + 2) .detail .value-left .value,
#page-data .infograph .contents .box:nth-last-of-type(-n + 2) .detail .value-right .value {
  font-size: 40px;
  font-weight: 700;
}
@media all and (max-width: 1200px) {
  #page-data .infograph .contents .box:nth-last-of-type(-n + 2) .detail .value-left .value,
  #page-data .infograph .contents .box:nth-last-of-type(-n + 2) .detail .value-right .value {
    font-size: 38px;
  }
}
#page-data .infograph .contents .box:nth-last-of-type(-n + 2) .detail .value-left .value span.num,
#page-data .infograph .contents .box:nth-last-of-type(-n + 2) .detail .value-right .value span.num {
  font-size: 70px;
  font-weight: 900;
}
@media all and (max-width: 1200px) {
  #page-data .infograph .contents .box:nth-last-of-type(-n + 2) .detail .value-left .value span.num,
  #page-data .infograph .contents .box:nth-last-of-type(-n + 2) .detail .value-right .value span.num {
    font-size: 68px;
  }
}
#page-data #voice {
  background-color: #206DD8;
  padding-top: 5rem;
}
#page-data #voice .section-title {
  width: 90%;
  max-width: 1160px;
  margin: auto;
}
#page-data #voice .section-title h2 {
  color: #FFFFFF;
  font-size: calc(20px + (24 - 20) * ((100vw - 375px) / (1440 - 375)));
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  display: inline-block;
}
@media all and (min-width: 1441px) {
  #page-data #voice .section-title h2 {
    font-size: 24px;
  }
}
@media all and (max-width: 375px) {
  #page-data #voice .section-title h2 {
    font-size: 20px;
  }
}
#page-data #voice .section-title h2 > span {
  font-size: calc(40px + (60 - 40) * ((100vw - 375px) / (1440 - 375)));
  font-weight: 900;
  font-family: "Commissioner", sans-serif;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  position: relative;
}
@media all and (min-width: 1441px) {
  #page-data #voice .section-title h2 > span {
    font-size: 60px;
  }
}
@media all and (max-width: 375px) {
  #page-data #voice .section-title h2 > span {
    font-size: 40px;
  }
}
#page-data #voice .section-title h2 > span::before {
  content: "";
  width: 92px;
  height: 81px;
  display: block;
  background-image: url("../_img/data/voice-title.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -51px;
  right: -30px;
}
#page-data #voice #voice01 .kv,
#page-data #voice #voice02 .kv {
  width: 90%;
  max-width: 1140px;
  margin: auto;
  padding-left: 10%;
  box-sizing: border-box;
}
#page-data #voice #voice01 .kv .section-tag,
#page-data #voice #voice02 .kv .section-tag {
  color: #206DD8;
  font-size: 20px;
  font-family: "Commissioner", sans-serif;
  font-weight: 700;
  display: inline-block;
  position: relative;
  z-index: 0;
}
@media all and (max-width: 500px) {
  #page-data #voice #voice01 .kv .section-tag,
  #page-data #voice #voice02 .kv .section-tag {
    font-size: 16px;
  }
}
#page-data #voice #voice01 .kv .section-tag > span::before,
#page-data #voice #voice02 .kv .section-tag > span::before {
  content: "";
  width: 144px;
  height: 79px;
  display: block;
  background-image: url("../_img/data/voice-tag.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-61%, -52%);
  z-index: -1;
}
@media all and (max-width: 500px) {
  #page-data #voice #voice01 .kv .section-tag > span::before,
  #page-data #voice #voice02 .kv .section-tag > span::before {
    width: 134px;
    height: 74px;
  }
}
#page-data #voice #voice01 .kv .section-tag > span > span,
#page-data #voice #voice02 .kv .section-tag > span > span {
  transform: rotate(-20deg);
  display: block;
  padding-bottom: 10px;
}
#page-data #voice #voice01 .kv .catchcopy,
#page-data #voice #voice02 .kv .catchcopy {
  font-size: calc(28px + (70 - 28) * ((100vw - 375px) / (1440 - 375)));
  font-weight: 900;
  line-height: 1.3;
}
@media all and (min-width: 1441px) {
  #page-data #voice #voice01 .kv .catchcopy,
  #page-data #voice #voice02 .kv .catchcopy {
    font-size: 68px;
  }
}
@media all and (max-width: 375px) {
  #page-data #voice #voice01 .kv .catchcopy,
  #page-data #voice #voice02 .kv .catchcopy {
    font-size: 28px;
  }
}
@media all and (min-width: 768px) {
  #page-data #voice #voice01 .kv .catchcopy br.sp,
  #page-data #voice #voice02 .kv .catchcopy br.sp {
    display: none;
  }
}
#page-data #voice #voice01 .kv .name,
#page-data #voice #voice02 .kv .name {
  font-size: 22px;
  font-weight: 700;
  margin-top: 30px;
}
@media all and (max-width: 500px) {
  #page-data #voice #voice01 .kv .name,
  #page-data #voice #voice02 .kv .name {
    font-size: 18px;
    margin-top: 20px;
  }
}
#page-data #voice #voice01 .kv .name span,
#page-data #voice #voice02 .kv .name span {
  font-size: 17px;
  margin-left: 1rem;
}
@media all and (max-width: 500px) {
  #page-data #voice #voice01 .kv .name span,
  #page-data #voice #voice02 .kv .name span {
    font-size: 14px;
  }
}
#page-data #voice #voice01 .kv .img,
#page-data #voice #voice02 .kv .img {
  line-height: 1;
  margin-top: 30px;
  width: 80%;
  max-width: 800px;
}
@media all and (max-width: 767px) {
  #page-data #voice #voice01 .kv .img,
  #page-data #voice #voice02 .kv .img {
    width: 90%;
  }
}
#page-data #voice #voice01 .kv .img img,
#page-data #voice #voice02 .kv .img img {
  width: 100%;
}
#page-data #voice #voice01 .interview01,
#page-data #voice #voice02 .interview01 {
  margin-top: 60px;
}
@media all and (min-width: 1537px) {
  #page-data #voice #voice01 .interview01,
  #page-data #voice #voice02 .interview01 {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
  }
}
#page-data #voice #voice01 .interview01 .title,
#page-data #voice #voice02 .interview01 .title {
  color: #FFFFFF;
  font-size: calc(26px + (50 - 26) * ((100vw - 375px) / (1440 - 375)));
  font-weight: 900;
  line-height: 1.5;
  padding: 12px 0;
}
@media all and (min-width: 1441px) {
  #page-data #voice #voice01 .interview01 .title,
  #page-data #voice #voice02 .interview01 .title {
    font-size: 50px;
  }
}
@media all and (max-width: 375px) {
  #page-data #voice #voice01 .interview01 .title,
  #page-data #voice #voice02 .interview01 .title {
    font-size: 26px;
  }
}
#page-data #voice #voice01 .interview01 .title > div,
#page-data #voice #voice02 .interview01 .title > div {
  width: 90%;
  max-width: 1140px;
  margin: auto;
  padding-left: 10%;
  box-sizing: border-box;
}
@media all and (max-width: 767px) {
  #page-data #voice #voice01 .interview01 .title > div,
  #page-data #voice #voice02 .interview01 .title > div {
    width: 90%;
    max-width: 580px;
    margin: 0 auto;
    padding-left: 0;
  }
}
#page-data #voice #voice01 .interview01 .title span.color-yellow,
#page-data #voice #voice02 .interview01 .title span.color-yellow {
  color: #FDFF8B;
}
@media all and (min-width: 768px) {
  #page-data #voice #voice01 .interview01 .title br.sp,
  #page-data #voice #voice02 .interview01 .title br.sp {
    display: none;
  }
}
#page-data #voice #voice01 .interview01 .txt,
#page-data #voice #voice02 .interview01 .txt {
  font-size: 16px;
  font-weight: 500;
  line-height: 2.2;
  width: 90%;
  max-width: 1140px;
  margin: 30px auto 0;
  padding-left: 10%;
  box-sizing: border-box;
}
@media all and (max-width: 767px) {
  #page-data #voice #voice01 .interview01 .txt,
  #page-data #voice #voice02 .interview01 .txt {
    width: 90%;
    max-width: 580px;
    margin: 30px auto 0;
    padding-left: 0;
  }
}
#page-data #voice #voice01 {
  margin-top: -5rem;
  padding-top: 6.25rem;
  padding-bottom: 6.875rem;
}
#page-data #voice #voice01 .kv .catchcopy {
  color: #FFFFFF;
}
#page-data #voice #voice01 .kv .catchcopy span.color-yellow {
  color: #FDFF8B;
}
#page-data #voice #voice01 .kv .name {
  color: #FFFFFF;
}
#page-data #voice #voice01 .interview01 .title {
  background-color: #003D92;
}
#page-data #voice #voice01 .interview01 .title > div span.deco {
  position: relative;
}
#page-data #voice #voice01 .interview01 .title > div span.deco::before {
  content: "";
  width: 121%;
  height: 31%;
  display: block;
  background-image: url("../_img/data/voice01-line.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}
@media all and (max-width: 500px) {
  #page-data #voice #voice01 .interview01 .title > div span.deco::before {
    bottom: -14px;
  }
}
#page-data #voice #voice01 .interview01 .txt {
  color: #FFFFFF;
}
#page-data #voice #voice01 .interview02 {
  margin-top: 40px;
  position: relative;
}
#page-data #voice #voice01 .interview02 .title {
  color: #FFFFFF;
  font-size: calc(26px + (50 - 26) * ((100vw - 375px) / (1440 - 375)));
  font-weight: 900;
  line-height: 1.5;
  background-color: #003D92;
  padding: 18px 0;
  width: 58%;
  margin-left: auto;
  margin-right: 0;
}
@media all and (min-width: 1441px) {
  #page-data #voice #voice01 .interview02 .title {
    font-size: 50px;
  }
}
@media all and (max-width: 375px) {
  #page-data #voice #voice01 .interview02 .title {
    font-size: 26px;
  }
}
@media all and (max-width: 767px) {
  #page-data #voice #voice01 .interview02 .title {
    width: 100%;
  }
}
#page-data #voice #voice01 .interview02 .title > div {
  max-width: 666px;
  margin-left: 11%;
  margin-right: auto;
  position: relative;
}
@media all and (max-width: 767px) {
  #page-data #voice #voice01 .interview02 .title > div {
    width: 90%;
    max-width: 580px;
    margin: 0 auto;
    z-index: 0;
  }
}
#page-data #voice #voice01 .interview02 .title > div span.color-yellow {
  color: #FDFF8B;
}
#page-data #voice #voice01 .interview02 .txt {
  color: #FFFFFF;
  font-weight: 500;
  line-height: 2.2;
  width: 58%;
  margin-top: 30px;
  margin-left: auto;
  margin-right: 0;
}
@media all and (max-width: 767px) {
  #page-data #voice #voice01 .interview02 .txt {
    width: 90%;
    margin: 30px auto 0;
  }
}
#page-data #voice #voice01 .interview02 .txt > div {
  max-width: 580px;
  margin-left: 11%;
  margin-right: auto;
}
@media all and (min-width: 768px) {
  #page-data #voice #voice01 .interview02 .txt > div {
    padding-right: 20px;
  }
}
@media all and (max-width: 767px) {
  #page-data #voice #voice01 .interview02 .txt > div {
    margin-left: auto;
  }
}
#page-data #voice #voice01 .interview02 .img {
  width: 43%;
  position: absolute;
  top: 0;
  left: 0;
}
@media all and (min-width: 1537px) {
  #page-data #voice #voice01 .interview02 .img {
    max-width: 620px;
    left: auto;
    right: 56%;
  }
}
@media all and (max-width: 767px) {
  #page-data #voice #voice01 .interview02 .img {
    width: 80%;
    margin-top: 60px;
    margin-right: auto;
    margin-left: 0;
    position: relative;
  }
}
#page-data #voice #voice01 .interview02 .img::before {
  content: "";
  width: 176px;
  height: 60px;
  display: block;
  background-image: url("../_img/data/voice01-decoration.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -14px;
  right: -80px;
}
@media all and (max-width: 500px) {
  #page-data #voice #voice01 .interview02 .img::before {
    width: 156px;
    height: 54px;
    top: -20px;
    right: -60px;
  }
}
#page-data #voice #voice01 .interview02 .img img {
  width: 100%;
}
#page-data #voice #voice02 {
  background-color: #7DF7F9;
  padding-top: 6.25rem;
  padding-bottom: 6.875rem;
}
#page-data #voice #voice02 .kv .catchcopy {
  color: #003D92;
}
#page-data #voice #voice02 .kv .catchcopy span.color-white {
  color: #FFFFFF;
}
#page-data #voice #voice02 .kv .name {
  color: #003D92;
}
#page-data #voice #voice02 .interview01 .title {
  background-color: #206DD8;
}
#page-data #voice #voice02 .interview01 .title span.deco {
  position: relative;
}
#page-data #voice #voice02 .interview01 .title span.deco::before {
  content: "";
  width: 122%;
  height: 169%;
  display: block;
  background-image: url(../_img/data/voice02-decoration01.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: -8px;
  transform: translateY(-43%);
}
@media all and (max-width: 500px) {
  #page-data #voice #voice02 .interview01 .title span.deco::before {
    left: 0px;
    transform: translateY(-38%);
  }
}
#page-data #voice #voice02 .interview01 .txt {
  color: #000000;
}
#page-data #voice #voice02 .interview02 {
  margin-top: 40px;
  position: relative;
}
#page-data #voice #voice02 .interview02 .title {
  color: #FFFFFF;
  font-size: calc(26px + (50 - 26) * ((100vw - 375px) / (1440 - 375)));
  font-weight: 900;
  line-height: 1.5;
  background-color: #206DD8;
  padding: 18px 0;
  width: 58%;
  margin-left: 0;
  margin-right: auto;
}
@media all and (min-width: 1441px) {
  #page-data #voice #voice02 .interview02 .title {
    font-size: 50px;
  }
}
@media all and (max-width: 375px) {
  #page-data #voice #voice02 .interview02 .title {
    font-size: 26px;
  }
}
@media all and (max-width: 767px) {
  #page-data #voice #voice02 .interview02 .title {
    width: 100%;
  }
}
#page-data #voice #voice02 .interview02 .title > div {
  max-width: 600px;
  margin-left: auto;
  margin-right: 12%;
}
@media all and (min-width: 768px) {
  #page-data #voice #voice02 .interview02 .title > div {
    padding-left: 20px;
  }
}
@media all and (max-width: 767px) {
  #page-data #voice #voice02 .interview02 .title > div {
    width: 90%;
    max-width: 580px;
    margin: 0 auto;
    z-index: 0;
  }
}
#page-data #voice #voice02 .interview02 .title > div span.color-yellow {
  color: #FDFF8B;
}
@media all and (min-width: 768px) {
  #page-data #voice #voice02 .interview02 .title > div br.sp {
    display: none;
  }
}
#page-data #voice #voice02 .interview02 .title > div > div {
  display: inline;
  position: relative;
}
#page-data #voice #voice02 .interview02 .title > div > div::before {
  content: "";
  width: 61px;
  height: 77px;
  display: block;
  background-image: url("../_img/data/voice02-decoration02.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 16px;
  right: -30px;
}
@media all and (max-width: 991px) {
  #page-data #voice #voice02 .interview02 .title > div > div::before {
    width: 51px;
    height: 65px;
    right: -20px;
  }
}
@media all and (max-width: 500px) {
  #page-data #voice #voice02 .interview02 .title > div > div::before {
    width: 41px;
    height: 53px;
  }
}
#page-data #voice #voice02 .interview02 .txt {
  color: #000000;
  font-weight: 500;
  line-height: 2.2;
  width: 58%;
  margin-top: 30px;
  margin-left: 0;
  margin-right: auto;
}
@media all and (max-width: 767px) {
  #page-data #voice #voice02 .interview02 .txt {
    width: 90%;
    margin: 30px auto 0;
  }
}
#page-data #voice #voice02 .interview02 .txt > div {
  max-width: 600px;
  margin-left: auto;
  margin-right: 12%;
}
@media all and (min-width: 768px) {
  #page-data #voice #voice02 .interview02 .txt > div {
    padding-left: 20px;
  }
}
@media all and (max-width: 767px) {
  #page-data #voice #voice02 .interview02 .txt > div {
    margin-right: auto;
  }
}
#page-data #voice #voice02 .interview02 .img {
  width: 44%;
  position: absolute;
  top: 0;
  right: 0;
}
@media all and (min-width: 1537px) {
  #page-data #voice #voice02 .interview02 .img {
    max-width: 633px;
    left: 55%;
  }
}
@media all and (max-width: 767px) {
  #page-data #voice #voice02 .interview02 .img {
    width: 80%;
    margin-top: 60px;
    margin-right: 0;
    margin-left: auto;
    position: static;
  }
}
#page-data #voice #voice02 .interview02 .img img {
  width: 100%;
}

/*--------------------------------------
page recruitment
---------------------------------------*/
#page-recruitment {
  color: #FFFFFF;
  background-color: #206DD8;
}
#page-recruitment #mainContents {
  width: 90%;
  max-width: 970px;
  margin-top: 10rem;
  margin-bottom: 14rem;
  margin-left: auto;
  margin-right: auto;
}
@media all and (max-width: 767px) {
  #page-recruitment #mainContents {
    margin-bottom: 8rem;
  }
}
#page-recruitment h2 {
  font-size: calc(15px + (24 - 15) * ((100vw - 375px) / (1440 - 375)));
  font-weight: 700;
  text-align: center;
}
@media all and (min-width: 1441px) {
  #page-recruitment h2 {
    font-size: 24px;
  }
}
@media all and (max-width: 375px) {
  #page-recruitment h2 {
    font-size: 15px;
  }
}
#page-recruitment h2 > span {
  font-size: calc(30px + (60 - 30) * ((100vw - 375px) / (1440 - 375)));
  font-family: Commissioner, sans-serif;
  font-weight: 900;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.25);
  margin-bottom: 30px;
  display: inline-block;
  position: relative;
}
@media all and (min-width: 1441px) {
  #page-recruitment h2 > span {
    font-size: 60px;
  }
}
@media all and (max-width: 375px) {
  #page-recruitment h2 > span {
    font-size: 30px;
  }
}
#page-recruitment h2 > span::after {
  content: "";
  width: 68%;
  height: 3px;
  background-image: url("../_img/privacypolicy/title-line.png");
  background-size: contain;
  background-position: center;
  display: block;
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
}
@media all and (max-width: 500px) {
  #page-recruitment h2 > span::after {
    bottom: 0;
  }
}
#page-recruitment h2 > span > span {
  position: relative;
}
#page-recruitment h2 > span > span::before {
  content: "";
  width: 81px;
  height: 73px;
  background-image: url("../_img/recruitment/title-decoration01.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: -20px;
  left: -56px;
  z-index: -1;
}
@media all and (max-width: 767px) {
  #page-recruitment h2 > span > span::before {
    width: 61px;
    height: 55px;
    top: -16px;
    left: -46px;
  }
}
#page-recruitment h2 > span > span::after {
  content: "";
  width: 93px;
  height: 104px;
  background-image: url("../_img/recruitment/title-decoration02.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: 50%;
  right: -58px;
  z-index: -1;
  transform: translateY(-8%);
}
@media all and (max-width: 767px) {
  #page-recruitment h2 > span > span::after {
    width: 63px;
    height: 70px;
    right: -40px;
  }
}
#page-recruitment .main-txt {
  margin-top: 60px;
}
#page-recruitment .main-txt dl {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px #FFFFFF solid;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  line-height: 2.2;
}
@media all and (max-width: 767px) {
  #page-recruitment .main-txt dl {
    flex-direction: column;
    justify-content: flex-start;
  }
}
#page-recruitment .main-txt dl dt {
  width: 150px;
  color: #FDFF8B;
  font-size: 16px;
  font-weight: 700;
}
@media all and (max-width: 767px) {
  #page-recruitment .main-txt dl dt {
    width: 100%;
    margin-bottom: 10px;
  }
}
#page-recruitment .main-txt dl dd {
  width: calc(100% - 150px);
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}
@media all and (max-width: 767px) {
  #page-recruitment .main-txt dl dd {
    width: 100%;
  }
}
#page-recruitment .about-application {
  width: 90%;
  max-width: 730px;
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
}
#page-recruitment .about-application .title {
  color: #000000;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  padding: 6px 0;
  background-color: #FEF247;
  border: 1px solid #000000;
  position: relative;
  margin-bottom: 30px;
}
#page-recruitment .about-application .title::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 22px 16px 0 16px;
  border-color: #FEF247 transparent transparent transparent;
  display: block;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}
#page-recruitment .about-application .title::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 22px 16px 0 16px;
  border-color: #000000 transparent transparent transparent;
  display: block;
  position: absolute;
  bottom: -21px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
#page-recruitment .about-application .detail > div {
  color: #000000;
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  background-color: #FFFFFF;
  border: 1px solid #000000;
  padding: 7px 0;
}
#page-recruitment .about-application .detail > div:not(:last-of-type) {
  margin-bottom: 30px;
  position: relative;
}
#page-recruitment .about-application .detail > div:not(:last-of-type)::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 22px 16px 0 16px;
  border-color: #FEF247 transparent transparent transparent;
  display: block;
  position: absolute;
  bottom: -27px;
  left: 50%;
  transform: translateX(-50%);
}
#page-recruitment .about-application .detail > div:not(:last-of-type)::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 24px 17px 0 17px;
  border-color: #000000 transparent transparent transparent;
  display: block;
  position: absolute;
  bottom: -29px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
#page-recruitment .about-application .detail > div:last-of-type {
  color: #FFFFFF;
  background-color: #F75A7C;
}
#page-recruitment .about-application p {
  font-size: 15px;
  font-weight: 400;
  margin-top: 36px;
}
#page-recruitment .about-application .icon-gym {
  color: #003D92;
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  background-color: #FFFFFF;
  border-radius: 90px;
  width: 90%;
  max-width: 300px;
  margin: 70px auto 0;
  padding: 3px 0;
  position: relative;
}
#page-recruitment .about-application .icon-gym::before {
  content: "";
  width: 52px;
  height: 44px;
  background-image: url("../_img/recruitment/gym-decoration01.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: -38px;
  left: 36px;
}
#page-recruitment .about-application .icon-gym span::before {
  content: "";
  width: 27px;
  height: 28px;
  background-image: url("../_img/recruitment/gym-decoration02.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: 0;
  left: -40px;
}
#page-recruitment .about-application .icon-gym span::after {
  content: "";
  width: 27px;
  height: 28px;
  background-image: url("../_img/recruitment/gym-decoration02.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: 0;
  right: -40px;
  transform: scaleX(-1);
}

/*--------------------------------------
page privacypolicy
---------------------------------------*/
#privacypolicy {
  color: #FFFFFF;
  background-color: #206DD8;
}
#privacypolicy #mainContents {
  width: 90%;
  max-width: 970px;
  margin-top: 10rem;
  margin-bottom: 14rem;
  margin-left: auto;
  margin-right: auto;
}
@media all and (max-width: 767px) {
  #privacypolicy #mainContents {
    margin-bottom: 8rem;
  }
}
#privacypolicy h2 {
  font-size: calc(14px + (24 - 14) * ((100vw - 375px) / (1440 - 375)));
  font-weight: 700;
  text-align: center;
}
@media all and (min-width: 1441px) {
  #privacypolicy h2 {
    font-size: 24px;
  }
}
@media all and (max-width: 375px) {
  #privacypolicy h2 {
    font-size: 14px;
  }
}
#privacypolicy h2 > span {
  font-size: calc(30px + (60 - 30) * ((100vw - 375px) / (1440 - 375)));
  font-family: Commissioner, sans-serif;
  font-weight: 900;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.25);
  margin-bottom: 30px;
  display: inline-block;
  position: relative;
}
@media all and (min-width: 1441px) {
  #privacypolicy h2 > span {
    font-size: 60px;
  }
}
@media all and (max-width: 375px) {
  #privacypolicy h2 > span {
    font-size: 30px;
  }
}
#privacypolicy h2 > span::after {
  content: "";
  width: 68%;
  height: 3px;
  background-image: url("../_img/privacypolicy/title-line.png");
  background-size: contain;
  background-position: center;
  display: block;
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
}
@media all and (max-width: 500px) {
  #privacypolicy h2 > span::after {
    bottom: 0;
  }
}
#privacypolicy h2 > span > span {
  position: relative;
}
#privacypolicy h2 > span > span::before {
  content: "";
  width: 81px;
  height: 73px;
  background-image: url("../_img/privacypolicy/title-decoration01.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: -20px;
  left: -56px;
  z-index: -1;
}
@media all and (max-width: 767px) {
  #privacypolicy h2 > span > span::before {
    width: 61px;
    height: 55px;
    top: -16px;
    left: -46px;
  }
}
#privacypolicy h2 > span > span::after {
  content: "";
  width: 90px;
  height: 70px;
  background-image: url("../_img/privacypolicy/title-decoration02.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: 10px;
  right: -100px;
  z-index: -1;
}
@media all and (max-width: 767px) {
  #privacypolicy h2 > span > span::after {
    width: 50px;
    height: 38px;
    top: 5px;
    right: -55px;
  }
}
#privacypolicy h3 {
  color: #FDFF8B;
  font-size: calc(24px + (28 - 24) * ((100vw - 375px) / (1440 - 375)));
  font-weight: 700;
  margin-bottom: 30px;
}
@media all and (min-width: 1441px) {
  #privacypolicy h3 {
    font-size: 28px;
  }
}
@media all and (max-width: 375px) {
  #privacypolicy h3 {
    font-size: 24px;
  }
}
#privacypolicy h4 {
  font-size: 18px;
  font-weight: 700;
}
#privacypolicy h5 {
  color: #FDFF8B;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}
#privacypolicy .main-txt {
  line-height: 2.2rem;
}
#privacypolicy .main-txt .item {
  margin-top: 40px;
}
#privacypolicy section {
  margin-top: 7.125rem;
}
@media all and (max-width: 767px) {
  #privacypolicy section {
    margin-top: 5rem;
  }
}
@media all and (max-width: 767px) {
  #privacypolicy section {
    margin-top: 5rem;
  }
}
#privacypolicy section#handling .box:not(:first-of-type) h4 {
  margin-top: 40px;
}
#privacypolicy section#handling .box .item {
  padding-left: 1rem;
}
#privacypolicy section#handling .box .item .sub-item {
  margin-top: 40px;
}
#privacypolicy section#handling .box .item .sub-item .title {
  color: #FDFF8B;
  font-weight: 700;
}
#privacypolicy section#handling .box .item .sub-item ul li {
  text-indent: 1rem;
}
#privacypolicy section#handling .box .item p {
  text-indent: 1rem;
}

/*--------------------------------------
page entry
---------------------------------------*/
#page-entry {
  background-color: #7DF7F9;
}
#page-entry #mainContents {
  margin-top: 10.625rem;
  margin-bottom: 10.625rem;
}
@media all and (max-width: 500px) {
  #page-entry #mainContents {
    margin-top: 8.5rem;
  }
}
#page-entry .main-title {
  width: 90%;
  max-width: 800px;
  margin: auto;
  text-align: center;
}
#page-entry .main-title h2 {
  color: #FFFFFF;
  font-size: calc(36px + (60 - 36) * ((100vw - 375px) / (1440 - 375)));
  font-family: "Commissioner", sans-serif;
  font-weight: 900;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.25);
  display: inline-block;
  position: relative;
}
@media all and (min-width: 1441px) {
  #page-entry .main-title h2 {
    font-size: 60px;
  }
}
@media all and (max-width: 375px) {
  #page-entry .main-title h2 {
    font-size: 36px;
  }
}
#page-entry .main-title h2::before {
  content: "";
  width: 17%;
  height: 127%;
  background-image: url(../_img/entry/title-line-left.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  bottom: -14%;
  left: -23%;
}
#page-entry .main-title h2::after {
  content: "";
  width: 17%;
  height: 127%;
  background-image: url(../_img/entry/title-line-right.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  bottom: -14%;
  right: -23%;
}
#page-entry .main-title h2 span {
  position: relative;
}
#page-entry .main-title h2 span::before {
  content: "";
  width: 17%;
  height: 94%;
  background-image: url("../_img/entry/title-decoration.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: -48%;
  left: -12%;
}
#page-entry .main-title h2 span::after {
  content: "";
  width: 34%;
  height: 10%;
  background-image: url("../_img/entry/title-underline.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  bottom: -28% x;
  left: 50%;
  transform: translateX(-50%);
}
#page-entry .main-title .sub-title {
  color: #000000;
  font-size: calc(20px + (24 - 20) * ((100vw - 375px) / (1440 - 375)));
  font-weight: 700;
  margin-top: 12px;
}
@media all and (min-width: 1441px) {
  #page-entry .main-title .sub-title {
    font-size: 24px;
  }
}
@media all and (max-width: 375px) {
  #page-entry .main-title .sub-title {
    font-size: 20px;
  }
}
#page-entry .txt {
  color: #003D92;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.2;
  text-align: center;
  width: 90%;
  max-width: 800px;
  margin: 30px auto 0;
}
@media all and (max-width: 500px) {
  #page-entry .txt {
    text-align: left;
  }
}
#page-entry .form-contents {
  width: 90%;
  max-width: 1060px;
  margin: 30px auto;
}
#page-entry .form-contents .form-item {
  background-color: #FEFDE3;
  border: 1px solid #003D92;
  border-radius: 30px;
  padding: 5rem;
  box-sizing: border-box;
}
@media all and (max-width: 991px) {
  #page-entry .form-contents .form-item {
    padding: 3rem;
  }
}
@media all and (max-width: 767px) {
  #page-entry .form-contents .form-item {
    padding: 2rem;
  }
}
#page-entry .form-contents dl {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 0;
  margin-bottom: 40px;
}
@media all and (max-width: 991px) {
  #page-entry .form-contents dl {
    flex-direction: column;
    align-items: flex-start;
  }
}
#page-entry .form-contents dl dt {
  text-align: left;
  float: none;
  padding: 0;
  border-top: none;
  width: 190px;
  font-size: 16px;
  font-weight: 500;
}
@media all and (max-width: 991px) {
  #page-entry .form-contents dl dt {
    width: 100%;
  }
}
#page-entry .form-contents dl dt .required {
  color: #FFFFFF;
  font-size: 13px;
  background-color: #F75A7C;
  border-radius: 5px;
  margin-left: 30px;
  padding: 0px 6px;
  width: 38px;
  display: inline-block;
}
@media all and (max-width: 991px) {
  #page-entry .form-contents dl dt .required {
    margin-left: 10px;
  }
}
#page-entry .form-contents dl dd {
  border-top: none;
  font-size: 16px;
  font-weight: 500;
  width: calc(100% - 190px);
  box-sizing: border-box;
  padding: 0;
  position: relative;
}
@media all and (min-width: 992px) {
  #page-entry .form-contents dl dd {
    padding: 0 0 0 10px;
  }
}
@media all and (max-width: 991px) {
  #page-entry .form-contents dl dd {
    width: 100%;
  }
}
#page-entry .form-contents dl dd input[type="text"],
#page-entry .form-contents dl dd input[type="email"],
#page-entry .form-contents dl dd input[type="tel"] {
  width: 100% !important;
  font-size: 16px;
  padding: 17px 8px;
  box-shadow: none;
  border: 1px solid #003D92;
  border-radius: 5px;
}
#page-entry .form-contents dl dd label.mfp_not_checked {
  padding: 0;
  border: none;
}
#page-entry .form-contents dl dd label.mfp_checked {
  padding: 0;
  border: none;
  background-color: transparent;
  box-shadow: none;
}
#page-entry .form-contents dl dd .custom-radio {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  margin-right: 20px;
  position: relative;
  user-select: none;
}
#page-entry .form-contents dl dd .custom-radio input[type="radio"] {
  display: none;
}
#page-entry .form-contents dl dd .custom-radio input[type="radio"]:checked ~ .radio-mark::after {
  transform: translate(-50%, -50%) scale(1);
}
#page-entry .form-contents dl dd .custom-radio .radio-mark {
  display: inline-block;
  width: 26px;
  height: 26px;
  background-color: #FFFFFF;
  border: 1px solid #003D99;
  border-radius: 50%;
  position: relative;
  margin-right: 10px;
  box-sizing: border-box;
}
#page-entry .form-contents dl dd .custom-radio .radio-mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  background-color: #206DD2;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.2s ease;
}
#page-entry .form-contents dl dd .custom-radio .radio-label {
  font-size: 16px;
  color: #333;
  line-height: 1;
}
#page-entry .form-contents dl dd select.mfp_element_select-one {
  width: 100% !important;
  max-width: 260px !important;
  font-size: 16px;
  padding: 17px 8px;
  box-shadow: none;
  border: 1px solid #003D92;
  border-radius: 5px;
  appearance: none;
  width: 100%;
}
#page-entry .form-contents dl dd .select-wrapper {
  position: relative;
  width: 100% !important;
  max-width: 260px !important;
}
#page-entry .form-contents dl dd .select-wrapper::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 30px;
  pointer-events: none;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 12px solid #003D99;
}
#page-entry .form-contents dl dd .select-wrapper select {
  appearance: none;
  width: 100%;
}
#page-entry .form-contents dl dd textarea {
  font-size: 16px;
  width: 100% !important;
  height: 324px !important;
  border: 1px solid #003D92;
  padding: 17px 8px;
  box-shadow: none;
  border-radius: 5px;
}
#page-entry .form-contents dl dd .mfp_err {
  position: absolute;
  bottom: -30px;
  left: 10px;
}
@media all and (max-width: 991px) {
  #page-entry .form-contents dl:not(.privacy-check) dt {
    margin-bottom: 10px;
  }
}
#page-entry .form-contents dl.privacy-check {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}
#page-entry .form-contents dl.privacy-check dt, #page-entry .form-contents dl.privacy-check dd {
  width: auto;
}
#page-entry .form-contents dl.privacy-check dt .required {
  margin-left: 0;
}
#page-entry .form-contents dl.privacy-check dd {
  position: relative;
}
#page-entry .form-contents dl.privacy-check dd .custom-checkbox {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}
#page-entry .form-contents dl.privacy-check dd .custom-checkbox input[type="checkbox"] {
  display: none !important;
}
#page-entry .form-contents dl.privacy-check dd .custom-checkbox input[type="checkbox"]:checked ~ .checkbox-mark::after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}
#page-entry .form-contents dl.privacy-check dd .custom-checkbox .checkbox-mark {
  display: block;
  width: 25px;
  height: 25px;
  background-color: #FFFFFF;
  border: 1px solid #003D92;
  border-radius: 3px;
  position: relative;
  margin-right: 150px;
  box-sizing: border-box;
  flex-shrink: 0;
}
#page-entry .form-contents dl.privacy-check dd .custom-checkbox .checkbox-mark::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 2px;
  width: 7px;
  height: 12px;
  border: solid #003D92;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg) scale(0);
  opacity: 0;
  transition: all 0.2s ease;
}
#page-entry .form-contents dl.privacy-check dd .custom-checkbox.mfp_not_checked, #page-entry .form-contents dl.privacy-check dd .custom-checkbox.mfp_checked {
  background: none !important;
  padding: 0 !important;
  border: none !important;
}
#page-entry .form-contents dl.privacy-check dd a {
  color: #206DD8;
  text-decoration: underline;
  position: absolute;
  top: 50%;
  left: 50px;
  transform: translateY(-50%);
  z-index: 99;
}
@media all and (max-width: 991px) {
  #page-entry .form-contents dl.privacy-check dd a {
    left: 44px;
  }
}
#page-entry .form-contents dl.privacy-check .required {
  margin-right: 10px;
}
#page-entry .form-contents .mfp_buttons {
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  width: 90%;
  max-width: 630px;
  position: relative;
}
#page-entry .form-contents .mfp_buttons::before {
  content: "";
  width: 15%;
  height: 96%;
  background-image: url(../_img/entry/btn-decoration.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: -35%;
  left: 6%;
}
@media all and (max-width: 767px) {
  #page-entry .form-contents .mfp_buttons::before {
    width: 24%;
  }
}
#page-entry .form-contents .mfp_buttons button[type="submit"] {
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 500;
  background: #F75A7C;
  box-shadow: 3px 3px 0px #000000;
  border-radius: 90px;
  width: 100%;
  margin: auto;
  padding: 28px 0;
  transition: all .3s ease;
  border: none;
  text-shadow: none;
}
@media all and (max-width: 767px) {
  #page-entry .form-contents .mfp_buttons button[type="submit"] {
    padding: 18px 0;
  }
}
@media all and (min-width: 768px) {
  #page-entry .form-contents .mfp_buttons button[type="submit"]:hover {
    background: #206DD8;
  }
}

/*--------------------------------------
page entry thanks
---------------------------------------*/
#page-entry-thanks {
  background-color: #7DF7F9;
}
#page-entry-thanks #mainContents {
  margin-top: 10.625rem;
  margin-bottom: 10.625rem;
}
#page-entry-thanks section {
  width: 90%;
  max-width: 1060px;
  margin: auto;
  background-color: #FEFDE3;
  border: 1px solid #003D92;
  border-radius: 30px;
  padding: 5rem;
  box-sizing: border-box;
}
@media all and (max-width: 991px) {
  #page-entry-thanks section {
    padding: 3rem;
  }
}
@media all and (max-width: 500px) {
  #page-entry-thanks section {
    padding: 2rem;
  }
}
#page-entry-thanks section h2 {
  color: #003D92;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 30px;
  line-height: 1.2;
}
#page-entry-thanks section p {
  font-size: 16px;
  font-weight: 500;
  line-height: 2.2;
}
