@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Noto+Sans+JP:wght@100..900&display=swap");
/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

			$

----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/
/*================================
function
=================================*/
/*================================
fadein animation
=================================*/
@keyframes fadein {
  0% {
    opacity: 0.1%;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes fadeup {
  0% {
    opacity: 0.1%;
    visibility: hidden;
    transform: translateY(5%);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
@keyframes fadeinRight {
  0% {
    opacity: 0.1%;
    visibility: hidden;
    transform: translateX(5%);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
}
@keyframes fadeinBlur {
  0% {
    opacity: 0.1%;
    visibility: hidden;
    filter: blur(20px);
  }
  100% {
    opacity: 1;
    visibility: visible;
    filter: blur(0);
  }
}
@keyframes fadeinBlurEn {
  0% {
    text-shadow: 0 0 100px #00278D;
    opacity: 1%;
    visibility: hidden;
  }
  50% {
    text-shadow: 0 0 90px #00278D;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes moveImageUp {
  0% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(5px);
  }
}
@keyframes moveImageDown {
  0% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(-5px);
  }
}
@keyframes scrollline {
  0%, 100%, 40% {
    top: 0;
    opacity: 1;
  }
  14% {
    top: 100%;
    opacity: 0;
  }
  16% {
    top: -100%;
    opacity: 0;
  }
}
@keyframes blinking {
  0% {
    opacity: 1;
    visibility: visible;
  }
  50% {
    opacity: 0.1%;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes loading {
  0% {
    opacity: 1;
    visibility: visible;
  }
  90% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0.1%;
    visibility: hidden;
  }
}
@keyframes loading_logo {
  0% {
    transform: scale(1.05);
  }
  16% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
/*================================
loading animation
=================================*/
#loading {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #E8EAEA;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000;
}
#loading .contents, #loading .video, #loading video {
  width: 100%;
  height: 100%;
}
#loading .logo {
  width: 46.6666666667vw;
}
@media screen and (min-width: 960px) {
  #loading .logo {
    width: 13.8888888889vw;
    max-width: 200px;
  }
}

.show #loading {
  animation: loading 6s forwards;
}
.show #loading .logo {
  animation: loading_logo 6s forwards;
}

/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

			RESET

----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, legend, input, label, textarea, p, blockquote, table, caption, tbody, tfoot, thead, th, td, option, figure, figcaption {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset, img, abbr, acronym {
  border: 0;
}

ol, ul {
  list-style: none;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
}

a, ins, del {
  text-decoration: none;
}

a {
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

img {
  display: inline-block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border: 0;
  margin: 0;
  vertical-align: bottom;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

object, embed, th, td {
  vertical-align: top;
}

input, textarea, select {
  font-size: 1em;
}

picture, figure, audio {
  display: inline-block;
}

audio {
  max-width: 100%;
}

.clf::after {
  content: "";
  display: block;
  clear: both;
}

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

/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

			COMMON

----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/
* {
  box-sizing: border-box;
  outline: none;
  font-family: "Noto Sans JP", serif;
  font-size: 4vw;
  font-weight: 600;
}
@media screen and (min-width: 960px) {
  * {
    font-size: 1.25vw;
  }
}
@media screen and (min-width: 1440px) {
  * {
    font-size: 18px;
  }
}

body, a {
  line-height: 1.5;
  color: #0036B6;
}

html,
body {
  overflow-x: clip;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 0;
  background: #fff;
  position: relative;
  opacity: 0.1%;
}

body.show {
  opacity: 1;
  transition: 1s;
}

main {
  flex: 1;
}

@media screen and (min-width: 960px) {
  .wrap {
    max-width: 1920px;
    margin: 0 auto;
  }
}

.en, .en * {
  font-family: "Kanit", serif;
  font-weight: 400;
}

.text {
  line-height: 2;
}
@media screen and (min-width: 960px) {
  .text {
    line-height: 2.5;
  }
}

@media screen and (min-width: 960px) {
  .mb {
    display: none;
  }
}

.pc {
  display: none;
}
@media screen and (min-width: 960px) {
  .pc {
    display: block;
  }
}

/*================================
page top
=================================*/
.pagetop {
  width: 10.6666666667vw;
  height: 10.6666666667vw;
  background: #fff;
  border: 2px solid #0036B6;
  border-radius: 50%;
  position: fixed;
  bottom: 6vw;
  right: 6vw;
  z-index: 100;
  cursor: pointer;
}
@media screen and (min-width: 960px) {
  .pagetop {
    width: 4.1666666667vw;
    max-width: 60px;
    height: 4.1666666667vw;
    max-height: 60px;
    bottom: 3.8194444444vw;
    right: 3.8194444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .pagetop {
    bottom: 55px;
    right: 55px;
  }
}
.pagetop__line {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.pagetop__line:before {
  content: "";
  width: 0.6em;
  height: 0.6em;
  border: 2px solid #0036B6;
  border-left: 0;
  border-bottom: 0;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%) rotate3d(0, 0, 1, -45deg);
}

/*================================
contents title
=================================*/
.contents_title_wrap .ja span, .page_title_wrap .ja span {
  font-size: 5.3333333333vw;
  line-height: 1.25;
  font-weight: 700;
}
@media screen and (min-width: 960px) {
  .contents_title_wrap .ja span, .page_title_wrap .ja span {
    font-size: 2.5vw;
  }
}
@media screen and (min-width: 1440px) {
  .contents_title_wrap .ja span, .page_title_wrap .ja span {
    font-size: 36px;
  }
}
.contents_title_wrap .ja span.title_text, .page_title_wrap .ja span.title_text {
  display: inline-block;
  background: linear-gradient(45deg, #0037B0 0%, #2861DC 51.5%, #00A6DB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contents_title_wrap .ja span.point, .page_title_wrap .ja span.point {
  font-feature-settings: "palt";
}

.contents_title_wrap .en {
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 960px) {
  .contents_title_wrap .en {
    font-size: 1.9444444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .contents_title_wrap .en {
    font-size: 28px;
  }
}

.page_title_wrap .en {
  font-size: 3.2vw;
}
@media screen and (min-width: 960px) {
  .page_title_wrap .en {
    font-size: 1.6666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .page_title_wrap .en {
    font-size: 24px;
  }
}

/*================================
link btn
=================================*/
.link_btn {
  width: 53.6vw;
  margin: 0 auto;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .link_btn {
    width: 10.4861111111vw;
    max-width: 151px;
    margin: 0;
  }
}
.link_btn a, .link_btn p {
  display: block;
  width: 100%;
  padding: 3.2vw 0 3.7333333333vw;
  line-height: 1;
  color: #0036B6;
  background: #fff;
  border: 1px solid #0036B6;
  border-radius: 0.5333333333vw;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  .link_btn a, .link_btn p {
    padding: 0.6944444444vw 0 0.9722222222vw;
    border-radius: 0.2777777778vw;
    transition: all 0.3s;
  }
}
@media screen and (min-width: 1440px) {
  .link_btn a, .link_btn p {
    padding: 10px 0 14px;
    border-radius: 4px;
  }
}
@media screen and (min-width: 960px) {
  .link_btn a:before, .link_btn p:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #0036B6;
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: right top;
    transform: scale(0, 1);
    transition: transform 0.3s;
  }
}
.link_btn a span, .link_btn p span {
  font-size: 4.2666666667vw;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 960px) {
  .link_btn a span, .link_btn p span {
    font-size: 1.1111111111vw;
    transition: all 0.3s;
  }
}
@media screen and (min-width: 1440px) {
  .link_btn a span, .link_btn p span {
    font-size: 16px;
  }
}
@media screen and (min-width: 960px) {
  .link_btn a:hover {
    background: #0036B6;
  }
  .link_btn a:hover:before {
    transform-origin: left top;
    transform: scale(1, 1);
  }
  .link_btn a:hover span {
    color: #fff;
  }
}

/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

			header / footer

----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/
/*================================
header
=================================*/
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 105px;
  padding: 0 4vw;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
}
@media screen and (min-width: 960px) {
  header {
    height: 8.75vw;
    padding: 0 3.75vw;
  }
}
@media screen and (min-width: 1440px) {
  header {
    height: 126px;
    padding: 0 54px;
  }
}
@media screen and (min-width: 960px) {
  header .pickup_navi {
    display: flex;
    align-items: center;
  }
}
header .pickup_navi .logo {
  width: 225px;
}
@media screen and (min-width: 960px) {
  header .pickup_navi .logo {
    width: 15.625vw;
    max-width: 225px;
    margin-right: 3.125vw;
  }
}
@media screen and (min-width: 1440px) {
  header .pickup_navi .logo {
    margin-right: 45px;
  }
}
header .pickup_navi .logo a {
  width: 100%;
}
@media screen and (min-width: 960px) {
  header .pickup_navi .logo a:hover {
    opacity: 0.6;
  }
}
header .pickup_navi nav {
  display: none;
}
@media screen and (min-width: 960px) {
  header .pickup_navi nav {
    display: block;
  }
}
header .pickup_navi nav > ul {
  display: flex;
}
@media screen and (min-width: 960px) {
  header .pickup_navi nav > ul > li {
    margin-right: 2.7777777778vw;
    position: relative;
  }
}
@media screen and (min-width: 1440px) {
  header .pickup_navi nav > ul > li {
    margin-right: 40px;
  }
}
header .pickup_navi nav > ul > li:last-child {
  margin-right: 0;
}
@media screen and (min-width: 960px) {
  header .pickup_navi nav > ul > li a {
    position: relative;
    z-index: 1;
  }
}
header .pickup_navi nav > ul > li a span {
  display: block;
}
@media screen and (min-width: 960px) {
  header .pickup_navi nav > ul > li a span.ja {
    font-size: 0.9722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  header .pickup_navi nav > ul > li a span.ja {
    font-size: 14px;
  }
}
@media screen and (min-width: 960px) {
  header .pickup_navi nav > ul > li a span.en {
    font-size: 0.7638888889vw;
  }
}
@media screen and (min-width: 1440px) {
  header .pickup_navi nav > ul > li a span.en {
    font-size: 11px;
  }
}
@media screen and (min-width: 960px) {
  header .pickup_navi nav > ul > li a:hover {
    opacity: 0.6;
  }
}
@media screen and (min-width: 960px) {
  header .pickup_navi nav > ul > li .under_navi_wrap {
    padding-top: 1.3888888889vw;
    position: absolute;
    top: 2.5694444444vw;
    left: 0;
    z-index: 0;
    opacity: 0.1%;
    visibility: hidden;
    transition: all 0.6s;
  }
}
@media screen and (min-width: 1440px) {
  header .pickup_navi nav > ul > li .under_navi_wrap {
    padding-top: 20px;
    font-size: 11px;
    top: 37px;
  }
}
header .pickup_navi nav > ul > li .under_navi_wrap * {
  color: #fff;
}
@media screen and (min-width: 960px) {
  header .pickup_navi nav > ul > li .under_navi_wrap .navi_list {
    width: 21.9444444444vw;
    max-width: 316px;
    padding: 2.9166666667vw 2.0833333333vw;
    border: 1px solid #fff;
    border-radius: 0.2777777778vw;
    position: relative;
    transform: scale(1, 0);
    transform-origin: top left;
    transition: all 0.6s;
    overflow: hidden;
  }
}
@media screen and (min-width: 1440px) {
  header .pickup_navi nav > ul > li .under_navi_wrap .navi_list {
    padding: 42px 30px;
    border-radius: 4px;
  }
}
@media screen and (min-width: 960px) {
  header .pickup_navi nav > ul > li .under_navi_wrap .navi_list:before {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #0037B0 0%, #2861DC 51.5%, #00A6DB 100%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.95;
  }
}
@media screen and (min-width: 960px) {
  header .pickup_navi nav > ul > li .under_navi_wrap .navi_list .navi_title_wrap, header .pickup_navi nav > ul > li .under_navi_wrap .navi_list ul {
    position: relative;
    z-index: 1;
  }
}
@media screen and (min-width: 960px) {
  header .pickup_navi nav > ul > li .under_navi_wrap .navi_list .navi_title_wrap {
    margin-bottom: 0.9722222222vw;
    padding-bottom: 10px;
    border-bottom: 1px solid #fff;
  }
}
@media screen and (min-width: 1440px) {
  header .pickup_navi nav > ul > li .under_navi_wrap .navi_list .navi_title_wrap {
    margin-bottom: 14px;
    padding-bottom: 10px;
  }
}
@media screen and (min-width: 960px) {
  header .pickup_navi nav > ul > li .under_navi_wrap .navi_list .navi_title_wrap a:hover {
    opacity: 0.6;
  }
}
@media screen and (min-width: 960px) {
  header .pickup_navi nav > ul > li .under_navi_wrap .navi_list .navi_title_wrap a .navi_title {
    display: inline-block;
    padding-right: 2.0833333333vw;
    position: relative;
  }
}
@media screen and (min-width: 960px) {
  header .pickup_navi nav > ul > li .under_navi_wrap .navi_list .navi_title_wrap a .navi_title {
    padding-right: 30px;
  }
}
@media screen and (min-width: 960px) {
  header .pickup_navi nav > ul > li .under_navi_wrap .navi_list .navi_title_wrap a .navi_title .ja {
    font-size: 1.25vw;
  }
}
@media screen and (min-width: 1440px) {
  header .pickup_navi nav > ul > li .under_navi_wrap .navi_list .navi_title_wrap a .navi_title .ja {
    font-size: 18px;
  }
}
@media screen and (min-width: 960px) {
  header .pickup_navi nav > ul > li .under_navi_wrap .navi_list .navi_title_wrap a .navi_title .en {
    font-size: 0.9722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  header .pickup_navi nav > ul > li .under_navi_wrap .navi_list .navi_title_wrap a .navi_title .en {
    font-size: 14px;
  }
}
@media screen and (min-width: 960px) {
  header .pickup_navi nav > ul > li .under_navi_wrap .navi_list .navi_title_wrap a .navi_title .arrow {
    width: 1.4583333333vw;
    max-width: 21px;
    height: 1.4583333333vw;
    max-height: 21px;
    border: 1px solid #fff;
    border-radius: 50%;
    position: absolute;
    top: 0.2777777778vw;
    right: 0;
  }
}
@media screen and (min-width: 1440px) {
  header .pickup_navi nav > ul > li .under_navi_wrap .navi_list .navi_title_wrap a .navi_title .arrow {
    font-size: 11px;
    top: 4px;
  }
}
@media screen and (min-width: 960px) {
  header .pickup_navi nav > ul > li .under_navi_wrap .navi_list .navi_title_wrap a .navi_title .arrow span {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
  }
}
@media screen and (min-width: 960px) {
  header .pickup_navi nav > ul > li .under_navi_wrap .navi_list .navi_title_wrap a .navi_title .arrow span:before {
    content: "";
    width: 0.2em;
    height: 0.2em;
    border: 1px solid #fff;
    border-left: 0;
    border-bottom: 0;
    position: absolute;
    top: 50%;
    left: 44%;
    transform: translate(-50%, -50%) rotate3d(0, 0, 1, 45deg);
    transition: all 0.4s;
  }
}
@media screen and (min-width: 960px) {
  header .pickup_navi nav > ul > li .under_navi_wrap .navi_list ul li {
    margin-bottom: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  header .pickup_navi nav > ul > li .under_navi_wrap .navi_list ul li {
    margin-bottom: 16px;
  }
}
header .pickup_navi nav > ul > li .under_navi_wrap .navi_list ul li:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 960px) {
  header .pickup_navi nav > ul > li .under_navi_wrap .navi_list ul li a {
    font-size: 0.9722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  header .pickup_navi nav > ul > li .under_navi_wrap .navi_list ul li a {
    font-size: 14px;
  }
}
header .pickup_navi nav > ul > li:hover .under_navi_wrap {
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 960px) {
  header .pickup_navi nav > ul > li:hover .under_navi_wrap .navi_list {
    transform: scale(1, 1);
  }
}

/*================================
ハンバーガーメニュー
=================================*/
.btn_trigger {
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
}

.hidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}

.btn_trigger_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 38px;
  z-index: 10000;
}
@media screen and (min-width: 960px) {
  .btn_trigger_wrap {
    width: 3.4722222222vw;
    max-width: 50px;
    height: 3.3333333333vw;
    max-height: 48px;
  }
}
.btn_trigger_wrap button, .btn_trigger_wrap .line_wrap, .btn_trigger_wrap .line, .btn_trigger_wrap svg {
  width: 100%;
  height: 100%;
}
.btn_trigger_wrap .line_wrap {
  position: relative;
}
.btn_trigger_wrap .line_wrap .line {
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.4s;
}
@media screen and (min-width: 960px) {
  .btn_trigger_wrap:hover .line_wrap .line:nth-child(1) {
    animation: fadein 0.6s forwards;
  }
}
@media screen and (min-width: 960px) {
  .btn_trigger_wrap:hover .line_wrap .line:nth-child(2) {
    animation: fadein 0.6s 0.05s forwards;
  }
}
@media screen and (min-width: 960px) {
  .btn_trigger_wrap:hover .line_wrap .line:nth-child(3) {
    animation: fadein 0.6s 0.1s forwards;
  }
}

/*================================
グローバルナビゲーション
=================================*/
.navi_open_wrap {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(101%);
  z-index: 10001;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  transition: all 0.6s;
}
.navi_open_wrap::-webkit-scrollbar {
  display: none;
}
.navi_open_wrap.open {
  transform: translateX(0);
}
.navi_open_wrap .close_bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  cursor: pointer;
}
.navi_open_wrap * {
  color: #fff;
}
.navi_open_wrap .inner {
  width: 94vw;
  margin-left: auto;
  padding: 26.6666666667vw 0 8vw;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 960px) {
  .navi_open_wrap .inner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 83.3333333333vw;
    height: 100%;
    min-height: 75vw;
    padding: 0;
  }
}
@media screen and (min-width: 1440px) {
  .navi_open_wrap .inner {
    min-height: 1080px;
  }
}
.navi_open_wrap .inner:before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #0037B0 0%, #2861DC 51.5%, #00A6DB 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.95;
}
.navi_open_wrap .inner .close_btn {
  width: 6.9333333333vw;
  height: 5.6vw;
  position: absolute;
  top: 5.6vw;
  right: 5.6vw;
  cursor: pointer;
}
@media screen and (min-width: 960px) {
  .navi_open_wrap .inner .close_btn {
    width: 3.6111111111vw;
    max-width: 52px;
    height: 2.9166666667vw;
    max-height: 42px;
    top: 2.9166666667vw;
    right: 2.9166666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .navi_open_wrap .inner .close_btn {
    top: 42px;
    right: 42px;
  }
}
.navi_open_wrap .inner .close_btn span {
  display: inline-block;
  width: 100%;
  height: 1px;
  background: #fff;
  border-radius: 0.5333333333vw;
  position: absolute;
  top: 50%;
}
@media screen and (min-width: 960px) {
  .navi_open_wrap .inner .close_btn span {
    border-radius: 0.2777777778vw;
    transition: all 0.4s;
  }
}
@media screen and (min-width: 1440px) {
  .navi_open_wrap .inner .close_btn span {
    border-radius: 4px;
  }
}
.navi_open_wrap .inner .close_btn span:nth-child(1) {
  transform: translateY(-50%) rotate(35deg);
}
.navi_open_wrap .inner .close_btn span:nth-child(2) {
  transform: translateY(-50%) rotate(-35deg);
}
@media screen and (min-width: 960px) {
  .navi_open_wrap .inner .close_btn:hover span:nth-child(1) {
    transform: translateY(-50%) rotate(25deg);
  }
}
@media screen and (min-width: 960px) {
  .navi_open_wrap .inner .close_btn:hover span:nth-child(2) {
    transform: translateY(-50%) rotate(-25deg);
  }
}
.navi_open_wrap .inner nav {
  padding: 0 6vw;
}
@media screen and (min-width: 960px) {
  .navi_open_wrap .inner nav {
    width: 59.8611111111vw;
    max-width: 862px;
    margin: 0 auto;
    padding: 0;
  }
}
.navi_open_wrap .inner nav .list {
  margin-bottom: 10.6666666667vw;
}
@media screen and (min-width: 960px) {
  .navi_open_wrap .inner nav .list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 5.5555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .navi_open_wrap .inner nav .list {
    margin-bottom: 80px;
  }
}
@media screen and (min-width: 960px) {
  .navi_open_wrap .inner nav .list > ul {
    width: 47%;
  }
}
.navi_open_wrap .inner nav .list > ul > li {
  margin-bottom: 7.2vw;
  padding-bottom: 3.2vw;
  border-bottom: 1px solid #fff;
  position: relative;
}
@media screen and (min-width: 960px) {
  .navi_open_wrap .inner nav .list > ul > li {
    margin-bottom: 3.75vw;
    padding-bottom: 0;
    border-bottom: none;
  }
}
@media screen and (min-width: 1440px) {
  .navi_open_wrap .inner nav .list > ul > li {
    margin-bottom: 54px;
  }
}
.navi_open_wrap .inner nav .list > ul > li > a {
  width: 88%;
  position: relative;
}
@media screen and (min-width: 960px) {
  .navi_open_wrap .inner nav .list > ul > li > a {
    width: 100%;
    padding-bottom: 1.25vw;
    border-bottom: 1px solid #fff;
  }
}
@media screen and (min-width: 1440px) {
  .navi_open_wrap .inner nav .list > ul > li > a {
    padding-bottom: 18px;
  }
}
.navi_open_wrap .inner nav .list > ul > li .arrow {
  width: 8vw;
  height: 8vw;
  border: 2px solid #fff;
  border-radius: 50%;
  position: absolute;
  top: 1.3333333333vw;
  right: 0;
}
@media screen and (min-width: 960px) {
  .navi_open_wrap .inner nav .list > ul > li .arrow {
    width: 1.5277777778vw;
    max-width: 22px;
    height: 1.5277777778vw;
    max-height: 22px;
    border-width: 1px;
    top: 0.4861111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .navi_open_wrap .inner nav .list > ul > li .arrow {
    top: 7px;
  }
}
.navi_open_wrap .inner nav .list > ul > li .arrow span {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.navi_open_wrap .inner nav .list > ul > li .arrow span:before {
  content: "";
  position: absolute;
}
.navi_open_wrap .inner nav .list > ul > li .arrow.mb {
  cursor: pointer;
}
.navi_open_wrap .inner nav .list > ul > li .arrow.mb span:before {
  width: 0.6em;
  height: 0.6em;
  border: 2px solid #fff;
  border-left: 0;
  border-bottom: 0;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%) rotate3d(0, 0, 1, 135deg);
  transition: all 0.4s;
}
.navi_open_wrap .inner nav .list > ul > li .arrow.pc span:before {
  width: 0.2em;
  height: 0.2em;
  border: 1px solid #fff;
  border-left: 0;
  border-bottom: 0;
  top: 50%;
  left: 45%;
  transform: translate(-50%, -50%) rotate3d(0, 0, 1, 45deg);
  transition: all 0.4s;
}
.navi_open_wrap .inner nav .list > ul > li.open .arrow.mb span:before {
  top: 58%;
  transform: translate(-50%, -50%) rotate3d(0, 0, 1, -45deg);
}
.navi_open_wrap .inner nav .list > ul > li .sub_nav {
  display: none;
  padding-top: 3.2vw;
}
@media screen and (min-width: 960px) {
  .navi_open_wrap .inner nav .list > ul > li .sub_nav {
    display: block;
    padding-top: 1.25vw;
  }
}
@media screen and (min-width: 1440px) {
  .navi_open_wrap .inner nav .list > ul > li .sub_nav {
    padding-top: 18px;
  }
}
.navi_open_wrap .inner nav .list > ul > li .sub_nav li {
  margin-bottom: 3.2vw;
}
@media screen and (min-width: 960px) {
  .navi_open_wrap .inner nav .list > ul > li .sub_nav li {
    margin-bottom: 1.25vw;
  }
}
@media screen and (min-width: 1440px) {
  .navi_open_wrap .inner nav .list > ul > li .sub_nav li {
    margin-bottom: 18px;
  }
}
.navi_open_wrap .inner nav .list ul li:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 960px) {
  .navi_open_wrap .inner nav .list ul li a:hover {
    opacity: 0.6;
  }
}
.navi_open_wrap .inner nav .list ul li a .navi_title {
  display: inline-block;
}
@media screen and (min-width: 960px) {
  .navi_open_wrap .inner nav .list ul li a .navi_title {
    padding-right: 2.7777777778vw;
    position: relative;
  }
}
@media screen and (min-width: 1440px) {
  .navi_open_wrap .inner nav .list ul li a .navi_title {
    padding-right: 40px;
  }
}
.navi_open_wrap .inner nav .list ul li a .navi_title .ja {
  font-size: 4.2666666667vw;
}
@media screen and (min-width: 960px) {
  .navi_open_wrap .inner nav .list ul li a .navi_title .ja {
    font-size: 1.5277777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .navi_open_wrap .inner nav .list ul li a .navi_title .ja {
    font-size: 22px;
  }
}
.navi_open_wrap .inner nav .list ul li a .navi_title .en {
  font-size: 3.3333333333vw;
}
@media screen and (min-width: 960px) {
  .navi_open_wrap .inner nav .list ul li a .navi_title .en {
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .navi_open_wrap .inner nav .list ul li a .navi_title .en {
    font-size: 16px;
  }
}
@media screen and (min-width: 960px) {
  .navi_open_wrap .inner nav .other {
    display: flex;
  }
}
.navi_open_wrap .inner nav .other .recruit_link_wrap {
  margin-bottom: 6.6666666667vw;
}
@media screen and (min-width: 960px) {
  .navi_open_wrap .inner nav .other .recruit_link_wrap {
    margin-bottom: 0;
    margin-right: 4.1666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .navi_open_wrap .inner nav .other .recruit_link_wrap {
    margin-right: 60px;
  }
}
.navi_open_wrap .inner nav .other .recruit_link_wrap .recruit_link {
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 960px) {
  .navi_open_wrap .inner nav .other .recruit_link_wrap .recruit_link {
    margin-bottom: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .navi_open_wrap .inner nav .other .recruit_link_wrap .recruit_link {
    margin-bottom: 20px;
  }
}
.navi_open_wrap .inner nav .other .recruit_link_wrap .recruit_link * {
  line-height: 1;
  color: #0036B6;
}
.navi_open_wrap .inner nav .other .recruit_link_wrap .recruit_link a {
  display: flex;
  align-items: center;
  padding: 4.8vw 3.4666666667vw 4.8vw 6.1333333333vw;
  background: #fff;
  border-radius: 0.5333333333vw;
}
@media screen and (min-width: 960px) {
  .navi_open_wrap .inner nav .other .recruit_link_wrap .recruit_link a {
    padding: 1.8055555556vw 2.7777777778vw 1.6666666667vw 6.25vw;
    border-radius: 0.2777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .navi_open_wrap .inner nav .other .recruit_link_wrap .recruit_link a {
    padding: 26px 40px 24px 90px;
    border-radius: 4px;
  }
}
@media screen and (min-width: 960px) {
  .navi_open_wrap .inner nav .other .recruit_link_wrap .recruit_link a:hover {
    opacity: 0.6;
  }
}
.navi_open_wrap .inner nav .other .recruit_link_wrap .recruit_link a .link_text_wrap {
  display: flex;
  align-items: center;
  margin-right: 2.1333333333vw;
}
@media screen and (min-width: 960px) {
  .navi_open_wrap .inner nav .other .recruit_link_wrap .recruit_link a .link_text_wrap {
    display: block;
    margin-right: 1.6666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .navi_open_wrap .inner nav .other .recruit_link_wrap .recruit_link a .link_text_wrap {
    margin-right: 24px;
  }
}
.navi_open_wrap .inner nav .other .recruit_link_wrap .recruit_link a .link_text_wrap .ja {
  margin-right: 1.6vw;
  font-size: 4vw;
}
@media screen and (min-width: 960px) {
  .navi_open_wrap .inner nav .other .recruit_link_wrap .recruit_link a .link_text_wrap .ja {
    margin-right: 0;
    margin-bottom: 0.3472222222vw;
    font-size: 1.8055555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .navi_open_wrap .inner nav .other .recruit_link_wrap .recruit_link a .link_text_wrap .ja {
    margin-bottom: 5px;
    font-size: 26px;
  }
}
.navi_open_wrap .inner nav .other .recruit_link_wrap .recruit_link a .link_text_wrap .en {
  font-size: 3.4666666667vw;
}
@media screen and (min-width: 960px) {
  .navi_open_wrap .inner nav .other .recruit_link_wrap .recruit_link a .link_text_wrap .en {
    font-size: 1.25vw;
  }
}
@media screen and (min-width: 1440px) {
  .navi_open_wrap .inner nav .other .recruit_link_wrap .recruit_link a .link_text_wrap .en {
    font-size: 18px;
  }
}
.navi_open_wrap .inner nav .other .recruit_link_wrap .recruit_link a .arrow {
  display: block;
  width: 4vw;
  height: 4vw;
  border: 2px solid #0036B6;
  border-radius: 50%;
  position: relative;
}
@media screen and (min-width: 960px) {
  .navi_open_wrap .inner nav .other .recruit_link_wrap .recruit_link a .arrow {
    width: 2.2222222222vw;
    max-width: 32px;
    height: 2.2222222222vw;
    max-height: 32px;
  }
}
.navi_open_wrap .inner nav .other .recruit_link_wrap .recruit_link a .arrow:before {
  content: "";
  width: 0.2em;
  height: 0.2em;
  border: 2px solid #0036B6;
  border-left: 0;
  border-bottom: 0;
  position: absolute;
  top: 50%;
  left: 45%;
  transform: translate(-50%, -50%) rotate3d(0, 0, 1, 45deg);
}
@media screen and (min-width: 960px) {
  .navi_open_wrap .inner nav .other .recruit_link_wrap .recruit_link a .arrow:before {
    width: 0.3em;
    height: 0.3em;
  }
}
.navi_open_wrap .inner nav .other .recruit_link_wrap .sns_link {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 6.6666666667vw;
}
@media screen and (min-width: 960px) {
  .navi_open_wrap .inner nav .other .recruit_link_wrap .sns_link {
    margin-bottom: 0;
    order: 2;
  }
}
.navi_open_wrap .inner nav .other .recruit_link_wrap .sns_link .sns_text {
  font-size: 3.7333333333vw;
  margin-right: 2.6666666667vw;
  line-height: 1;
}
@media screen and (min-width: 960px) {
  .navi_open_wrap .inner nav .other .recruit_link_wrap .sns_link .sns_text {
    margin-right: 1.3888888889vw;
    font-size: 1.5277777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .navi_open_wrap .inner nav .other .recruit_link_wrap .sns_link .sns_text {
    margin-right: 20px;
    font-size: 22px;
  }
}
.navi_open_wrap .inner nav .other .recruit_link_wrap .sns_link .sns_icon {
  margin-right: 3.3333333333vw;
}
@media screen and (min-width: 960px) {
  .navi_open_wrap .inner nav .other .recruit_link_wrap .sns_link .sns_icon {
    margin-right: 1.7361111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .navi_open_wrap .inner nav .other .recruit_link_wrap .sns_link .sns_icon {
    margin-right: 25px;
  }
}
.navi_open_wrap .inner nav .other .recruit_link_wrap .sns_link .sns_icon.facebook_icon {
  width: 3.2vw;
}
@media screen and (min-width: 960px) {
  .navi_open_wrap .inner nav .other .recruit_link_wrap .sns_link .sns_icon.facebook_icon {
    width: 1.3888888889vw;
    max-width: 20px;
  }
}
.navi_open_wrap .inner nav .other .recruit_link_wrap .sns_link .sns_icon.x_icon {
  width: 6vw;
}
@media screen and (min-width: 960px) {
  .navi_open_wrap .inner nav .other .recruit_link_wrap .sns_link .sns_icon.x_icon {
    width: 2.5vw;
    max-width: 36px;
  }
}
.navi_open_wrap .inner nav .other .recruit_link_wrap .sns_link .sns_icon.instagram_icon {
  width: 6.1333333333vw;
}
@media screen and (min-width: 960px) {
  .navi_open_wrap .inner nav .other .recruit_link_wrap .sns_link .sns_icon.instagram_icon {
    width: 2.5vw;
    max-width: 36px;
  }
}
.navi_open_wrap .inner nav .other .recruit_link_wrap .sns_link .sns_icon a {
  display: block;
}
@media screen and (min-width: 960px) {
  .navi_open_wrap .inner nav .other .recruit_link_wrap .sns_link .sns_icon a:hover {
    opacity: 0.6;
  }
}
.navi_open_wrap .inner nav .other .recruit_link_wrap .sns_link .sns_icon a img {
  display: block;
}
@media screen and (min-width: 960px) {
  .navi_open_wrap .inner nav .other .other_link {
    display: flex;
    flex-direction: column;
  }
}
.navi_open_wrap .inner nav .other .other_link .policy_link_list {
  text-align: center;
}
@media screen and (min-width: 960px) {
  .navi_open_wrap .inner nav .other .other_link .policy_link_list {
    text-align: left;
    order: 1;
  }
}
.navi_open_wrap .inner nav .other .other_link .policy_link_list li {
  margin-bottom: 2.6666666667vw;
}
@media screen and (min-width: 960px) {
  .navi_open_wrap .inner nav .other .other_link .policy_link_list li {
    margin-bottom: 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .navi_open_wrap .inner nav .other .other_link .policy_link_list li {
    margin-bottom: 10px;
  }
}
.navi_open_wrap .inner nav .other .other_link .policy_link_list li:last-child {
  margin-bottom: 0;
}
.navi_open_wrap .inner nav .other .other_link .policy_link_list li a {
  display: block;
  font-size: 3.2vw;
  font-weight: 500;
}
@media screen and (min-width: 960px) {
  .navi_open_wrap .inner nav .other .other_link .policy_link_list li a {
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .navi_open_wrap .inner nav .other .other_link .policy_link_list li a {
    font-size: 16px;
  }
}
@media screen and (min-width: 960px) {
  .navi_open_wrap .inner nav .other .other_link .policy_link_list li a:hover {
    opacity: 0.6;
  }
}

/*================================
footer
=================================*/
footer {
  padding: 10vw 6vw 4vw;
  background: linear-gradient(90deg, #0037B0 0%, #2861DC 51.5%, #00A6DB 100%);
}
@media screen and (min-width: 960px) {
  footer {
    padding: 10.4166666667vw 0 0.9375vw;
  }
}
@media screen and (min-width: 1920px) {
  footer {
    padding: 200px 0 18px;
  }
}
footer * {
  color: #fff;
}
footer .inner {
  margin-bottom: 17.3333333333vw;
}
@media screen and (min-width: 960px) {
  footer .inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 77.5vw;
    max-width: 1116px;
    margin: 0 auto 9.375vw;
  }
}
@media screen and (min-width: 1920px) {
  footer .inner {
    margin-bottom: 180px;
  }
}
footer .inner .footer_nav {
  margin-bottom: 12.6666666667vw;
}
@media screen and (min-width: 960px) {
  footer .inner .footer_nav {
    width: 34.5833333333vw;
    max-width: 498px;
    margin-bottom: 0;
    order: 2;
  }
}
footer .inner .footer_nav > ul {
  margin-bottom: 6.6666666667vw;
}
@media screen and (min-width: 960px) {
  footer .inner .footer_nav > ul {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1.7361111111vw;
  }
}
@media screen and (min-width: 1440px) {
  footer .inner .footer_nav > ul {
    margin-bottom: 25px;
  }
}
footer .inner .footer_nav > ul > li {
  padding: 3.2vw 0;
  border-bottom: 1px solid #fff;
  position: relative;
}
@media screen and (min-width: 960px) {
  footer .inner .footer_nav > ul > li {
    margin-bottom: 1.9444444444vw;
    padding: 0;
    border: unset;
  }
}
@media screen and (min-width: 1440px) {
  footer .inner .footer_nav > ul > li {
    margin-bottom: 28px;
  }
}
@media screen and (min-width: 960px) {
  footer .inner .footer_nav > ul > li:nth-child(1), footer .inner .footer_nav > ul > li:nth-child(2), footer .inner .footer_nav > ul > li:nth-child(3), footer .inner .footer_nav > ul > li:nth-child(5), footer .inner .footer_nav > ul > li:nth-child(6) {
    margin-right: 2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  footer .inner .footer_nav > ul > li:nth-child(1), footer .inner .footer_nav > ul > li:nth-child(2), footer .inner .footer_nav > ul > li:nth-child(3), footer .inner .footer_nav > ul > li:nth-child(5), footer .inner .footer_nav > ul > li:nth-child(6) {
    margin-right: 40px;
  }
}
@media screen and (min-width: 960px) {
  footer .inner .footer_nav > ul > li:nth-child(5), footer .inner .footer_nav > ul > li:nth-child(6), footer .inner .footer_nav > ul > li:nth-child(7) {
    margin-bottom: 0;
  }
}
footer .inner .footer_nav > ul > li:last-child {
  margin-bottom: 0;
}
footer .inner .footer_nav > ul > li > a {
  width: 88%;
}
@media screen and (min-width: 960px) {
  footer .inner .footer_nav > ul > li > a {
    width: 100%;
    padding-right: 1.6666666667vw;
    position: relative;
  }
}
@media screen and (min-width: 1440px) {
  footer .inner .footer_nav > ul > li > a {
    padding-right: 24px;
  }
}
@media screen and (min-width: 960px) {
  footer .inner .footer_nav > ul > li > a:hover {
    opacity: 0.6;
  }
}
footer .inner .footer_nav > ul > li > a .ja {
  font-size: 4.2666666667vw;
}
@media screen and (min-width: 960px) {
  footer .inner .footer_nav > ul > li > a .ja {
    font-size: 0.9722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  footer .inner .footer_nav > ul > li > a .ja {
    font-size: 14px;
  }
}
footer .inner .footer_nav > ul > li > a .en {
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 960px) {
  footer .inner .footer_nav > ul > li > a .en {
    font-size: 0.7638888889vw;
  }
}
@media screen and (min-width: 1440px) {
  footer .inner .footer_nav > ul > li > a .en {
    font-size: 11px;
  }
}
footer .inner .footer_nav > ul > li .arrow {
  width: 8vw;
  height: 8vw;
  border: 2px solid #fff;
  border-radius: 50%;
  position: absolute;
  top: 4vw;
  right: 0;
}
@media screen and (min-width: 960px) {
  footer .inner .footer_nav > ul > li .arrow {
    width: 1.1111111111vw;
    max-width: 16px;
    height: 1.1111111111vw;
    max-height: 16px;
    border-width: 1px;
    top: 0.2083333333vw;
  }
}
@media screen and (min-width: 1440px) {
  footer .inner .footer_nav > ul > li .arrow {
    font-size: 11px;
    top: 3px;
  }
}
footer .inner .footer_nav > ul > li .arrow span {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
footer .inner .footer_nav > ul > li .arrow span:before {
  content: "";
  position: absolute;
}
footer .inner .footer_nav > ul > li .arrow.mb {
  cursor: pointer;
}
footer .inner .footer_nav > ul > li .arrow.mb span:before {
  width: 0.6em;
  height: 0.6em;
  border: 2px solid #fff;
  border-left: 0;
  border-bottom: 0;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%) rotate3d(0, 0, 1, 135deg);
  transition: all 0.4s;
}
footer .inner .footer_nav > ul > li .arrow.pc span:before {
  width: 0.2em;
  height: 0.2em;
  border: 1px solid #fff;
  border-left: 0;
  border-bottom: 0;
  top: 50%;
  left: 44%;
  transform: translate(-50%, -50%) rotate3d(0, 0, 1, 45deg);
  transition: all 0.4s;
}
footer .inner .footer_nav > ul > li.open .arrow.mb span:before {
  top: 58%;
  transform: translate(-50%, -50%) rotate3d(0, 0, 1, -45deg);
}
footer .inner .footer_nav > ul > li .sub_nav {
  display: none;
  padding-top: 4vw;
}
footer .inner .footer_nav > ul > li .sub_nav li {
  margin-bottom: 1.3333333333vw;
}
footer .inner .footer_nav > ul > li .sub_nav li:last-child {
  margin-bottom: 0;
}
footer .inner .footer_nav > ul > li .sub_nav li a {
  font-size: 3.7333333333vw;
  font-weight: 400;
}
@media screen and (min-width: 960px) {
  footer .inner .footer_nav .other .other_top_link {
    display: flex;
    align-items: center;
  }
}
footer .inner .footer_nav .other .other_top_link .recruit_link {
  margin-bottom: 12vw;
}
@media screen and (min-width: 960px) {
  footer .inner .footer_nav .other .other_top_link .recruit_link {
    margin-bottom: 0;
    margin-right: 1.9444444444vw;
  }
}
@media screen and (min-width: 1440px) {
  footer .inner .footer_nav .other .other_top_link .recruit_link {
    margin-right: 28px;
  }
}
footer .inner .footer_nav .other .other_top_link .recruit_link * {
  line-height: 1;
  color: #0036B6;
}
footer .inner .footer_nav .other .other_top_link .recruit_link a {
  display: flex;
  align-items: center;
  padding: 4.8vw 3.4666666667vw 4.8vw 7.4666666667vw;
  background: #fff;
  border-radius: 0.5333333333vw;
}
@media screen and (min-width: 960px) {
  footer .inner .footer_nav .other .other_top_link .recruit_link a {
    width: 13.8888888889vw;
    max-width: 200px;
    padding: 0.6944444444vw 1.3888888889vw 0.5555555556vw 2.2222222222vw;
    border-radius: 0.2777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  footer .inner .footer_nav .other .other_top_link .recruit_link a {
    padding: 10px 20px 8px 32px;
    border-radius: 4px;
  }
}
@media screen and (min-width: 960px) {
  footer .inner .footer_nav .other .other_top_link .recruit_link a:hover {
    opacity: 0.6;
  }
}
footer .inner .footer_nav .other .other_top_link .recruit_link a .link_text_wrap {
  display: flex;
  align-items: center;
  margin-right: 2.1333333333vw;
}
@media screen and (min-width: 960px) {
  footer .inner .footer_nav .other .other_top_link .recruit_link a .link_text_wrap {
    display: block;
    margin-right: 1.6666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  footer .inner .footer_nav .other .other_top_link .recruit_link a .link_text_wrap {
    margin-right: 24px;
  }
}
footer .inner .footer_nav .other .other_top_link .recruit_link a .link_text_wrap .ja {
  margin-right: 1.6vw;
  font-size: 4.2666666667vw;
}
@media screen and (min-width: 960px) {
  footer .inner .footer_nav .other .other_top_link .recruit_link a .link_text_wrap .ja {
    margin-right: 0;
    margin-bottom: 0.3472222222vw;
    font-size: 0.9722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  footer .inner .footer_nav .other .other_top_link .recruit_link a .link_text_wrap .ja {
    margin-bottom: 5px;
    font-size: 14px;
  }
}
footer .inner .footer_nav .other .other_top_link .recruit_link a .link_text_wrap .en {
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 960px) {
  footer .inner .footer_nav .other .other_top_link .recruit_link a .link_text_wrap .en {
    font-size: 0.7638888889vw;
  }
}
@media screen and (min-width: 1440px) {
  footer .inner .footer_nav .other .other_top_link .recruit_link a .link_text_wrap .en {
    font-size: 11px;
  }
}
footer .inner .footer_nav .other .other_top_link .recruit_link a .arrow {
  display: block;
  width: 4.2666666667vw;
  height: 4.2666666667vw;
  border: 2px solid #0036B6;
  border-radius: 50%;
  position: relative;
}
@media screen and (min-width: 960px) {
  footer .inner .footer_nav .other .other_top_link .recruit_link a .arrow {
    width: 1.1111111111vw;
    max-width: 16px;
    height: 1.1111111111vw;
    max-height: 16px;
    border-width: 1px;
  }
}
footer .inner .footer_nav .other .other_top_link .recruit_link a .arrow:before {
  content: "";
  width: 0.2em;
  height: 0.2em;
  border: 2px solid #0036B6;
  border-left: 0;
  border-bottom: 0;
  position: absolute;
  top: 50%;
  left: 44%;
  transform: translate(-50%, -50%) rotate3d(0, 0, 1, 45deg);
}
@media screen and (min-width: 960px) {
  footer .inner .footer_nav .other .other_top_link .recruit_link a .arrow:before {
    border-width: 1px;
  }
}
footer .inner .footer_nav .other .sns_link {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 960px) {
  footer .inner .footer_nav .other .sns_link {
    justify-content: flex-start;
    padding-top: 1.6666666667vw;
    order: 3;
  }
}
@media screen and (min-width: 1440px) {
  footer .inner .footer_nav .other .sns_link {
    padding-top: 24px;
  }
}
footer .inner .footer_nav .other .sns_link .sns_text {
  font-size: 3.7333333333vw;
  margin-right: 2.6666666667vw;
  line-height: 1;
}
@media screen and (min-width: 960px) {
  footer .inner .footer_nav .other .sns_link .sns_text {
    margin-right: 1.0416666667vw;
    font-size: 0.8333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  footer .inner .footer_nav .other .sns_link .sns_text {
    margin-right: 15px;
    font-size: 12px;
  }
}
footer .inner .footer_nav .other .sns_link .sns_icon {
  margin-right: 2.6666666667vw;
}
@media screen and (min-width: 960px) {
  footer .inner .footer_nav .other .sns_link .sns_icon {
    margin-right: 1.0416666667vw;
  }
}
@media screen and (min-width: 1440px) {
  footer .inner .footer_nav .other .sns_link .sns_icon {
    margin-right: 15px;
  }
}
footer .inner .footer_nav .other .sns_link .sns_icon.facebook_icon {
  width: 3.2vw;
}
@media screen and (min-width: 960px) {
  footer .inner .footer_nav .other .sns_link .sns_icon.facebook_icon {
    width: 0.8333333333vw;
    max-width: 12px;
  }
}
footer .inner .footer_nav .other .sns_link .sns_icon.x_icon {
  width: 6vw;
}
@media screen and (min-width: 960px) {
  footer .inner .footer_nav .other .sns_link .sns_icon.x_icon {
    width: 1.5972222222vw;
    max-width: 23px;
  }
}
footer .inner .footer_nav .other .sns_link .sns_icon.instagram_icon {
  width: 6.1333333333vw;
}
@media screen and (min-width: 960px) {
  footer .inner .footer_nav .other .sns_link .sns_icon.instagram_icon {
    width: 1.5972222222vw;
    max-width: 23px;
  }
}
footer .inner .footer_nav .other .sns_link .sns_icon a {
  display: block;
}
@media screen and (min-width: 960px) {
  footer .inner .footer_nav .other .sns_link .sns_icon a:hover {
    opacity: 0.6;
  }
}
footer .inner .footer_nav .other .sns_link .sns_icon a img {
  display: block;
}
footer .inner .footer_information_wrap {
  margin-bottom: 10.4vw;
}
@media screen and (min-width: 960px) {
  footer .inner .footer_information_wrap {
    display: flex;
    margin-bottom: 0;
    order: 1;
  }
}
footer .inner .footer_information_wrap .footer_information {
  margin-bottom: 2.6666666667vw;
}
@media screen and (min-width: 960px) {
  footer .inner .footer_information_wrap .footer_information {
    margin-bottom: 0;
    margin-right: 1.3888888889vw;
  }
}
@media screen and (min-width: 960px) {
  footer .inner .footer_information_wrap .footer_information {
    margin-right: 20px;
  }
}
footer .inner .footer_information_wrap .footer_information .logo {
  width: 60.8vw;
  margin: 0 auto 6vw;
}
@media screen and (min-width: 960px) {
  footer .inner .footer_information_wrap .footer_information .logo {
    width: 18.0555555556vw;
    max-width: 260px;
    margin-bottom: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  footer .inner .footer_information_wrap .footer_information .logo {
    margin-bottom: 20px;
  }
}
footer .inner .footer_information_wrap .footer_information .text_wrap {
  width: 59.4666666667vw;
  margin: 0 auto;
}
footer .inner .footer_information_wrap .footer_information .text_wrap * {
  font-size: 3.7333333333vw;
  line-height: 1.75;
}
@media screen and (min-width: 960px) {
  footer .inner .footer_information_wrap .footer_information .text_wrap * {
    font-size: 0.9722222222vw;
    line-height: 2;
  }
}
@media screen and (min-width: 1440px) {
  footer .inner .footer_information_wrap .footer_information .text_wrap * {
    font-size: 14px;
  }
}
@media screen and (min-width: 960px) {
  footer .inner .footer_information_wrap .footer_information .text_wrap {
    width: auto;
    margin: 0;
  }
}
footer .inner .footer_information_wrap .google_map {
  width: 100%;
  height: 33.3333333333vw;
}
@media screen and (min-width: 960px) {
  footer .inner .footer_information_wrap .google_map {
    width: 18.5416666667vw;
    max-width: 267px;
    height: 11.6666666667vw;
    max-height: 168px;
    padding-top: 0.4166666667vw;
  }
}
@media screen and (min-width: 1440px) {
  footer .inner .footer_information_wrap .google_map {
    padding-top: 6px;
  }
}
footer .inner .footer_information_wrap .google_map iframe {
  width: 100%;
  height: 100%;
}
footer .inner .policy_link_list {
  text-align: center;
}
@media screen and (min-width: 960px) {
  footer .inner .policy_link_list {
    text-align: left;
  }
}
footer .inner .policy_link_list li {
  margin-bottom: 4.6666666667vw;
}
@media screen and (min-width: 960px) {
  footer .inner .policy_link_list li {
    margin-bottom: 0.3472222222vw;
  }
}
@media screen and (min-width: 1440px) {
  footer .inner .policy_link_list li {
    margin-bottom: 5px;
  }
}
footer .inner .policy_link_list li:last-child {
  margin-bottom: 0;
}
footer .inner .policy_link_list li a {
  display: block;
  font-size: 3.2vw;
  font-weight: 500;
}
@media screen and (min-width: 960px) {
  footer .inner .policy_link_list li a {
    font-size: 0.8333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  footer .inner .policy_link_list li a {
    font-size: 12px;
  }
}
@media screen and (min-width: 960px) {
  footer .inner .policy_link_list li a:hover {
    opacity: 0.6;
  }
}
footer .copyright {
  font-size: 3.7333333333vw;
  font-weight: 400;
  text-align: center;
}
@media screen and (min-width: 960px) {
  footer .copyright {
    font-size: 0.9722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  footer .copyright {
    font-size: 14px;
  }
}

/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

			home

----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/
#home {
  /*================================
  mv
  =================================*/
  /*================================
  message
  =================================*/
  /*================================
  service
  =================================*/
  /*================================
  initiatives
  =================================*/
  /*================================
  quality policy
  =================================*/
  /*================================
  newslist
  =================================*/
  /*================================
  recruit
  =================================*/
}
#home .mv {
  margin-bottom: 15.4666666667vw;
  padding-top: 118px;
}
@media screen and (min-width: 960px) {
  #home .mv {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 85.5208333333vw;
    margin: 0 auto 0.9375vw;
    padding-top: 10.9722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .mv {
    margin-bottom: 18px;
    padding-top: 158px;
  }
}
#home .mv .video_wrap {
  width: 91.2vw;
  height: 74.9333333333vw;
  margin: 0 auto;
  opacity: 0.1%;
  visibility: hidden;
}
@media screen and (min-width: 960px) {
  #home .mv .video_wrap {
    width: 59.1666666667vw;
    height: 48.6458333333vw;
    margin: 0;
    order: 2;
  }
}
#home .mv .video_wrap figure {
  width: 100%;
  height: 100%;
  clip-path: url(#mv_path);
  position: relative;
}
#home .mv .video_wrap figure video, #home .mv .video_wrap figure img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#home .mv .video_wrap figure img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.4s;
}
#home .mv .video_wrap figure.is-playing img {
  opacity: 0.1%;
  visibility: hidden;
}
#home .mv .video_wrap svg {
  display: block;
}
#home .mv .catch_wrap {
  padding: 0 4.6666666667vw;
}
@media screen and (min-width: 960px) {
  #home .mv .catch_wrap {
    padding: 0;
    order: 1;
  }
}
@media screen and (min-width: 960px) {
  #home .mv .catch_wrap .ja {
    margin-bottom: 2.6041666667vw;
  }
}
#home .mv .catch_wrap .ja span {
  display: inline-block;
  opacity: 0.1%;
  visibility: hidden;
  font-size: 8vw;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: linear-gradient(45deg, #0037B0 0%, #2861DC 51.5%, #00A6DB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-feature-settings: "palt";
}
@media screen and (min-width: 960px) {
  #home .mv .catch_wrap .ja span {
    font-size: 3.4375vw;
  }
}
#home .mv .catch_wrap .en span {
  font-size: 3.7333333333vw;
  color: #00278D;
  opacity: 0.1%;
  visibility: hidden;
}
@media screen and (min-width: 960px) {
  #home .mv .catch_wrap .en span {
    font-size: 1.5625vw;
  }
}
#home.show .mv.anim_active .video_wrap {
  animation: fadeinBlur 2s 7.4s forwards;
}
#home.show .mv.anim_active .catch_wrap .ja span {
  animation: fadeinBlur 2s 4.6s forwards;
}
#home.show .mv.anim_active .catch_wrap .en span {
  animation: fadeinBlur 2s forwards;
}
#home.show .mv.anim_active .catch_wrap .en span:nth-child(1) {
  animation-delay: 5.2s;
}
#home.show .mv.anim_active .catch_wrap .en span:nth-child(2) {
  animation-delay: 5.3s;
}
#home.show .mv.anim_active .catch_wrap .en span:nth-child(3) {
  animation-delay: 5.4s;
}
#home.show .mv.anim_active .catch_wrap .en span:nth-child(4) {
  animation-delay: 5.5s;
}
#home .message {
  margin-bottom: 13.3333333333vw;
}
@media screen and (min-width: 960px) {
  #home .message {
    margin-bottom: 13.8888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .message {
    margin-bottom: 200px;
  }
}
@media screen and (min-width: 960px) {
  #home .message .contents {
    display: flex;
    justify-content: flex-end;
    padding-right: 2.9166666667vw;
  }
}
@media screen and (min-width: 1920px) {
  #home .message .contents {
    padding-right: 56px;
  }
}
#home .message .contents .text_wrap {
  margin-bottom: 16vw;
  padding: 0 6vw;
  opacity: 0.1%;
  visibility: hidden;
}
@media screen and (min-width: 960px) {
  #home .message .contents .text_wrap {
    margin-bottom: 0;
    padding: 0;
  }
}
#home .message .contents .text_wrap .contents_title_wrap .ja {
  margin-bottom: 6.6666666667vw;
}
@media screen and (min-width: 960px) {
  #home .message .contents .text_wrap .contents_title_wrap .ja {
    margin-bottom: 3.8888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .message .contents .text_wrap .contents_title_wrap .ja {
    margin-bottom: 56px;
  }
}
#home .message .contents .text_wrap .text {
  margin-bottom: 9.0666666667vw;
}
@media screen and (min-width: 960px) {
  #home .message .contents .text_wrap .text {
    width: 32.0138888889vw;
    max-width: 461px;
    margin-bottom: 5.1388888889vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .message .contents .text_wrap .text {
    margin-bottom: 74px;
  }
}
#home .message .contents .text_wrap.anim_active {
  animation: fadeinRight 1s forwards;
}
#home .message .contents .image_box {
  height: 76.2666666667vw;
  position: relative;
}
@media screen and (min-width: 960px) {
  #home .message .contents .image_box {
    width: 52.7083333333vw;
    max-width: 1012px;
    height: 48.125vw;
    max-height: 924px;
    padding-bottom: 3.3854166667vw;
  }
}
@media screen and (min-width: 1920px) {
  #home .message .contents .image_box {
    padding-bottom: 65px;
  }
}
#home .message .contents .image_box .image_wrap {
  width: 100%;
  height: 100%;
  position: relative;
  opacity: 0.1%;
  visibility: hidden;
}
#home .message .contents .image_box .image_wrap:before {
  content: "";
  width: 70.1333333333vw;
  height: 64vw;
  background: url("../images/home/message/message_bg.svg") no-repeat center center;
  background-size: 100%;
  position: absolute;
  top: 0;
  left: 16.1333333333vw;
  z-index: 0;
}
@media screen and (min-width: 960px) {
  #home .message .contents .image_box .image_wrap:before {
    width: 44.8958333333vw;
    max-width: 862px;
    height: 40.9895833333vw;
    max-height: 787px;
    right: 0;
    left: unset;
  }
}
#home .message .contents .image_box .image_wrap .image {
  position: absolute;
  z-index: 1;
}
#home .message .contents .image_box .image_wrap .image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#home .message .contents .image_box .image_wrap .image__001 {
  width: 36.9333333333vw;
  height: 30.8vw;
  top: 0;
  left: 2.1333333333vw;
  animation: moveImageUp 3s ease-in-out infinite alternate-reverse;
}
@media screen and (min-width: 960px) {
  #home .message .contents .image_box .image_wrap .image__001 {
    width: 27.7083333333vw;
    max-width: 532px;
    height: 23.0729166667vw;
    max-height: 443px;
    left: 0;
  }
}
#home .message .contents .image_box .image_wrap .image__001 img {
  clip-path: url(#message_path001);
}
#home .message .contents .image_box .image_wrap .image__002 {
  width: 38.2666666667vw;
  height: 30.6666666667vw;
  bottom: 0;
  right: 5.3333333333vw;
  animation: moveImageDown 3s ease-in-out infinite alternate-reverse;
}
@media screen and (min-width: 960px) {
  #home .message .contents .image_box .image_wrap .image__002 {
    width: 25.8333333333vw;
    max-width: 496px;
    height: 20.6770833333vw;
    max-height: 397px;
    bottom: 3.3854166667vw;
    right: 5.2083333333vw;
  }
}
@media screen and (min-width: 1920px) {
  #home .message .contents .image_box .image_wrap .image__002 {
    bottom: 65px;
    right: 100px;
  }
}
#home .message .contents .image_box .image_wrap .image__002 img {
  clip-path: url(#message_path002);
}
#home .message .contents .image_box .image_wrap.anim_active {
  animation: fadein 1s forwards;
}
#home .message .contents .image_box .point {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
@media screen and (min-width: 960px) {
  #home .message .contents .image_box .point {
    top: unset;
    bottom: 0;
    left: 4.6875vw;
    transform: unset;
  }
}
@media screen and (min-width: 1920px) {
  #home .message .contents .image_box .point {
    left: 90px;
  }
}
#home .message .contents .image_box .point span {
  display: inline-block;
  line-height: 1;
}
#home .message .contents .image_box .point span.point_text span {
  transition: all 1s;
}
#home .message .contents .image_box .point span.point_text span.parent {
  padding: 5.0666666667vw 2.4vw 4.2666666667vw;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 960px) {
  #home .message .contents .image_box .point span.point_text span.parent {
    padding: 2.2222222222vw 1.1111111111vw;
  }
}
@media screen and (min-width: 1920px) {
  #home .message .contents .image_box .point span.point_text span.parent {
    padding: 32px 16px;
  }
}
#home .message .contents .image_box .point span.point_text span.parent:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transform: translateY(-101%);
  transition: all 1s;
}
#home .message .contents .image_box .point span.point_text span.child {
  display: flex;
  transform: translateY(-100%);
  overflow: hidden;
}
#home .message .contents .image_box .point span.point_text span.child span {
  font-size: 4.8vw;
  color: #fff;
  transform: translateY(100%);
  writing-mode: vertical-rl;
  white-space: nowrap;
}
@media screen and (min-width: 960px) {
  #home .message .contents .image_box .point span.point_text span.child span {
    font-size: 1.4583333333vw;
  }
}
@media screen and (min-width: 1920px) {
  #home .message .contents .image_box .point span.point_text span.child span {
    font-size: 28px;
  }
}
#home .message .contents .image_box .point span.point_text:nth-child(1), #home .message .contents .image_box .point span.point_text:nth-child(2) {
  margin-left: -1px;
}
#home .message .contents .image_box .point span.point_text:nth-child(1) span:before {
  background: url("../images/home/message/pickup_bg001.svg") no-repeat center center;
  background-size: cover;
}
#home .message .contents .image_box .point span.point_text:nth-child(2) {
  padding-top: 11.7333333333vw;
}
@media screen and (min-width: 960px) {
  #home .message .contents .image_box .point span.point_text:nth-child(2) {
    padding-top: 5vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .message .contents .image_box .point span.point_text:nth-child(2) {
    padding-top: 88px;
  }
}
#home .message .contents .image_box .point span.point_text:nth-child(2) span:before {
  background: url("../images/home/message/pickup_bg002.svg") no-repeat center center;
  background-size: cover;
}
#home .message .contents .image_box .point span.point_text:nth-child(3) {
  padding-top: 21.8666666667vw;
}
@media screen and (min-width: 960px) {
  #home .message .contents .image_box .point span.point_text:nth-child(3) {
    padding-top: 9.3055555556vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .message .contents .image_box .point span.point_text:nth-child(3) {
    padding-top: 134px;
  }
}
#home .message .contents .image_box .point span.point_text:nth-child(3) span:before {
  background: url("../images/home/message/pickup_bg003.svg") no-repeat center center;
  background-size: cover;
}
#home .message .contents .image_box .point.anim_active span.point_text span.parent:before {
  transform: translateY(0);
}
#home .message .contents .image_box .point.anim_active span.point_text span.child, #home .message .contents .image_box .point.anim_active span.point_text span.child span {
  transform: translateY(0);
}
#home .service {
  margin-bottom: 19.7333333333vw;
}
@media screen and (min-width: 960px) {
  #home .service {
    margin-bottom: 17.3611111111vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .service {
    margin-bottom: 250px;
  }
}
@media screen and (min-width: 960px) {
  #home .service .contents {
    display: flex;
  }
}
#home .service .contents .image_box {
  display: none;
  opacity: 0.1%;
  visibility: hidden;
}
@media screen and (min-width: 960px) {
  #home .service .contents .image_box {
    display: block;
    width: 46.5104166667vw;
    max-width: 893px;
    height: 50.78125vw;
    max-height: 975px;
    margin-right: 5.3125vw;
    position: relative;
    flex-shrink: 0;
  }
}
@media screen and (min-width: 1920px) {
  #home .service .contents .image_box {
    margin-right: 102px;
  }
}
@media screen and (min-width: 960px) {
  #home .service .contents .image_box:before {
    content: "";
    width: 44.8958333333vw;
    max-width: 862px;
    height: 40.9895833333vw;
    max-height: 787px;
    background: url("../images/home/service/service_bg.svg") no-repeat center center;
    background-size: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
  }
}
#home .service .contents .image_box .image_wrap {
  position: absolute;
  z-index: 1;
}
#home .service .contents .image_box .image_wrap .image {
  position: relative;
}
#home .service .contents .image_box .image_wrap .image img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.1%;
  visibility: hidden;
  transition: all 0.4s;
}
#home .service .contents .image_box .image_wrap .image img.is-active {
  opacity: 1;
  visibility: visible;
  transition-delay: 0.3s;
}
#home .service .contents .image_box .image_wrap:nth-child(1) {
  animation: moveImageUp 3s ease-in-out infinite alternate-reverse;
}
@media screen and (min-width: 960px) {
  #home .service .contents .image_box .image_wrap:nth-child(1) {
    width: 27.03125vw;
    max-width: 519px;
    height: 26.3020833333vw;
    max-height: 505px;
    top: 0;
    right: 5.625vw;
  }
}
@media screen and (min-width: 1920px) {
  #home .service .contents .image_box .image_wrap:nth-child(1) {
    right: 108px;
  }
}
#home .service .contents .image_box .image_wrap:nth-child(1) .image img {
  clip-path: url(#service_path001);
}
#home .service .contents .image_box .image_wrap:nth-child(2) {
  animation: moveImageDown 3s ease-in-out infinite alternate-reverse;
}
@media screen and (min-width: 960px) {
  #home .service .contents .image_box .image_wrap:nth-child(2) {
    width: 26.1979166667vw;
    max-width: 503px;
    height: 24.375vw;
    max-height: 468px;
    right: 0;
    bottom: 1.3541666667vw;
  }
}
@media screen and (min-width: 1920px) {
  #home .service .contents .image_box .image_wrap:nth-child(2) {
    bottom: 26px;
  }
}
#home .service .contents .image_box .image_wrap:nth-child(2) .image img {
  clip-path: url(#service_path002);
}
#home .service .contents .text_wrap {
  padding: 0 6vw;
  opacity: 0.1%;
  visibility: hidden;
}
@media screen and (min-width: 960px) {
  #home .service .contents .text_wrap {
    width: 43.75vw;
    max-width: 630px;
    padding: 0;
    position: relative;
  }
}
#home .service .contents .text_wrap .contents_title_wrap {
  margin-bottom: 3.2vw;
}
@media screen and (min-width: 960px) {
  #home .service .contents .text_wrap .contents_title_wrap {
    margin-bottom: 1.6666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .service .contents .text_wrap .contents_title_wrap {
    margin-bottom: 24px;
  }
}
#home .service .contents .text_wrap ul {
  margin-bottom: 10.6666666667vw;
}
@media screen and (min-width: 960px) {
  #home .service .contents .text_wrap ul {
    margin-bottom: 0;
  }
}
#home .service .contents .text_wrap ul li {
  border-bottom: 1px solid #0036B6;
}
#home .service .contents .text_wrap ul li .accordion .accordion_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6.6666666667vw 0;
  cursor: pointer;
}
@media screen and (min-width: 960px) {
  #home .service .contents .text_wrap ul li .accordion .accordion_top {
    padding: 2.0833333333vw 4.1666666667vw 2.0833333333vw 0;
    cursor: inherit;
  }
}
@media screen and (min-width: 1440px) {
  #home .service .contents .text_wrap ul li .accordion .accordion_top {
    padding: 30px 60px 30px 0;
  }
}
#home .service .contents .text_wrap ul li .accordion .accordion_top .title_text {
  font-size: 4.8vw;
}
@media screen and (min-width: 960px) {
  #home .service .contents .text_wrap ul li .accordion .accordion_top .title_text {
    font-size: 1.9444444444vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .service .contents .text_wrap ul li .accordion .accordion_top .title_text {
    font-size: 28px;
  }
}
#home .service .contents .text_wrap ul li .accordion .accordion_top .view_more {
  padding-right: 4.8vw;
  font-size: 3.7333333333vw;
  position: relative;
}
@media screen and (min-width: 960px) {
  #home .service .contents .text_wrap ul li .accordion .accordion_top .view_more {
    padding-right: 1.5277777778vw;
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .service .contents .text_wrap ul li .accordion .accordion_top .view_more {
    padding-right: 22px;
    font-size: 16px;
  }
}
#home .service .contents .text_wrap ul li .accordion .accordion_top .view_more .arrow {
  width: 5.6vw;
  height: 5.6vw;
  position: absolute;
  top: -4.2666666667vw;
  right: 0;
}
@media screen and (min-width: 960px) {
  #home .service .contents .text_wrap ul li .accordion .accordion_top .view_more .arrow {
    width: 1.7361111111vw;
    max-width: 25px;
    height: 1.7361111111vw;
    max-height: 25px;
    top: -1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .service .contents .text_wrap ul li .accordion .accordion_top .view_more .arrow {
    top: -20px;
  }
}
#home .service .contents .text_wrap ul li .accordion .accordion_top .view_more .arrow .line_wrap, #home .service .contents .text_wrap ul li .accordion .accordion_top .view_more .arrow .line, #home .service .contents .text_wrap ul li .accordion .accordion_top .view_more .arrow svg {
  width: 100%;
  height: 100%;
}
#home .service .contents .text_wrap ul li .accordion .accordion_top .view_more .arrow .line_wrap {
  position: relative;
}
#home .service .contents .text_wrap ul li .accordion .accordion_top .view_more .arrow .line_wrap .line {
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 960px) {
  #home .service .contents .text_wrap ul li .accordion .accordion_top .view_more a:hover {
    opacity: 0.6;
  }
}
@media screen and (min-width: 960px) and (min-width: 960px) {
  #home .service .contents .text_wrap ul li .accordion .accordion_top .view_more a:hover .arrow .line_wrap .line:nth-child(1) {
    animation: fadein 0.6s forwards;
  }
}
@media screen and (min-width: 960px) and (min-width: 960px) {
  #home .service .contents .text_wrap ul li .accordion .accordion_top .view_more a:hover .arrow .line_wrap .line:nth-child(2) {
    animation: fadein 0.6s 0.05s forwards;
  }
}
@media screen and (min-width: 960px) and (min-width: 960px) {
  #home .service .contents .text_wrap ul li .accordion .accordion_top .view_more a:hover .arrow .line_wrap .line:nth-child(3) {
    animation: fadein 0.6s 0.1s forwards;
  }
}
#home .service .contents .text_wrap ul li .accordion .accordion_bottom {
  display: none;
  padding-bottom: 6.6666666667vw;
}
@media screen and (min-width: 960px) {
  #home .service .contents .text_wrap ul li .accordion .accordion_bottom {
    padding-bottom: 2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .service .contents .text_wrap ul li .accordion .accordion_bottom {
    padding-bottom: 40px;
  }
}
#home .service .contents .text_wrap ul li:nth-child(1) .accordion .accordion_bottom {
  display: block;
}
@media screen and (min-width: 960px) {
  #home .service .contents .text_wrap .link_btn {
    position: absolute;
    top: 1.25vw;
    left: 17.0138888889vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .service .contents .text_wrap .link_btn {
    top: 18px;
    left: 245px;
  }
}
#home .service.anim_active .contents .image_box {
  animation: fadein 1s forwards;
}
#home .service.anim_active .contents .text_wrap {
  animation: fadeinRight 1s forwards;
}
#home .initiatives {
  margin-bottom: 16vw;
}
@media screen and (min-width: 960px) {
  #home .initiatives {
    margin-bottom: 13.8888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .initiatives {
    margin-bottom: 200px;
  }
}
#home .initiatives .top {
  margin-bottom: 16vw;
  padding: 0 6vw;
  opacity: 0.1%;
  visibility: hidden;
}
@media screen and (min-width: 960px) {
  #home .initiatives .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 72.9166666667vw;
    max-width: 1050px;
    margin: 0 auto 8.3333333333vw;
    padding: 0;
  }
}
@media screen and (min-width: 1440px) {
  #home .initiatives .top {
    margin-bottom: 120px;
  }
}
#home .initiatives .top .contents_title_wrap {
  margin-bottom: 6.6666666667vw;
  text-align: center;
}
@media screen and (min-width: 960px) {
  #home .initiatives .top .contents_title_wrap {
    margin-bottom: 0;
    text-align: left;
  }
}
@media screen and (min-width: 960px) {
  #home .initiatives .top .text {
    width: 39.9305555556vw;
    max-width: 575px;
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .initiatives .top .text {
    font-size: 16px;
  }
}
#home .initiatives .top .link_btn {
  display: none;
}
@media screen and (min-width: 960px) {
  #home .initiatives .top .link_btn {
    display: block;
  }
}
#home .initiatives .top.anim_active {
  animation: fadein 1s forwards;
}
#home .initiatives .slide_wrap {
  margin-bottom: 13.3333333333vw;
  opacity: 0.1%;
  visibility: hidden;
}
@media screen and (min-width: 960px) {
  #home .initiatives .slide_wrap {
    margin-bottom: 10.4166666667vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .initiatives .slide_wrap {
    margin-bottom: 150px;
  }
}
#home .initiatives .slide_wrap #initiatives_slide * {
  color: #fff;
}
#home .initiatives .slide_wrap #initiatives_slide .swiper-wrapper {
  margin-bottom: 10vw;
}
@media screen and (min-width: 960px) {
  #home .initiatives .slide_wrap #initiatives_slide .swiper-wrapper {
    margin-bottom: 0;
  }
}
#home .initiatives .slide_wrap #initiatives_slide .swiper-wrapper .swiper-slide {
  height: 77.3333333333vw;
  position: relative;
  transition: all 0.4s;
}
@media screen and (min-width: 960px) {
  #home .initiatives .slide_wrap #initiatives_slide .swiper-wrapper .swiper-slide {
    width: 33.333%;
    height: 48.6111111111vw;
    max-height: 700px;
  }
}
#home .initiatives .slide_wrap #initiatives_slide .swiper-wrapper .swiper-slide:before, #home .initiatives .slide_wrap #initiatives_slide .swiper-wrapper .swiper-slide:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.4s;
  pointer-events: none;
}
#home .initiatives .slide_wrap #initiatives_slide .swiper-wrapper .swiper-slide:before {
  background: linear-gradient(45deg, #0000E1 0%, #003DFF 51.5%, #0076FF 100%);
  opacity: 0.55;
  z-index: 1;
}
#home .initiatives .slide_wrap #initiatives_slide .swiper-wrapper .swiper-slide:after {
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 2;
}
#home .initiatives .slide_wrap #initiatives_slide .swiper-wrapper .swiper-slide a, #home .initiatives .slide_wrap #initiatives_slide .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
}
#home .initiatives .slide_wrap #initiatives_slide .swiper-wrapper .swiper-slide img {
  -o-object-fit: cover;
     object-fit: cover;
}
#home .initiatives .slide_wrap #initiatives_slide .swiper-wrapper .swiper-slide .text_wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
#home .initiatives .slide_wrap #initiatives_slide .swiper-wrapper .swiper-slide .text_wrap .item_title_wrap {
  margin-bottom: 6vw;
  text-align: center;
}
@media screen and (min-width: 960px) {
  #home .initiatives .slide_wrap #initiatives_slide .swiper-wrapper .swiper-slide .text_wrap .item_title_wrap {
    margin-bottom: 2.2222222222vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .initiatives .slide_wrap #initiatives_slide .swiper-wrapper .swiper-slide .text_wrap .item_title_wrap {
    margin-bottom: 32px;
  }
}
#home .initiatives .slide_wrap #initiatives_slide .swiper-wrapper .swiper-slide .text_wrap .item_title_wrap .en, #home .initiatives .slide_wrap #initiatives_slide .swiper-wrapper .swiper-slide .text_wrap .item_title_wrap .ja {
  white-space: nowrap;
}
#home .initiatives .slide_wrap #initiatives_slide .swiper-wrapper .swiper-slide .text_wrap .item_title_wrap .en {
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 960px) {
  #home .initiatives .slide_wrap #initiatives_slide .swiper-wrapper .swiper-slide .text_wrap .item_title_wrap .en {
    font-size: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .initiatives .slide_wrap #initiatives_slide .swiper-wrapper .swiper-slide .text_wrap .item_title_wrap .en {
    font-size: 20px;
  }
}
#home .initiatives .slide_wrap #initiatives_slide .swiper-wrapper .swiper-slide .text_wrap .item_title_wrap .ja {
  font-size: 4.8vw;
}
@media screen and (min-width: 960px) {
  #home .initiatives .slide_wrap #initiatives_slide .swiper-wrapper .swiper-slide .text_wrap .item_title_wrap .ja {
    font-size: 2.5vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .initiatives .slide_wrap #initiatives_slide .swiper-wrapper .swiper-slide .text_wrap .item_title_wrap .ja {
    font-size: 36px;
  }
}
#home .initiatives .slide_wrap #initiatives_slide .swiper-wrapper .swiper-slide .text_wrap .text {
  display: none;
}
@media screen and (min-width: 960px) {
  #home .initiatives .slide_wrap #initiatives_slide .swiper-wrapper .swiper-slide .text_wrap .text {
    display: grid;
    width: 25.8333333333vw;
    max-width: 372px;
    margin: 0 auto 2.7777777778vw;
    grid-template-rows: 0fr;
    opacity: 0.1%;
    transition: all 0.4s;
  }
}
@media screen and (min-width: 1440px) {
  #home .initiatives .slide_wrap #initiatives_slide .swiper-wrapper .swiper-slide .text_wrap .text {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 960px) {
  #home .initiatives .slide_wrap #initiatives_slide .swiper-wrapper .swiper-slide .text_wrap .text span {
    display: block;
    font-size: 1.1111111111vw;
    overflow: hidden;
  }
}
@media screen and (min-width: 1440px) {
  #home .initiatives .slide_wrap #initiatives_slide .swiper-wrapper .swiper-slide .text_wrap .text span {
    font-size: 16px;
  }
}
#home .initiatives .slide_wrap #initiatives_slide .swiper-wrapper .swiper-slide .text_wrap .link_btn {
  margin: 0 auto;
}
#home .initiatives .slide_wrap #initiatives_slide .swiper-wrapper .swiper-slide .text_wrap .link_btn p {
  background: transparent;
  border-color: #fff;
}
#home .initiatives .slide_wrap #initiatives_slide .swiper-wrapper .swiper-slide .text_wrap .link_btn p:before {
  background: #fff;
}
#home .initiatives .slide_wrap #initiatives_slide .swiper-wrapper .swiper-slide.swiper-slide-active {
  transform: scale(1.05);
  z-index: 5;
}
#home .initiatives .slide_wrap #initiatives_slide .swiper-wrapper .swiper-slide.swiper-slide-active:after {
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
}
@media screen and (min-width: 960px) {
  #home .initiatives .slide_wrap #initiatives_slide .swiper-wrapper .swiper-slide:hover {
    transform: scale(1.05);
    z-index: 5;
  }
}
@media screen and (min-width: 960px) {
  #home .initiatives .slide_wrap #initiatives_slide .swiper-wrapper .swiper-slide:hover:before, #home .initiatives .slide_wrap #initiatives_slide .swiper-wrapper .swiper-slide:hover:after {
    opacity: 0;
  }
}
@media screen and (min-width: 960px) {
  #home .initiatives .slide_wrap #initiatives_slide .swiper-wrapper .swiper-slide:hover .text_wrap .text {
    grid-template-rows: 1fr;
    opacity: 1;
  }
}
@media screen and (min-width: 960px) {
  #home .initiatives .slide_wrap #initiatives_slide .swiper-wrapper .swiper-slide:hover .text_wrap .link_btn p {
    background: #fff;
    border-color: #0036B6;
  }
  #home .initiatives .slide_wrap #initiatives_slide .swiper-wrapper .swiper-slide:hover .text_wrap .link_btn p:before {
    transform-origin: left top;
    transform: scale(1, 1);
  }
  #home .initiatives .slide_wrap #initiatives_slide .swiper-wrapper .swiper-slide:hover .text_wrap .link_btn p span {
    color: #0036B6;
  }
}
#home .initiatives .slide_wrap #initiatives_slide .control_wrap {
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 960px) {
  #home .initiatives .slide_wrap #initiatives_slide .control_wrap {
    display: none;
  }
}
#home .initiatives .slide_wrap #initiatives_slide .control_wrap .slide_arrow {
  width: 10.6666666667vw;
  height: 10.6666666667vw;
  background: #fff;
  border: 2px solid #0036B6;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
#home .initiatives .slide_wrap #initiatives_slide .control_wrap .slide_arrow:before {
  content: "";
  color: #333;
  line-height: 1;
  width: 0.8em;
  height: 0.8em;
  border: 2px solid #0036B6;
  border-left: 0;
  border-bottom: 0;
  position: absolute;
  top: 50%;
}
#home .initiatives .slide_wrap #initiatives_slide .control_wrap .slide_arrow.prev {
  margin-right: 16vw;
}
#home .initiatives .slide_wrap #initiatives_slide .control_wrap .slide_arrow.prev:before {
  left: 60%;
  transform: translate(-50%, -50%) rotate3d(0, 0, 1, -135deg);
}
#home .initiatives .slide_wrap #initiatives_slide .control_wrap .slide_arrow.next:before {
  left: 45%;
  transform: translate(-50%, -50%) scale(-1, 1) rotate3d(0, 0, 1, -135deg);
}
#home .initiatives .slide_wrap.anim_active {
  animation: fadeup 1s forwards;
}
#home .initiatives .bottom_logo_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.1%;
  visibility: hidden;
}
#home .initiatives .bottom_logo_wrap .logo:nth-child(1) {
  width: 17.3333333333vw;
  margin-right: 6vw;
}
@media screen and (min-width: 960px) {
  #home .initiatives .bottom_logo_wrap .logo:nth-child(1) {
    width: 9.1666666667vw;
    max-width: 132px;
    margin-right: 3.125vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .initiatives .bottom_logo_wrap .logo:nth-child(1) {
    margin-right: 45px;
  }
}
#home .initiatives .bottom_logo_wrap .logo:nth-child(2) {
  width: 25.2vw;
  margin-right: 4.6666666667vw;
}
@media screen and (min-width: 960px) {
  #home .initiatives .bottom_logo_wrap .logo:nth-child(2) {
    width: 13.4027777778vw;
    max-width: 193px;
    margin-right: 2.4305555556vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .initiatives .bottom_logo_wrap .logo:nth-child(2) {
    margin-right: 35px;
  }
}
#home .initiatives .bottom_logo_wrap .logo:nth-child(3) {
  width: 20.2666666667vw;
  margin-right: 2.1333333333vw;
}
@media screen and (min-width: 960px) {
  #home .initiatives .bottom_logo_wrap .logo:nth-child(3) {
    width: 10.7638888889vw;
    max-width: 155px;
    margin-right: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .initiatives .bottom_logo_wrap .logo:nth-child(3) {
    margin-right: 16px;
  }
}
#home .initiatives .bottom_logo_wrap .logo:nth-child(4) {
  width: 20vw;
}
@media screen and (min-width: 960px) {
  #home .initiatives .bottom_logo_wrap .logo:nth-child(4) {
    width: 10.625vw;
    max-width: 153px;
  }
}
#home .initiatives .bottom_logo_wrap .logo a {
  width: 100%;
}
@media screen and (min-width: 960px) {
  #home .initiatives .bottom_logo_wrap .logo a:hover {
    opacity: 0.6;
  }
}
#home .initiatives .bottom_logo_wrap.anim_active {
  animation: fadeup 1s forwards;
}
#home .quality-policy_wrap {
  margin-bottom: 16vw;
  opacity: 0.1%;
  visibility: hidden;
}
@media screen and (min-width: 960px) {
  #home .quality-policy_wrap {
    margin-bottom: 10.4166666667vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .quality-policy_wrap {
    margin-bottom: 150px;
  }
}
#home .quality-policy_wrap .inner {
  padding: 10.6666666667vw 6vw;
  background: #EEF4F9;
}
@media screen and (min-width: 960px) {
  #home .quality-policy_wrap .inner {
    padding: 4.5833333333vw 0 4.7222222222vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .quality-policy_wrap .inner {
    padding: 66px 0 68px;
  }
}
#home .quality-policy_wrap .inner .contents_title_wrap {
  margin-bottom: 9.0666666667vw;
  text-align: center;
}
@media screen and (min-width: 960px) {
  #home .quality-policy_wrap .inner .contents_title_wrap {
    margin-bottom: 3.3333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .quality-policy_wrap .inner .contents_title_wrap {
    margin-bottom: 48px;
  }
}
#home .quality-policy_wrap .inner .contents ol {
  margin-bottom: 9.3333333333vw;
}
@media screen and (min-width: 960px) {
  #home .quality-policy_wrap .inner .contents ol {
    width: 65.2777777778vw;
    max-width: 940px;
    margin: 0 auto 5.5555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .quality-policy_wrap .inner .contents ol {
    margin-bottom: 80px;
  }
}
#home .quality-policy_wrap .inner .contents ol li {
  margin-bottom: 5.3333333333vw;
  padding-left: 8vw;
  font-size: 4.2666666667vw;
  position: relative;
}
@media screen and (min-width: 960px) {
  #home .quality-policy_wrap .inner .contents ol li {
    margin-bottom: 2.0833333333vw;
    padding-left: 3.4722222222vw;
    font-size: 1.6666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .quality-policy_wrap .inner .contents ol li {
    margin-bottom: 30px;
    padding-left: 50px;
    font-size: 24px;
  }
}
#home .quality-policy_wrap .inner .contents ol li:last-child {
  margin-bottom: 0;
}
#home .quality-policy_wrap .inner .contents ol li:before {
  display: block;
  width: 5.6vw;
  height: 5.0666666667vw;
  padding-top: 0.2666666667vw;
  font-family: "Kanit", serif;
  font-size: 4.8vw;
  font-weight: 300;
  line-height: 1;
  text-align: center;
  border: 1px solid #0036B6;
  border-radius: 0.8vw;
  position: absolute;
  top: 0.5333333333vw;
  left: 0;
}
@media screen and (min-width: 960px) {
  #home .quality-policy_wrap .inner .contents ol li:before {
    width: 2.0833333333vw;
    max-width: 30px;
    height: 1.8055555556vw;
    max-height: 26px;
    padding-top: 0.2777777778vw;
    font-size: 1.6666666667vw;
    border-radius: 0.2777777778vw;
    top: 0.2083333333vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .quality-policy_wrap .inner .contents ol li:before {
    padding-top: 4px;
    font-size: 24px;
    border-radius: 4px;
    top: 3px;
  }
}
#home .quality-policy_wrap .inner .contents ol li:nth-child(1):before {
  content: "1";
}
#home .quality-policy_wrap .inner .contents ol li:nth-child(2):before {
  content: "2";
}
#home .quality-policy_wrap .inner .contents ol li:nth-child(3):before {
  content: "3";
}
#home .quality-policy_wrap .inner .contents .date {
  margin-bottom: 2.6666666667vw;
  text-align: center;
}
@media screen and (min-width: 960px) {
  #home .quality-policy_wrap .inner .contents .date {
    margin-bottom: 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .quality-policy_wrap .inner .contents .date {
    margin-bottom: 10px;
  }
}
#home .quality-policy_wrap .inner .contents dl {
  text-align: center;
}
@media screen and (min-width: 960px) {
  #home .quality-policy_wrap .inner .contents dl {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
#home .quality-policy_wrap .inner .contents dl dt {
  margin-bottom: 1.3333333333vw;
  font-size: 4.8vw;
}
@media screen and (min-width: 960px) {
  #home .quality-policy_wrap .inner .contents dl dt {
    margin-bottom: 0;
    margin-right: 0.3472222222vw;
    font-size: 1.5277777778vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .quality-policy_wrap .inner .contents dl dt {
    margin-right: 5px;
    font-size: 22px;
  }
}
#home .quality-policy_wrap.anim_active {
  animation: fadeup 1s forwards;
}
#home .newslist {
  margin-bottom: 20vw;
  opacity: 0.1%;
  visibility: hidden;
}
@media screen and (min-width: 960px) {
  #home .newslist {
    margin-bottom: 16.6666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .newslist {
    margin-bottom: 240px;
  }
}
#home .newslist .inner {
  padding: 0 6vw;
}
@media screen and (min-width: 960px) {
  #home .newslist .inner {
    width: 90.2777777778vw;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0;
    position: relative;
  }
}
#home .newslist .inner .contents_title_wrap {
  margin-bottom: 3.4666666667vw;
}
@media screen and (min-width: 960px) {
  #home .newslist .inner .contents_title_wrap {
    margin-bottom: 1.8055555556vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .newslist .inner .contents_title_wrap {
    margin-bottom: 26px;
  }
}
#home .newslist .inner .contents {
  margin-bottom: 10.6666666667vw;
}
@media screen and (min-width: 960px) {
  #home .newslist .inner .contents {
    margin-bottom: 0;
  }
}
#home .newslist .inner .contents .item a {
  width: 100%;
  padding: 3.4666666667vw 0 6.6666666667vw;
  border-bottom: 1px solid #0036B6;
  position: relative;
}
@media screen and (min-width: 960px) {
  #home .newslist .inner .contents .item a {
    display: flex;
    align-items: center;
    padding: 2.2222222222vw 0;
  }
}
@media screen and (min-width: 1440px) {
  #home .newslist .inner .contents .item a {
    padding: 32px 0;
  }
}
#home .newslist .inner .contents .item a ul {
  display: flex;
  align-items: center;
  margin-bottom: 4.6666666667vw;
}
@media screen and (min-width: 960px) {
  #home .newslist .inner .contents .item a ul {
    margin-bottom: 0;
    margin-right: 1.3888888889vw;
    flex-shrink: 0;
  }
}
@media screen and (min-width: 1440px) {
  #home .newslist .inner .contents .item a ul {
    margin-right: 20px;
  }
}
#home .newslist .inner .contents .item a ul li.date {
  margin-right: 2.4vw;
  font-size: 3.2vw;
}
@media screen and (min-width: 960px) {
  #home .newslist .inner .contents .item a ul li.date {
    margin-right: 1.3888888889vw;
    font-size: 1.0416666667vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .newslist .inner .contents .item a ul li.date {
    margin-right: 20px;
    font-size: 15px;
  }
}
#home .newslist .inner .contents .item a ul li.category {
  width: 25.8666666667vw;
  padding: 1.3333333333vw 0;
  font-size: 2.9333333333vw;
  line-height: 1;
  text-align: center;
  color: #fff;
  background: linear-gradient(90deg, #0037B0 0%, #2861DC 51.5%, #00A6DB 100%);
  border-radius: 0.5333333333vw;
}
@media screen and (min-width: 960px) {
  #home .newslist .inner .contents .item a ul li.category {
    width: 7.7083333333vw;
    max-width: 111px;
    padding: 0.625vw 0;
    font-size: 0.8333333333vw;
    border-radius: 0.2777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .newslist .inner .contents .item a ul li.category {
    padding: 9px 0;
    font-size: 12px;
    border-radius: 4px;
  }
}
@media screen and (min-width: 960px) {
  #home .newslist .inner .contents .item a .archive_title {
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .newslist .inner .contents .item a .archive_title {
    font-size: 16px;
  }
}
#home .newslist .inner .contents .item a .arrow {
  width: 7.2vw;
  height: 7.2vw;
  border: 2px solid #0036B6;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 960px) {
  #home .newslist .inner .contents .item a .arrow {
    width: 1.8055555556vw;
    max-width: 26px;
    height: 1.8055555556vw;
    max-height: 26px;
    border-width: 1px;
  }
}
#home .newslist .inner .contents .item a .arrow span {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
#home .newslist .inner .contents .item a .arrow span:before {
  content: "";
  width: 0.4em;
  height: 0.4em;
  border: 2px solid #0036B6;
  border-left: 0;
  border-bottom: 0;
  position: absolute;
  top: 50%;
  left: 48%;
  transform: translate(-50%, -50%) rotate3d(0, 0, 1, 45deg);
  transition: all 0.4s;
}
@media screen and (min-width: 960px) {
  #home .newslist .inner .contents .item a .arrow span:before {
    width: 0.2em;
    height: 0.2em;
    border-width: 1px;
  }
}
@media screen and (min-width: 960px) {
  #home .newslist .inner .contents .item a:hover {
    opacity: 0.6;
  }
}
#home .newslist .inner .contents .item:first-child {
  border-top: 1px solid #0036B6;
}
#home .newslist .inner .contents .no_archive {
  padding: 10.6666666667vw;
  text-align: center;
}
@media screen and (min-width: 960px) {
  #home .newslist .inner .contents .no_archive {
    padding: 4.1666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .newslist .inner .contents .no_archive {
    padding: 60px 0;
  }
}
@media screen and (min-width: 960px) {
  #home .newslist .inner .link_btn {
    position: absolute;
    top: 1.25vw;
    left: 17.0138888889vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .newslist .inner .link_btn {
    top: 18px;
    left: 245px;
  }
}
#home .newslist.anim_active {
  animation: fadein 1s forwards;
}
#home .recruit {
  height: 49.6vw;
  margin-bottom: 29.3333333333vw;
  position: relative;
  opacity: 0.1%;
  visibility: hidden;
}
@media screen and (min-width: 960px) {
  #home .recruit {
    height: 28.8541666667vw;
    max-height: 554px;
    margin-bottom: 19.7916666667vw;
  }
}
@media screen and (min-width: 1920px) {
  #home .recruit {
    margin-bottom: 380px;
  }
}
#home .recruit .bg_path {
  width: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (min-width: 960px) {
  #home .recruit .bg_path {
    max-width: 1920px;
    margin: 0 auto;
  }
}
#home .recruit .bg_path:before {
  content: "";
  width: 90.6666666667vw;
  height: 74.5333333333vw;
  background: url("../images/home/recruit/recruit_bg_path.svg") no-repeat center center;
  background-size: 100%;
  position: absolute;
  top: -6.6666666667vw;
  left: -0.5333333333vw;
  z-index: -1;
}
@media screen and (min-width: 960px) {
  #home .recruit .bg_path:before {
    width: 72.6041666667vw;
    max-width: 1394px;
    height: 59.6875vw;
    max-height: 1146px;
    top: -6.4583333333vw;
    left: -0.9375vw;
  }
}
@media screen and (min-width: 1920px) {
  #home .recruit .bg_path:before {
    top: -124px;
    left: -18px;
  }
}
#home .recruit .inner, #home .recruit .contents {
  width: 100%;
  height: 100%;
}
#home .recruit .inner {
  padding: 2.6666666667vw;
}
@media screen and (min-width: 960px) {
  #home .recruit .inner {
    padding: 0 1.0416666667vw;
  }
}
@media screen and (min-width: 1920px) {
  #home .recruit .inner {
    padding: 0 20px;
  }
}
#home .recruit .inner .contents {
  border-radius: 0.8vw;
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  #home .recruit .inner .contents {
    border-radius: 0.2083333333vw;
  }
}
@media screen and (min-width: 1920px) {
  #home .recruit .inner .contents {
    border-radius: 4px;
  }
}
#home .recruit .inner .contents a {
  width: 100%;
  height: 100%;
  position: relative;
}
#home .recruit .inner .contents a .bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 960px) {
  #home .recruit .inner .contents a .bg {
    transition: all 0.6s;
  }
}
#home .recruit .inner .contents a .text_wrap {
  position: absolute;
  top: 50%;
  left: 6vw;
  transform: translateY(-50%);
}
@media screen and (min-width: 960px) {
  #home .recruit .inner .contents a .text_wrap {
    display: flex;
    align-items: center;
    left: 5.7291666667vw;
  }
}
@media screen and (min-width: 1920px) {
  #home .recruit .inner .contents a .text_wrap {
    left: 110px;
  }
}
#home .recruit .inner .contents a .text_wrap .catch {
  width: 77.7333333333vw;
}
@media screen and (min-width: 960px) {
  #home .recruit .inner .contents a .text_wrap .catch {
    width: 48.0729166667vw;
    max-width: 923px;
    order: 2;
  }
}
#home .recruit .inner .contents a .text_wrap .recruit_title {
  font-size: 3.7333333333vw;
  color: #fff;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 960px) {
  #home .recruit .inner .contents a .text_wrap .recruit_title {
    font-size: 1.6666666667vw;
    order: 1;
  }
}
@media screen and (min-width: 1920px) {
  #home .recruit .inner .contents a .text_wrap .recruit_title {
    font-size: 32px;
  }
}
#home .recruit .inner .contents a .anim_line {
  width: 57.3333333333vw;
  position: absolute;
  bottom: -4px;
  right: -4px;
}
@media screen and (min-width: 960px) {
  #home .recruit .inner .contents a .anim_line {
    width: 40.9375vw;
    max-width: 786px;
  }
}
#home .recruit .inner .contents a .anim_line svg {
  display: block;
}
@media screen and (min-width: 960px) {
  #home .recruit .inner .contents a:hover .bg {
    transform: scale(1.05);
  }
}
#home .recruit.anim_active {
  animation: fadein 1s forwards;
}

/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

		under

----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/
.under main {
  padding-top: 105px;
}
@media screen and (min-width: 960px) {
  .under main {
    padding-top: 8.75vw;
  }
}
@media screen and (min-width: 1440px) {
  .under main {
    padding-top: 126px;
  }
}
.under main .breadcrumbs_wrap {
  padding: 2.6666666667vw 6vw;
  background: linear-gradient(90deg, #0037B0 0%, #2861DC 51.5%, #00A6DB 100%);
}
@media screen and (min-width: 960px) {
  .under main .breadcrumbs_wrap {
    padding: 1.3888888889vw 7.6388888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .under main .breadcrumbs_wrap {
    padding: 20px 110px;
  }
}
.under main .breadcrumbs_wrap * {
  color: #fff;
}
.under main .breadcrumbs_wrap .breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.under main .breadcrumbs_wrap .breadcrumbs span {
  display: block;
  font-size: 2.9333333333vw;
  letter-spacing: 0.19em;
}
@media screen and (min-width: 960px) {
  .under main .breadcrumbs_wrap .breadcrumbs span {
    font-size: 0.9722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .under main .breadcrumbs_wrap .breadcrumbs span {
    font-size: 14px;
  }
}
.under main .breadcrumbs_wrap .breadcrumbs > span {
  display: block;
  margin-right: 2.4vw;
}
@media screen and (min-width: 960px) {
  .under main .breadcrumbs_wrap .breadcrumbs > span {
    margin-right: 1.25vw;
  }
}
@media screen and (min-width: 1440px) {
  .under main .breadcrumbs_wrap .breadcrumbs > span {
    margin-right: 18px;
  }
}
.under main .breadcrumbs_wrap .breadcrumbs > span:last-child {
  margin-right: 0;
}
.under main .breadcrumbs_wrap .breadcrumbs > span.arrow {
  width: 1.0666666667vw;
  height: 1.0666666667vw;
  margin-right: 3.3333333333vw;
  position: relative;
}
@media screen and (min-width: 960px) {
  .under main .breadcrumbs_wrap .breadcrumbs > span.arrow {
    width: 0.5555555556vw;
    max-width: 8px;
    height: 0.5555555556vw;
    max-height: 8px;
    margin-right: 1.7361111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .under main .breadcrumbs_wrap .breadcrumbs > span.arrow {
    margin-right: 25px;
  }
}
.under main .breadcrumbs_wrap .breadcrumbs > span.arrow:before {
  content: "";
  width: 0.4em;
  height: 0.4em;
  border: 2px solid #fff;
  border-left: 0;
  border-bottom: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate3d(0, 0, 1, 45deg);
  transition: all 0.4s;
}
@media screen and (min-width: 960px) {
  .under main .breadcrumbs_wrap .breadcrumbs > span.arrow:before {
    top: 60%;
  }
}
@media screen and (min-width: 960px) {
  .under main .breadcrumbs_wrap .breadcrumbs > span a:hover {
    opacity: 0.6;
  }
}
.under main .page_title_wrap {
  margin-bottom: 12.5333333333vw;
  padding: 13.3333333333vw 6vw 0;
}
@media screen and (min-width: 960px) {
  .under main .page_title_wrap {
    width: 90.2777777778vw;
    max-width: 1300px;
    margin: 0 auto 6.5277777778vw;
    padding: 6.9444444444vw 0 0;
  }
}
@media screen and (min-width: 1440px) {
  .under main .page_title_wrap {
    margin-bottom: 94px;
    padding-top: 100px;
  }
}

/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

		newslist

----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/
#newslist, #post.archive, #record, #archivement {
  /*================================
  top
  =================================*/
  /*================================
  newslist / record / archivement
  =================================*/
  /*================================
  newslist / record
  =================================*/
  /*================================
  archivement
  =================================*/
}
#newslist .top, #post.archive .top, #record .top, #archivement .top {
  margin-bottom: 11.4666666667vw;
  padding: 0 6vw;
  /*================================
  category
  =================================*/
  /*================================
  archive
  =================================*/
}
@media screen and (min-width: 960px) {
  #newslist .top, #post.archive .top, #record .top, #archivement .top {
    width: 90.2777777778vw;
    max-width: 1300px;
    margin: 0 auto 5.9722222222vw;
    padding: 0;
  }
}
@media screen and (min-width: 1440px) {
  #newslist .top, #post.archive .top, #record .top, #archivement .top {
    margin-bottom: 86px;
  }
}
#newslist .top .type_title, #post.archive .top .type_title, #record .top .type_title, #archivement .top .type_title {
  margin-bottom: 5.0666666667vw;
  padding: 3.2vw 0;
  font-size: 4.8vw;
  line-height: 1;
  text-align: center;
  background: #fff;
  border: 1px solid #0036B6;
  border-radius: 0.5333333333vw;
}
@media screen and (min-width: 960px) {
  #newslist .top .type_title, #post.archive .top .type_title, #record .top .type_title, #archivement .top .type_title {
    width: 8.6111111111vw;
    max-width: 124px;
    margin-right: 2.6388888889vw;
    margin-bottom: 0;
    padding: 0.8333333333vw 0;
    font-size: 1.25vw;
    border-radius: 0.2777777778vw;
    flex-shrink: 0;
  }
}
@media screen and (min-width: 1440px) {
  #newslist .top .type_title, #post.archive .top .type_title, #record .top .type_title, #archivement .top .type_title {
    margin-right: 38px;
    padding: 12px 0;
    font-size: 18px;
    border-radius: 4px;
  }
}
@media screen and (min-width: 960px) {
  #newslist .top .category_wrap, #newslist .top .archive_wrap, #post.archive .top .category_wrap, #post.archive .top .archive_wrap, #record .top .category_wrap, #record .top .archive_wrap, #archivement .top .category_wrap, #archivement .top .archive_wrap {
    display: flex;
    align-items: center;
  }
}
#newslist .top .category_wrap, #post.archive .top .category_wrap, #record .top .category_wrap, #archivement .top .category_wrap {
  margin-bottom: 8vw;
}
@media screen and (min-width: 960px) {
  #newslist .top .category_wrap, #post.archive .top .category_wrap, #record .top .category_wrap, #archivement .top .category_wrap {
    margin-bottom: 2.0833333333vw;
  }
}
@media screen and (min-width: 1440px) {
  #newslist .top .category_wrap, #post.archive .top .category_wrap, #record .top .category_wrap, #archivement .top .category_wrap {
    margin-bottom: 30px;
  }
}
#newslist .top .category_wrap ul, #post.archive .top .category_wrap ul, #record .top .category_wrap ul, #archivement .top .category_wrap ul {
  width: 100%;
}
@media screen and (min-width: 960px) {
  #newslist .top .category_wrap ul, #post.archive .top .category_wrap ul, #record .top .category_wrap ul, #archivement .top .category_wrap ul {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ccc;
  }
}
#newslist .top .category_wrap ul li, #post.archive .top .category_wrap ul li, #record .top .category_wrap ul li, #archivement .top .category_wrap ul li {
  margin-bottom: 2.6666666667vw;
}
@media screen and (min-width: 960px) {
  #newslist .top .category_wrap ul li, #post.archive .top .category_wrap ul li, #record .top .category_wrap ul li, #archivement .top .category_wrap ul li {
    margin-right: 4.1666666667vw;
    margin-bottom: 0;
    padding-bottom: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  #newslist .top .category_wrap ul li, #post.archive .top .category_wrap ul li, #record .top .category_wrap ul li, #archivement .top .category_wrap ul li {
    margin-right: 60px;
    padding-bottom: 20px;
  }
}
#newslist .top .category_wrap ul li:last-child, #post.archive .top .category_wrap ul li:last-child, #record .top .category_wrap ul li:last-child, #archivement .top .category_wrap ul li:last-child {
  margin-bottom: 0;
  margin-right: 0;
}
#newslist .top .category_wrap ul li a, #post.archive .top .category_wrap ul li a, #record .top .category_wrap ul li a, #archivement .top .category_wrap ul li a {
  width: 100%;
  padding-bottom: 2.6666666667vw;
  font-size: 4.5333333333vw;
  font-weight: 600;
  color: #B3B3B3;
  border-bottom: 1px solid #F2F2F2;
}
@media screen and (min-width: 960px) {
  #newslist .top .category_wrap ul li a, #post.archive .top .category_wrap ul li a, #record .top .category_wrap ul li a, #archivement .top .category_wrap ul li a {
    width: auto;
    padding-bottom: 0;
    font-size: 1.5277777778vw;
    border-bottom: none;
  }
}
@media screen and (min-width: 1440px) {
  #newslist .top .category_wrap ul li a, #post.archive .top .category_wrap ul li a, #record .top .category_wrap ul li a, #archivement .top .category_wrap ul li a {
    font-size: 22px;
  }
}
@media screen and (min-width: 960px) {
  #newslist .top .category_wrap ul li a:hover, #post.archive .top .category_wrap ul li a:hover, #record .top .category_wrap ul li a:hover, #archivement .top .category_wrap ul li a:hover {
    opacity: 0.6;
  }
}
@media screen and (min-width: 960px) {
  #newslist .top .category_wrap ul li.current-cat, #post.archive .top .category_wrap ul li.current-cat, #record .top .category_wrap ul li.current-cat, #archivement .top .category_wrap ul li.current-cat {
    position: relative;
  }
}
@media screen and (min-width: 960px) {
  #newslist .top .category_wrap ul li.current-cat:before, #post.archive .top .category_wrap ul li.current-cat:before, #record .top .category_wrap ul li.current-cat:before, #archivement .top .category_wrap ul li.current-cat:before {
    content: "";
    width: 100%;
    height: 4px;
    background: #0036B6;
    position: absolute;
    bottom: -2px;
    left: 0;
  }
}
#newslist .top .category_wrap ul li.current-cat a, #post.archive .top .category_wrap ul li.current-cat a, #record .top .category_wrap ul li.current-cat a, #archivement .top .category_wrap ul li.current-cat a {
  color: #0036B6;
  border-bottom-color: #0036B6;
}
#newslist .top .archive_wrap .archive_select, #post.archive .top .archive_wrap .archive_select, #record .top .archive_wrap .archive_select, #archivement .top .archive_wrap .archive_select {
  position: relative;
}
#newslist .top .archive_wrap .archive_select .archive_top_text, #post.archive .top .archive_wrap .archive_select .archive_top_text, #record .top .archive_wrap .archive_select .archive_top_text, #archivement .top .archive_wrap .archive_select .archive_top_text {
  padding: 3.3333333333vw 7.4666666667vw 3.3333333333vw 4.6666666667vw;
  font-weight: 600;
  color: #999;
  background: #F2F2F2;
  border-radius: 0.5333333333vw;
  position: relative;
  transition: all 0.4s;
  cursor: pointer;
}
@media screen and (min-width: 960px) {
  #newslist .top .archive_wrap .archive_select .archive_top_text, #post.archive .top .archive_wrap .archive_select .archive_top_text, #record .top .archive_wrap .archive_select .archive_top_text, #archivement .top .archive_wrap .archive_select .archive_top_text {
    padding: 1.0416666667vw 3.8888888889vw 1.0416666667vw 2.4305555556vw;
    font-size: 1.5277777778vw;
    border-radius: 0.2777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  #newslist .top .archive_wrap .archive_select .archive_top_text, #post.archive .top .archive_wrap .archive_select .archive_top_text, #record .top .archive_wrap .archive_select .archive_top_text, #archivement .top .archive_wrap .archive_select .archive_top_text {
    padding: 15px 56px 15px 35px;
    font-size: 22px;
    border-radius: 4px;
  }
}
#newslist .top .archive_wrap .archive_select .archive_top_text:before, #post.archive .top .archive_wrap .archive_select .archive_top_text:before, #record .top .archive_wrap .archive_select .archive_top_text:before, #archivement .top .archive_wrap .archive_select .archive_top_text:before {
  content: "";
  width: 0.4em;
  height: 0.4em;
  border: 3px solid #999;
  border-left: 0;
  border-bottom: 0;
  position: absolute;
  top: 48%;
  right: 2.1333333333vw;
  transform: translateY(-50%) rotate3d(0, 0, 1, 135deg);
  transition: all 0.4s;
}
@media screen and (min-width: 960px) {
  #newslist .top .archive_wrap .archive_select .archive_top_text:before, #post.archive .top .archive_wrap .archive_select .archive_top_text:before, #record .top .archive_wrap .archive_select .archive_top_text:before, #archivement .top .archive_wrap .archive_select .archive_top_text:before {
    right: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  #newslist .top .archive_wrap .archive_select .archive_top_text:before, #post.archive .top .archive_wrap .archive_select .archive_top_text:before, #record .top .archive_wrap .archive_select .archive_top_text:before, #archivement .top .archive_wrap .archive_select .archive_top_text:before {
    right: 16px;
  }
}
@media screen and (min-width: 960px) {
  #newslist .top .archive_wrap .archive_select .archive_top_text:hover, #post.archive .top .archive_wrap .archive_select .archive_top_text:hover, #record .top .archive_wrap .archive_select .archive_top_text:hover, #archivement .top .archive_wrap .archive_select .archive_top_text:hover {
    opacity: 0.6;
  }
}
#newslist .top .archive_wrap .archive_select .list, #post.archive .top .archive_wrap .archive_select .list, #record .top .archive_wrap .archive_select .list, #archivement .top .archive_wrap .archive_select .list {
  width: 100%;
  max-height: 55.3333333333vw;
  border: 1px solid #BEBEBE;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 105%;
  left: 50%;
  transform: translate(-50%, 5%);
  z-index: 1;
  overflow-y: auto;
  overflow-x: hidden;
  opacity: 0.1%;
  visibility: hidden;
  transition: all 0.4s;
}
@media screen and (min-width: 960px) {
  #newslist .top .archive_wrap .archive_select .list, #post.archive .top .archive_wrap .archive_select .list, #record .top .archive_wrap .archive_select .list, #archivement .top .archive_wrap .archive_select .list {
    max-height: 17.0138888889vw;
  }
}
@media screen and (min-width: 1440px) {
  #newslist .top .archive_wrap .archive_select .list, #post.archive .top .archive_wrap .archive_select .list, #record .top .archive_wrap .archive_select .list, #archivement .top .archive_wrap .archive_select .list {
    max-height: 245px;
  }
}
#newslist .top .archive_wrap .archive_select .list ul, #post.archive .top .archive_wrap .archive_select .list ul, #record .top .archive_wrap .archive_select .list ul, #archivement .top .archive_wrap .archive_select .list ul {
  min-width: 100%;
  background: #fff;
}
#newslist .top .archive_wrap .archive_select .list ul li, #post.archive .top .archive_wrap .archive_select .list ul li, #record .top .archive_wrap .archive_select .list ul li, #archivement .top .archive_wrap .archive_select .list ul li {
  border-bottom: 1px solid #BEBEBE;
  cursor: pointer;
}
#newslist .top .archive_wrap .archive_select .list ul li:last-child, #post.archive .top .archive_wrap .archive_select .list ul li:last-child, #record .top .archive_wrap .archive_select .list ul li:last-child, #archivement .top .archive_wrap .archive_select .list ul li:last-child {
  border-bottom: none;
}
#newslist .top .archive_wrap .archive_select .list ul li a, #post.archive .top .archive_wrap .archive_select .list ul li a, #record .top .archive_wrap .archive_select .list ul li a, #archivement .top .archive_wrap .archive_select .list ul li a {
  width: 100%;
  padding: 3.2vw 2.6666666667vw;
  font-size: 3.7333333333vw;
  color: #B3B3B3;
}
@media screen and (min-width: 960px) {
  #newslist .top .archive_wrap .archive_select .list ul li a, #post.archive .top .archive_wrap .archive_select .list ul li a, #record .top .archive_wrap .archive_select .list ul li a, #archivement .top .archive_wrap .archive_select .list ul li a {
    padding: 0.8333333333vw 1.3888888889vw;
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  #newslist .top .archive_wrap .archive_select .list ul li a, #post.archive .top .archive_wrap .archive_select .list ul li a, #record .top .archive_wrap .archive_select .list ul li a, #archivement .top .archive_wrap .archive_select .list ul li a {
    padding: 12px 20px;
    font-size: 16px;
  }
}
@media screen and (min-width: 960px) {
  #newslist .top .archive_wrap .archive_select .list ul li a:hover, #post.archive .top .archive_wrap .archive_select .list ul li a:hover, #record .top .archive_wrap .archive_select .list ul li a:hover, #archivement .top .archive_wrap .archive_select .list ul li a:hover {
    opacity: 0.6;
  }
}
#newslist .top .archive_wrap .archive_select .list ul li.current a, #post.archive .top .archive_wrap .archive_select .list ul li.current a, #record .top .archive_wrap .archive_select .list ul li.current a, #archivement .top .archive_wrap .archive_select .list ul li.current a {
  color: #0036B6;
}
#newslist .top .archive_wrap .archive_select.open .archive_top_text:before, #post.archive .top .archive_wrap .archive_select.open .archive_top_text:before, #record .top .archive_wrap .archive_select.open .archive_top_text:before, #archivement .top .archive_wrap .archive_select.open .archive_top_text:before {
  top: 52%;
  transform: translateY(-50%) rotate3d(0, 0, 1, -45deg);
}
#newslist .top .archive_wrap .archive_select.open .list, #post.archive .top .archive_wrap .archive_select.open .list, #record .top .archive_wrap .archive_select.open .list, #archivement .top .archive_wrap .archive_select.open .list {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
#newslist .newslist_wrap, #newslist .record_wrap, #newslist .archivement_wrap, #post.archive .newslist_wrap, #post.archive .record_wrap, #post.archive .archivement_wrap, #record .newslist_wrap, #record .record_wrap, #record .archivement_wrap, #archivement .newslist_wrap, #archivement .record_wrap, #archivement .archivement_wrap {
  margin-bottom: 18.6666666667vw;
  padding: 0 6vw;
}
@media screen and (min-width: 960px) {
  #newslist .newslist_wrap, #newslist .record_wrap, #newslist .archivement_wrap, #post.archive .newslist_wrap, #post.archive .record_wrap, #post.archive .archivement_wrap, #record .newslist_wrap, #record .record_wrap, #record .archivement_wrap, #archivement .newslist_wrap, #archivement .record_wrap, #archivement .archivement_wrap {
    width: 90.2777777778vw;
    max-width: 1300px;
    margin: 0 auto 12.0833333333vw;
    padding: 0;
  }
}
@media screen and (min-width: 1440px) {
  #newslist .newslist_wrap, #newslist .record_wrap, #newslist .archivement_wrap, #post.archive .newslist_wrap, #post.archive .record_wrap, #post.archive .archivement_wrap, #record .newslist_wrap, #record .record_wrap, #record .archivement_wrap, #archivement .newslist_wrap, #archivement .record_wrap, #archivement .archivement_wrap {
    margin-bottom: 174px;
  }
}
#newslist .newslist_wrap .contents, #newslist .record_wrap .contents, #newslist .archivement_wrap .contents, #post.archive .newslist_wrap .contents, #post.archive .record_wrap .contents, #post.archive .archivement_wrap .contents, #record .newslist_wrap .contents, #record .record_wrap .contents, #record .archivement_wrap .contents, #archivement .newslist_wrap .contents, #archivement .record_wrap .contents, #archivement .archivement_wrap .contents {
  margin-bottom: 10.1333333333vw;
}
@media screen and (min-width: 960px) {
  #newslist .newslist_wrap .contents, #newslist .record_wrap .contents, #newslist .archivement_wrap .contents, #post.archive .newslist_wrap .contents, #post.archive .record_wrap .contents, #post.archive .archivement_wrap .contents, #record .newslist_wrap .contents, #record .record_wrap .contents, #record .archivement_wrap .contents, #archivement .newslist_wrap .contents, #archivement .record_wrap .contents, #archivement .archivement_wrap .contents {
    margin-bottom: 5.2777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  #newslist .newslist_wrap .contents, #newslist .record_wrap .contents, #newslist .archivement_wrap .contents, #post.archive .newslist_wrap .contents, #post.archive .record_wrap .contents, #post.archive .archivement_wrap .contents, #record .newslist_wrap .contents, #record .record_wrap .contents, #record .archivement_wrap .contents, #archivement .newslist_wrap .contents, #archivement .record_wrap .contents, #archivement .archivement_wrap .contents {
    margin-bottom: 76px;
  }
}
#newslist .newslist_wrap .contents .item, #newslist .record_wrap .contents .item, #newslist .archivement_wrap .contents .item, #post.archive .newslist_wrap .contents .item, #post.archive .record_wrap .contents .item, #post.archive .archivement_wrap .contents .item, #record .newslist_wrap .contents .item, #record .record_wrap .contents .item, #record .archivement_wrap .contents .item, #archivement .newslist_wrap .contents .item, #archivement .record_wrap .contents .item, #archivement .archivement_wrap .contents .item {
  border-bottom: 1px solid #0036B6;
}
#newslist .newslist_wrap .contents .item:first-child, #newslist .record_wrap .contents .item:first-child, #newslist .archivement_wrap .contents .item:first-child, #post.archive .newslist_wrap .contents .item:first-child, #post.archive .record_wrap .contents .item:first-child, #post.archive .archivement_wrap .contents .item:first-child, #record .newslist_wrap .contents .item:first-child, #record .record_wrap .contents .item:first-child, #record .archivement_wrap .contents .item:first-child, #archivement .newslist_wrap .contents .item:first-child, #archivement .record_wrap .contents .item:first-child, #archivement .archivement_wrap .contents .item:first-child {
  border-top: 1px solid #0036B6;
}
#newslist .newslist_wrap .contents .item ul, #newslist .record_wrap .contents .item ul, #newslist .archivement_wrap .contents .item ul, #post.archive .newslist_wrap .contents .item ul, #post.archive .record_wrap .contents .item ul, #post.archive .archivement_wrap .contents .item ul, #record .newslist_wrap .contents .item ul, #record .record_wrap .contents .item ul, #record .archivement_wrap .contents .item ul, #archivement .newslist_wrap .contents .item ul, #archivement .record_wrap .contents .item ul, #archivement .archivement_wrap .contents .item ul {
  display: flex;
  align-items: center;
  margin-bottom: 2.6666666667vw;
}
@media screen and (min-width: 960px) {
  #newslist .newslist_wrap .contents .item ul, #newslist .record_wrap .contents .item ul, #newslist .archivement_wrap .contents .item ul, #post.archive .newslist_wrap .contents .item ul, #post.archive .record_wrap .contents .item ul, #post.archive .archivement_wrap .contents .item ul, #record .newslist_wrap .contents .item ul, #record .record_wrap .contents .item ul, #record .archivement_wrap .contents .item ul, #archivement .newslist_wrap .contents .item ul, #archivement .record_wrap .contents .item ul, #archivement .archivement_wrap .contents .item ul {
    margin-bottom: 0;
    margin-right: 1.25vw;
  }
}
@media screen and (min-width: 1440px) {
  #newslist .newslist_wrap .contents .item ul, #newslist .record_wrap .contents .item ul, #newslist .archivement_wrap .contents .item ul, #post.archive .newslist_wrap .contents .item ul, #post.archive .record_wrap .contents .item ul, #post.archive .archivement_wrap .contents .item ul, #record .newslist_wrap .contents .item ul, #record .record_wrap .contents .item ul, #record .archivement_wrap .contents .item ul, #archivement .newslist_wrap .contents .item ul, #archivement .record_wrap .contents .item ul, #archivement .archivement_wrap .contents .item ul {
    margin-right: 18px;
  }
}
#newslist .newslist_wrap .contents .item ul li.date, #newslist .record_wrap .contents .item ul li.date, #newslist .archivement_wrap .contents .item ul li.date, #post.archive .newslist_wrap .contents .item ul li.date, #post.archive .record_wrap .contents .item ul li.date, #post.archive .archivement_wrap .contents .item ul li.date, #record .newslist_wrap .contents .item ul li.date, #record .record_wrap .contents .item ul li.date, #record .archivement_wrap .contents .item ul li.date, #archivement .newslist_wrap .contents .item ul li.date, #archivement .record_wrap .contents .item ul li.date, #archivement .archivement_wrap .contents .item ul li.date {
  font-size: 3.4666666667vw;
}
@media screen and (min-width: 960px) {
  #newslist .newslist_wrap .contents .item ul li.date, #newslist .record_wrap .contents .item ul li.date, #newslist .archivement_wrap .contents .item ul li.date, #post.archive .newslist_wrap .contents .item ul li.date, #post.archive .record_wrap .contents .item ul li.date, #post.archive .archivement_wrap .contents .item ul li.date, #record .newslist_wrap .contents .item ul li.date, #record .record_wrap .contents .item ul li.date, #record .archivement_wrap .contents .item ul li.date, #archivement .newslist_wrap .contents .item ul li.date, #archivement .record_wrap .contents .item ul li.date, #archivement .archivement_wrap .contents .item ul li.date {
    font-size: 1.0416666667vw;
  }
}
@media screen and (min-width: 1440px) {
  #newslist .newslist_wrap .contents .item ul li.date, #newslist .record_wrap .contents .item ul li.date, #newslist .archivement_wrap .contents .item ul li.date, #post.archive .newslist_wrap .contents .item ul li.date, #post.archive .record_wrap .contents .item ul li.date, #post.archive .archivement_wrap .contents .item ul li.date, #record .newslist_wrap .contents .item ul li.date, #record .record_wrap .contents .item ul li.date, #record .archivement_wrap .contents .item ul li.date, #archivement .newslist_wrap .contents .item ul li.date, #archivement .record_wrap .contents .item ul li.date, #archivement .archivement_wrap .contents .item ul li.date {
    font-size: 15px;
  }
}
#newslist .newslist_wrap .contents .item ul li.category, #newslist .newslist_wrap .contents .item ul li.tag, #newslist .record_wrap .contents .item ul li.category, #newslist .record_wrap .contents .item ul li.tag, #newslist .archivement_wrap .contents .item ul li.category, #newslist .archivement_wrap .contents .item ul li.tag, #post.archive .newslist_wrap .contents .item ul li.category, #post.archive .newslist_wrap .contents .item ul li.tag, #post.archive .record_wrap .contents .item ul li.category, #post.archive .record_wrap .contents .item ul li.tag, #post.archive .archivement_wrap .contents .item ul li.category, #post.archive .archivement_wrap .contents .item ul li.tag, #record .newslist_wrap .contents .item ul li.category, #record .newslist_wrap .contents .item ul li.tag, #record .record_wrap .contents .item ul li.category, #record .record_wrap .contents .item ul li.tag, #record .archivement_wrap .contents .item ul li.category, #record .archivement_wrap .contents .item ul li.tag, #archivement .newslist_wrap .contents .item ul li.category, #archivement .newslist_wrap .contents .item ul li.tag, #archivement .record_wrap .contents .item ul li.category, #archivement .record_wrap .contents .item ul li.tag, #archivement .archivement_wrap .contents .item ul li.category, #archivement .archivement_wrap .contents .item ul li.tag {
  width: 26.6666666667vw;
  padding: 1.6vw 0;
  font-size: 2.9333333333vw;
  text-align: center;
  border-radius: 0.5333333333vw;
}
@media screen and (min-width: 960px) {
  #newslist .newslist_wrap .contents .item ul li.category, #newslist .newslist_wrap .contents .item ul li.tag, #newslist .record_wrap .contents .item ul li.category, #newslist .record_wrap .contents .item ul li.tag, #newslist .archivement_wrap .contents .item ul li.category, #newslist .archivement_wrap .contents .item ul li.tag, #post.archive .newslist_wrap .contents .item ul li.category, #post.archive .newslist_wrap .contents .item ul li.tag, #post.archive .record_wrap .contents .item ul li.category, #post.archive .record_wrap .contents .item ul li.tag, #post.archive .archivement_wrap .contents .item ul li.category, #post.archive .archivement_wrap .contents .item ul li.tag, #record .newslist_wrap .contents .item ul li.category, #record .newslist_wrap .contents .item ul li.tag, #record .record_wrap .contents .item ul li.category, #record .record_wrap .contents .item ul li.tag, #record .archivement_wrap .contents .item ul li.category, #record .archivement_wrap .contents .item ul li.tag, #archivement .newslist_wrap .contents .item ul li.category, #archivement .newslist_wrap .contents .item ul li.tag, #archivement .record_wrap .contents .item ul li.category, #archivement .record_wrap .contents .item ul li.tag, #archivement .archivement_wrap .contents .item ul li.category, #archivement .archivement_wrap .contents .item ul li.tag {
    width: 7.7777777778vw;
    max-width: 112px;
    padding: 0.4861111111vw 0;
    font-size: 0.8333333333vw;
    border-radius: 0.2777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  #newslist .newslist_wrap .contents .item ul li.category, #newslist .newslist_wrap .contents .item ul li.tag, #newslist .record_wrap .contents .item ul li.category, #newslist .record_wrap .contents .item ul li.tag, #newslist .archivement_wrap .contents .item ul li.category, #newslist .archivement_wrap .contents .item ul li.tag, #post.archive .newslist_wrap .contents .item ul li.category, #post.archive .newslist_wrap .contents .item ul li.tag, #post.archive .record_wrap .contents .item ul li.category, #post.archive .record_wrap .contents .item ul li.tag, #post.archive .archivement_wrap .contents .item ul li.category, #post.archive .archivement_wrap .contents .item ul li.tag, #record .newslist_wrap .contents .item ul li.category, #record .newslist_wrap .contents .item ul li.tag, #record .record_wrap .contents .item ul li.category, #record .record_wrap .contents .item ul li.tag, #record .archivement_wrap .contents .item ul li.category, #record .archivement_wrap .contents .item ul li.tag, #archivement .newslist_wrap .contents .item ul li.category, #archivement .newslist_wrap .contents .item ul li.tag, #archivement .record_wrap .contents .item ul li.category, #archivement .record_wrap .contents .item ul li.tag, #archivement .archivement_wrap .contents .item ul li.category, #archivement .archivement_wrap .contents .item ul li.tag {
    font-size: 12px;
    padding: 7px 0;
    border-radius: 4px;
  }
}
#newslist .newslist_wrap .contents .item .title, #newslist .record_wrap .contents .item .title, #newslist .archivement_wrap .contents .item .title, #post.archive .newslist_wrap .contents .item .title, #post.archive .record_wrap .contents .item .title, #post.archive .archivement_wrap .contents .item .title, #record .newslist_wrap .contents .item .title, #record .record_wrap .contents .item .title, #record .archivement_wrap .contents .item .title, #archivement .newslist_wrap .contents .item .title, #archivement .record_wrap .contents .item .title, #archivement .archivement_wrap .contents .item .title {
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 960px) {
  #newslist .newslist_wrap .contents .item .title, #newslist .record_wrap .contents .item .title, #newslist .archivement_wrap .contents .item .title, #post.archive .newslist_wrap .contents .item .title, #post.archive .record_wrap .contents .item .title, #post.archive .archivement_wrap .contents .item .title, #record .newslist_wrap .contents .item .title, #record .record_wrap .contents .item .title, #record .archivement_wrap .contents .item .title, #archivement .newslist_wrap .contents .item .title, #archivement .record_wrap .contents .item .title, #archivement .archivement_wrap .contents .item .title {
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  #newslist .newslist_wrap .contents .item .title, #newslist .record_wrap .contents .item .title, #newslist .archivement_wrap .contents .item .title, #post.archive .newslist_wrap .contents .item .title, #post.archive .record_wrap .contents .item .title, #post.archive .archivement_wrap .contents .item .title, #record .newslist_wrap .contents .item .title, #record .record_wrap .contents .item .title, #record .archivement_wrap .contents .item .title, #archivement .newslist_wrap .contents .item .title, #archivement .record_wrap .contents .item .title, #archivement .archivement_wrap .contents .item .title {
    font-size: 16px;
  }
}
#newslist .newslist_wrap .contents .no_archive, #newslist .record_wrap .contents .no_archive, #newslist .archivement_wrap .contents .no_archive, #post.archive .newslist_wrap .contents .no_archive, #post.archive .record_wrap .contents .no_archive, #post.archive .archivement_wrap .contents .no_archive, #record .newslist_wrap .contents .no_archive, #record .record_wrap .contents .no_archive, #record .archivement_wrap .contents .no_archive, #archivement .newslist_wrap .contents .no_archive, #archivement .record_wrap .contents .no_archive, #archivement .archivement_wrap .contents .no_archive {
  text-align: center;
}
@media screen and (min-width: 960px) {
  #newslist .newslist_wrap .post_page_navi, #newslist .record_wrap .post_page_navi, #newslist .archivement_wrap .post_page_navi, #post.archive .newslist_wrap .post_page_navi, #post.archive .record_wrap .post_page_navi, #post.archive .archivement_wrap .post_page_navi, #record .newslist_wrap .post_page_navi, #record .record_wrap .post_page_navi, #record .archivement_wrap .post_page_navi, #archivement .newslist_wrap .post_page_navi, #archivement .record_wrap .post_page_navi, #archivement .archivement_wrap .post_page_navi {
    width: 34.7222222222vw;
    max-width: 500px;
    margin: 0 auto;
  }
}
#newslist .newslist_wrap .post_page_navi .wp-pagenavi, #newslist .record_wrap .post_page_navi .wp-pagenavi, #newslist .archivement_wrap .post_page_navi .wp-pagenavi, #post.archive .newslist_wrap .post_page_navi .wp-pagenavi, #post.archive .record_wrap .post_page_navi .wp-pagenavi, #post.archive .archivement_wrap .post_page_navi .wp-pagenavi, #record .newslist_wrap .post_page_navi .wp-pagenavi, #record .record_wrap .post_page_navi .wp-pagenavi, #record .archivement_wrap .post_page_navi .wp-pagenavi, #archivement .newslist_wrap .post_page_navi .wp-pagenavi, #archivement .record_wrap .post_page_navi .wp-pagenavi, #archivement .archivement_wrap .post_page_navi .wp-pagenavi {
  position: relative;
}
@media screen and (min-width: 960px) {
  #newslist .newslist_wrap .post_page_navi .wp-pagenavi a:hover, #newslist .record_wrap .post_page_navi .wp-pagenavi a:hover, #newslist .archivement_wrap .post_page_navi .wp-pagenavi a:hover, #post.archive .newslist_wrap .post_page_navi .wp-pagenavi a:hover, #post.archive .record_wrap .post_page_navi .wp-pagenavi a:hover, #post.archive .archivement_wrap .post_page_navi .wp-pagenavi a:hover, #record .newslist_wrap .post_page_navi .wp-pagenavi a:hover, #record .record_wrap .post_page_navi .wp-pagenavi a:hover, #record .archivement_wrap .post_page_navi .wp-pagenavi a:hover, #archivement .newslist_wrap .post_page_navi .wp-pagenavi a:hover, #archivement .record_wrap .post_page_navi .wp-pagenavi a:hover, #archivement .archivement_wrap .post_page_navi .wp-pagenavi a:hover {
    opacity: 0.6;
  }
}
#newslist .newslist_wrap .post_page_navi .wp-pagenavi .prev, #newslist .newslist_wrap .post_page_navi .wp-pagenavi .next, #newslist .record_wrap .post_page_navi .wp-pagenavi .prev, #newslist .record_wrap .post_page_navi .wp-pagenavi .next, #newslist .archivement_wrap .post_page_navi .wp-pagenavi .prev, #newslist .archivement_wrap .post_page_navi .wp-pagenavi .next, #post.archive .newslist_wrap .post_page_navi .wp-pagenavi .prev, #post.archive .newslist_wrap .post_page_navi .wp-pagenavi .next, #post.archive .record_wrap .post_page_navi .wp-pagenavi .prev, #post.archive .record_wrap .post_page_navi .wp-pagenavi .next, #post.archive .archivement_wrap .post_page_navi .wp-pagenavi .prev, #post.archive .archivement_wrap .post_page_navi .wp-pagenavi .next, #record .newslist_wrap .post_page_navi .wp-pagenavi .prev, #record .newslist_wrap .post_page_navi .wp-pagenavi .next, #record .record_wrap .post_page_navi .wp-pagenavi .prev, #record .record_wrap .post_page_navi .wp-pagenavi .next, #record .archivement_wrap .post_page_navi .wp-pagenavi .prev, #record .archivement_wrap .post_page_navi .wp-pagenavi .next, #archivement .newslist_wrap .post_page_navi .wp-pagenavi .prev, #archivement .newslist_wrap .post_page_navi .wp-pagenavi .next, #archivement .record_wrap .post_page_navi .wp-pagenavi .prev, #archivement .record_wrap .post_page_navi .wp-pagenavi .next, #archivement .archivement_wrap .post_page_navi .wp-pagenavi .prev, #archivement .archivement_wrap .post_page_navi .wp-pagenavi .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
#newslist .newslist_wrap .post_page_navi .wp-pagenavi .prev a, #newslist .newslist_wrap .post_page_navi .wp-pagenavi .next a, #newslist .record_wrap .post_page_navi .wp-pagenavi .prev a, #newslist .record_wrap .post_page_navi .wp-pagenavi .next a, #newslist .archivement_wrap .post_page_navi .wp-pagenavi .prev a, #newslist .archivement_wrap .post_page_navi .wp-pagenavi .next a, #post.archive .newslist_wrap .post_page_navi .wp-pagenavi .prev a, #post.archive .newslist_wrap .post_page_navi .wp-pagenavi .next a, #post.archive .record_wrap .post_page_navi .wp-pagenavi .prev a, #post.archive .record_wrap .post_page_navi .wp-pagenavi .next a, #post.archive .archivement_wrap .post_page_navi .wp-pagenavi .prev a, #post.archive .archivement_wrap .post_page_navi .wp-pagenavi .next a, #record .newslist_wrap .post_page_navi .wp-pagenavi .prev a, #record .newslist_wrap .post_page_navi .wp-pagenavi .next a, #record .record_wrap .post_page_navi .wp-pagenavi .prev a, #record .record_wrap .post_page_navi .wp-pagenavi .next a, #record .archivement_wrap .post_page_navi .wp-pagenavi .prev a, #record .archivement_wrap .post_page_navi .wp-pagenavi .next a, #archivement .newslist_wrap .post_page_navi .wp-pagenavi .prev a, #archivement .newslist_wrap .post_page_navi .wp-pagenavi .next a, #archivement .record_wrap .post_page_navi .wp-pagenavi .prev a, #archivement .record_wrap .post_page_navi .wp-pagenavi .next a, #archivement .archivement_wrap .post_page_navi .wp-pagenavi .prev a, #archivement .archivement_wrap .post_page_navi .wp-pagenavi .next a {
  font-size: 4.5333333333vw;
  font-weight: 500;
  letter-spacing: 0.075em;
  color: #B3B3B3;
}
@media screen and (min-width: 960px) {
  #newslist .newslist_wrap .post_page_navi .wp-pagenavi .prev a, #newslist .newslist_wrap .post_page_navi .wp-pagenavi .next a, #newslist .record_wrap .post_page_navi .wp-pagenavi .prev a, #newslist .record_wrap .post_page_navi .wp-pagenavi .next a, #newslist .archivement_wrap .post_page_navi .wp-pagenavi .prev a, #newslist .archivement_wrap .post_page_navi .wp-pagenavi .next a, #post.archive .newslist_wrap .post_page_navi .wp-pagenavi .prev a, #post.archive .newslist_wrap .post_page_navi .wp-pagenavi .next a, #post.archive .record_wrap .post_page_navi .wp-pagenavi .prev a, #post.archive .record_wrap .post_page_navi .wp-pagenavi .next a, #post.archive .archivement_wrap .post_page_navi .wp-pagenavi .prev a, #post.archive .archivement_wrap .post_page_navi .wp-pagenavi .next a, #record .newslist_wrap .post_page_navi .wp-pagenavi .prev a, #record .newslist_wrap .post_page_navi .wp-pagenavi .next a, #record .record_wrap .post_page_navi .wp-pagenavi .prev a, #record .record_wrap .post_page_navi .wp-pagenavi .next a, #record .archivement_wrap .post_page_navi .wp-pagenavi .prev a, #record .archivement_wrap .post_page_navi .wp-pagenavi .next a, #archivement .newslist_wrap .post_page_navi .wp-pagenavi .prev a, #archivement .newslist_wrap .post_page_navi .wp-pagenavi .next a, #archivement .record_wrap .post_page_navi .wp-pagenavi .prev a, #archivement .record_wrap .post_page_navi .wp-pagenavi .next a, #archivement .archivement_wrap .post_page_navi .wp-pagenavi .prev a, #archivement .archivement_wrap .post_page_navi .wp-pagenavi .next a {
    font-size: 1.4583333333vw;
  }
}
@media screen and (min-width: 1440px) {
  #newslist .newslist_wrap .post_page_navi .wp-pagenavi .prev a, #newslist .newslist_wrap .post_page_navi .wp-pagenavi .next a, #newslist .record_wrap .post_page_navi .wp-pagenavi .prev a, #newslist .record_wrap .post_page_navi .wp-pagenavi .next a, #newslist .archivement_wrap .post_page_navi .wp-pagenavi .prev a, #newslist .archivement_wrap .post_page_navi .wp-pagenavi .next a, #post.archive .newslist_wrap .post_page_navi .wp-pagenavi .prev a, #post.archive .newslist_wrap .post_page_navi .wp-pagenavi .next a, #post.archive .record_wrap .post_page_navi .wp-pagenavi .prev a, #post.archive .record_wrap .post_page_navi .wp-pagenavi .next a, #post.archive .archivement_wrap .post_page_navi .wp-pagenavi .prev a, #post.archive .archivement_wrap .post_page_navi .wp-pagenavi .next a, #record .newslist_wrap .post_page_navi .wp-pagenavi .prev a, #record .newslist_wrap .post_page_navi .wp-pagenavi .next a, #record .record_wrap .post_page_navi .wp-pagenavi .prev a, #record .record_wrap .post_page_navi .wp-pagenavi .next a, #record .archivement_wrap .post_page_navi .wp-pagenavi .prev a, #record .archivement_wrap .post_page_navi .wp-pagenavi .next a, #archivement .newslist_wrap .post_page_navi .wp-pagenavi .prev a, #archivement .newslist_wrap .post_page_navi .wp-pagenavi .next a, #archivement .record_wrap .post_page_navi .wp-pagenavi .prev a, #archivement .record_wrap .post_page_navi .wp-pagenavi .next a, #archivement .archivement_wrap .post_page_navi .wp-pagenavi .prev a, #archivement .archivement_wrap .post_page_navi .wp-pagenavi .next a {
    font-size: 21px;
  }
}
#newslist .newslist_wrap .post_page_navi .wp-pagenavi .prev, #newslist .record_wrap .post_page_navi .wp-pagenavi .prev, #newslist .archivement_wrap .post_page_navi .wp-pagenavi .prev, #post.archive .newslist_wrap .post_page_navi .wp-pagenavi .prev, #post.archive .record_wrap .post_page_navi .wp-pagenavi .prev, #post.archive .archivement_wrap .post_page_navi .wp-pagenavi .prev, #record .newslist_wrap .post_page_navi .wp-pagenavi .prev, #record .record_wrap .post_page_navi .wp-pagenavi .prev, #record .archivement_wrap .post_page_navi .wp-pagenavi .prev, #archivement .newslist_wrap .post_page_navi .wp-pagenavi .prev, #archivement .record_wrap .post_page_navi .wp-pagenavi .prev, #archivement .archivement_wrap .post_page_navi .wp-pagenavi .prev {
  left: 0;
}
#newslist .newslist_wrap .post_page_navi .wp-pagenavi .next, #newslist .record_wrap .post_page_navi .wp-pagenavi .next, #newslist .archivement_wrap .post_page_navi .wp-pagenavi .next, #post.archive .newslist_wrap .post_page_navi .wp-pagenavi .next, #post.archive .record_wrap .post_page_navi .wp-pagenavi .next, #post.archive .archivement_wrap .post_page_navi .wp-pagenavi .next, #record .newslist_wrap .post_page_navi .wp-pagenavi .next, #record .record_wrap .post_page_navi .wp-pagenavi .next, #record .archivement_wrap .post_page_navi .wp-pagenavi .next, #archivement .newslist_wrap .post_page_navi .wp-pagenavi .next, #archivement .record_wrap .post_page_navi .wp-pagenavi .next, #archivement .archivement_wrap .post_page_navi .wp-pagenavi .next {
  right: 0;
}
#newslist .newslist_wrap .post_page_navi .wp-pagenavi .number, #newslist .record_wrap .post_page_navi .wp-pagenavi .number, #newslist .archivement_wrap .post_page_navi .wp-pagenavi .number, #post.archive .newslist_wrap .post_page_navi .wp-pagenavi .number, #post.archive .record_wrap .post_page_navi .wp-pagenavi .number, #post.archive .archivement_wrap .post_page_navi .wp-pagenavi .number, #record .newslist_wrap .post_page_navi .wp-pagenavi .number, #record .record_wrap .post_page_navi .wp-pagenavi .number, #record .archivement_wrap .post_page_navi .wp-pagenavi .number, #archivement .newslist_wrap .post_page_navi .wp-pagenavi .number, #archivement .record_wrap .post_page_navi .wp-pagenavi .number, #archivement .archivement_wrap .post_page_navi .wp-pagenavi .number {
  display: flex;
  justify-content: center;
}
#newslist .newslist_wrap .post_page_navi .wp-pagenavi .number li, #newslist .record_wrap .post_page_navi .wp-pagenavi .number li, #newslist .archivement_wrap .post_page_navi .wp-pagenavi .number li, #post.archive .newslist_wrap .post_page_navi .wp-pagenavi .number li, #post.archive .record_wrap .post_page_navi .wp-pagenavi .number li, #post.archive .archivement_wrap .post_page_navi .wp-pagenavi .number li, #record .newslist_wrap .post_page_navi .wp-pagenavi .number li, #record .record_wrap .post_page_navi .wp-pagenavi .number li, #record .archivement_wrap .post_page_navi .wp-pagenavi .number li, #archivement .newslist_wrap .post_page_navi .wp-pagenavi .number li, #archivement .record_wrap .post_page_navi .wp-pagenavi .number li, #archivement .archivement_wrap .post_page_navi .wp-pagenavi .number li {
  margin-right: 3.7333333333vw;
}
@media screen and (min-width: 960px) {
  #newslist .newslist_wrap .post_page_navi .wp-pagenavi .number li, #newslist .record_wrap .post_page_navi .wp-pagenavi .number li, #newslist .archivement_wrap .post_page_navi .wp-pagenavi .number li, #post.archive .newslist_wrap .post_page_navi .wp-pagenavi .number li, #post.archive .record_wrap .post_page_navi .wp-pagenavi .number li, #post.archive .archivement_wrap .post_page_navi .wp-pagenavi .number li, #record .newslist_wrap .post_page_navi .wp-pagenavi .number li, #record .record_wrap .post_page_navi .wp-pagenavi .number li, #record .archivement_wrap .post_page_navi .wp-pagenavi .number li, #archivement .newslist_wrap .post_page_navi .wp-pagenavi .number li, #archivement .record_wrap .post_page_navi .wp-pagenavi .number li, #archivement .archivement_wrap .post_page_navi .wp-pagenavi .number li {
    margin-right: 1.9444444444vw;
  }
}
@media screen and (min-width: 1440px) {
  #newslist .newslist_wrap .post_page_navi .wp-pagenavi .number li, #newslist .record_wrap .post_page_navi .wp-pagenavi .number li, #newslist .archivement_wrap .post_page_navi .wp-pagenavi .number li, #post.archive .newslist_wrap .post_page_navi .wp-pagenavi .number li, #post.archive .record_wrap .post_page_navi .wp-pagenavi .number li, #post.archive .archivement_wrap .post_page_navi .wp-pagenavi .number li, #record .newslist_wrap .post_page_navi .wp-pagenavi .number li, #record .record_wrap .post_page_navi .wp-pagenavi .number li, #record .archivement_wrap .post_page_navi .wp-pagenavi .number li, #archivement .newslist_wrap .post_page_navi .wp-pagenavi .number li, #archivement .record_wrap .post_page_navi .wp-pagenavi .number li, #archivement .archivement_wrap .post_page_navi .wp-pagenavi .number li {
    margin-right: 28px;
  }
}
#newslist .newslist_wrap .post_page_navi .wp-pagenavi .number li:last-child, #newslist .record_wrap .post_page_navi .wp-pagenavi .number li:last-child, #newslist .archivement_wrap .post_page_navi .wp-pagenavi .number li:last-child, #post.archive .newslist_wrap .post_page_navi .wp-pagenavi .number li:last-child, #post.archive .record_wrap .post_page_navi .wp-pagenavi .number li:last-child, #post.archive .archivement_wrap .post_page_navi .wp-pagenavi .number li:last-child, #record .newslist_wrap .post_page_navi .wp-pagenavi .number li:last-child, #record .record_wrap .post_page_navi .wp-pagenavi .number li:last-child, #record .archivement_wrap .post_page_navi .wp-pagenavi .number li:last-child, #archivement .newslist_wrap .post_page_navi .wp-pagenavi .number li:last-child, #archivement .record_wrap .post_page_navi .wp-pagenavi .number li:last-child, #archivement .archivement_wrap .post_page_navi .wp-pagenavi .number li:last-child {
  margin-right: 0;
}
#newslist .newslist_wrap .post_page_navi .wp-pagenavi .number li .page, #newslist .record_wrap .post_page_navi .wp-pagenavi .number li .page, #newslist .archivement_wrap .post_page_navi .wp-pagenavi .number li .page, #post.archive .newslist_wrap .post_page_navi .wp-pagenavi .number li .page, #post.archive .record_wrap .post_page_navi .wp-pagenavi .number li .page, #post.archive .archivement_wrap .post_page_navi .wp-pagenavi .number li .page, #record .newslist_wrap .post_page_navi .wp-pagenavi .number li .page, #record .record_wrap .post_page_navi .wp-pagenavi .number li .page, #record .archivement_wrap .post_page_navi .wp-pagenavi .number li .page, #archivement .newslist_wrap .post_page_navi .wp-pagenavi .number li .page, #archivement .record_wrap .post_page_navi .wp-pagenavi .number li .page, #archivement .archivement_wrap .post_page_navi .wp-pagenavi .number li .page {
  display: inline-block;
  padding: 2.6666666667vw 1.3333333333vw;
  color: #B3B3B3;
}
@media screen and (min-width: 960px) {
  #newslist .newslist_wrap .post_page_navi .wp-pagenavi .number li .page, #newslist .record_wrap .post_page_navi .wp-pagenavi .number li .page, #newslist .archivement_wrap .post_page_navi .wp-pagenavi .number li .page, #post.archive .newslist_wrap .post_page_navi .wp-pagenavi .number li .page, #post.archive .record_wrap .post_page_navi .wp-pagenavi .number li .page, #post.archive .archivement_wrap .post_page_navi .wp-pagenavi .number li .page, #record .newslist_wrap .post_page_navi .wp-pagenavi .number li .page, #record .record_wrap .post_page_navi .wp-pagenavi .number li .page, #record .archivement_wrap .post_page_navi .wp-pagenavi .number li .page, #archivement .newslist_wrap .post_page_navi .wp-pagenavi .number li .page, #archivement .record_wrap .post_page_navi .wp-pagenavi .number li .page, #archivement .archivement_wrap .post_page_navi .wp-pagenavi .number li .page {
    padding: 1.3888888889vw 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  #newslist .newslist_wrap .post_page_navi .wp-pagenavi .number li .page, #newslist .record_wrap .post_page_navi .wp-pagenavi .number li .page, #newslist .archivement_wrap .post_page_navi .wp-pagenavi .number li .page, #post.archive .newslist_wrap .post_page_navi .wp-pagenavi .number li .page, #post.archive .record_wrap .post_page_navi .wp-pagenavi .number li .page, #post.archive .archivement_wrap .post_page_navi .wp-pagenavi .number li .page, #record .newslist_wrap .post_page_navi .wp-pagenavi .number li .page, #record .record_wrap .post_page_navi .wp-pagenavi .number li .page, #record .archivement_wrap .post_page_navi .wp-pagenavi .number li .page, #archivement .newslist_wrap .post_page_navi .wp-pagenavi .number li .page, #archivement .record_wrap .post_page_navi .wp-pagenavi .number li .page, #archivement .archivement_wrap .post_page_navi .wp-pagenavi .number li .page {
    padding: 20px 10px;
  }
}
#newslist .newslist_wrap .post_page_navi .wp-pagenavi .number li .page.current, #newslist .record_wrap .post_page_navi .wp-pagenavi .number li .page.current, #newslist .archivement_wrap .post_page_navi .wp-pagenavi .number li .page.current, #post.archive .newslist_wrap .post_page_navi .wp-pagenavi .number li .page.current, #post.archive .record_wrap .post_page_navi .wp-pagenavi .number li .page.current, #post.archive .archivement_wrap .post_page_navi .wp-pagenavi .number li .page.current, #record .newslist_wrap .post_page_navi .wp-pagenavi .number li .page.current, #record .record_wrap .post_page_navi .wp-pagenavi .number li .page.current, #record .archivement_wrap .post_page_navi .wp-pagenavi .number li .page.current, #archivement .newslist_wrap .post_page_navi .wp-pagenavi .number li .page.current, #archivement .record_wrap .post_page_navi .wp-pagenavi .number li .page.current, #archivement .archivement_wrap .post_page_navi .wp-pagenavi .number li .page.current {
  color: #0036B6;
  position: relative;
}
#newslist .newslist_wrap .post_page_navi .wp-pagenavi .number li .page.current:before, #newslist .record_wrap .post_page_navi .wp-pagenavi .number li .page.current:before, #newslist .archivement_wrap .post_page_navi .wp-pagenavi .number li .page.current:before, #post.archive .newslist_wrap .post_page_navi .wp-pagenavi .number li .page.current:before, #post.archive .record_wrap .post_page_navi .wp-pagenavi .number li .page.current:before, #post.archive .archivement_wrap .post_page_navi .wp-pagenavi .number li .page.current:before, #record .newslist_wrap .post_page_navi .wp-pagenavi .number li .page.current:before, #record .record_wrap .post_page_navi .wp-pagenavi .number li .page.current:before, #record .archivement_wrap .post_page_navi .wp-pagenavi .number li .page.current:before, #archivement .newslist_wrap .post_page_navi .wp-pagenavi .number li .page.current:before, #archivement .record_wrap .post_page_navi .wp-pagenavi .number li .page.current:before, #archivement .archivement_wrap .post_page_navi .wp-pagenavi .number li .page.current:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #0036B6;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
#newslist .newslist_wrap .contents .item a, #newslist .record_wrap .contents .item a, #post.archive .newslist_wrap .contents .item a, #post.archive .record_wrap .contents .item a, #record .newslist_wrap .contents .item a, #record .record_wrap .contents .item a, #archivement .newslist_wrap .contents .item a, #archivement .record_wrap .contents .item a {
  width: 100%;
  padding: 4.2666666667vw 0;
  position: relative;
}
@media screen and (min-width: 960px) {
  #newslist .newslist_wrap .contents .item a, #newslist .record_wrap .contents .item a, #post.archive .newslist_wrap .contents .item a, #post.archive .record_wrap .contents .item a, #record .newslist_wrap .contents .item a, #record .record_wrap .contents .item a, #archivement .newslist_wrap .contents .item a, #archivement .record_wrap .contents .item a {
    display: flex;
    align-items: center;
    padding: 2.2222222222vw 0;
  }
}
@media screen and (min-width: 1440px) {
  #newslist .newslist_wrap .contents .item a, #newslist .record_wrap .contents .item a, #post.archive .newslist_wrap .contents .item a, #post.archive .record_wrap .contents .item a, #record .newslist_wrap .contents .item a, #record .record_wrap .contents .item a, #archivement .newslist_wrap .contents .item a, #archivement .record_wrap .contents .item a {
    padding: 32px 0;
  }
}
#newslist .newslist_wrap .contents .item a ul li, #newslist .record_wrap .contents .item a ul li, #post.archive .newslist_wrap .contents .item a ul li, #post.archive .record_wrap .contents .item a ul li, #record .newslist_wrap .contents .item a ul li, #record .record_wrap .contents .item a ul li, #archivement .newslist_wrap .contents .item a ul li, #archivement .record_wrap .contents .item a ul li {
  margin-right: 2.4vw;
}
@media screen and (min-width: 960px) {
  #newslist .newslist_wrap .contents .item a ul li, #newslist .record_wrap .contents .item a ul li, #post.archive .newslist_wrap .contents .item a ul li, #post.archive .record_wrap .contents .item a ul li, #record .newslist_wrap .contents .item a ul li, #record .record_wrap .contents .item a ul li, #archivement .newslist_wrap .contents .item a ul li, #archivement .record_wrap .contents .item a ul li {
    margin-right: 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  #newslist .newslist_wrap .contents .item a ul li, #newslist .record_wrap .contents .item a ul li, #post.archive .newslist_wrap .contents .item a ul li, #post.archive .record_wrap .contents .item a ul li, #record .newslist_wrap .contents .item a ul li, #record .record_wrap .contents .item a ul li, #archivement .newslist_wrap .contents .item a ul li, #archivement .record_wrap .contents .item a ul li {
    margin-right: 10px;
  }
}
#newslist .newslist_wrap .contents .item a ul li:last-child, #newslist .record_wrap .contents .item a ul li:last-child, #post.archive .newslist_wrap .contents .item a ul li:last-child, #post.archive .record_wrap .contents .item a ul li:last-child, #record .newslist_wrap .contents .item a ul li:last-child, #record .record_wrap .contents .item a ul li:last-child, #archivement .newslist_wrap .contents .item a ul li:last-child, #archivement .record_wrap .contents .item a ul li:last-child {
  margin-right: 0;
}
#newslist .newslist_wrap .contents .item a ul li.date, #newslist .record_wrap .contents .item a ul li.date, #post.archive .newslist_wrap .contents .item a ul li.date, #post.archive .record_wrap .contents .item a ul li.date, #record .newslist_wrap .contents .item a ul li.date, #record .record_wrap .contents .item a ul li.date, #archivement .newslist_wrap .contents .item a ul li.date, #archivement .record_wrap .contents .item a ul li.date {
  width: 18.6666666667vw;
}
@media screen and (min-width: 960px) {
  #newslist .newslist_wrap .contents .item a ul li.date, #newslist .record_wrap .contents .item a ul li.date, #post.archive .newslist_wrap .contents .item a ul li.date, #post.archive .record_wrap .contents .item a ul li.date, #record .newslist_wrap .contents .item a ul li.date, #record .record_wrap .contents .item a ul li.date, #archivement .newslist_wrap .contents .item a ul li.date, #archivement .record_wrap .contents .item a ul li.date {
    width: 10.6666666667vw;
    max-width: 80px;
  }
}
#newslist .newslist_wrap .contents .item a ul li.category, #newslist .record_wrap .contents .item a ul li.category, #post.archive .newslist_wrap .contents .item a ul li.category, #post.archive .record_wrap .contents .item a ul li.category, #record .newslist_wrap .contents .item a ul li.category, #record .record_wrap .contents .item a ul li.category, #archivement .newslist_wrap .contents .item a ul li.category, #archivement .record_wrap .contents .item a ul li.category {
  color: #fff;
  background: linear-gradient(90deg, #0037B0 0%, #2861DC 51.5%, #00A6DB 100%);
}
#newslist .newslist_wrap .contents .item a .title, #newslist .record_wrap .contents .item a .title, #post.archive .newslist_wrap .contents .item a .title, #post.archive .record_wrap .contents .item a .title, #record .newslist_wrap .contents .item a .title, #record .record_wrap .contents .item a .title, #archivement .newslist_wrap .contents .item a .title, #archivement .record_wrap .contents .item a .title {
  padding-right: 7.7333333333vw;
}
@media screen and (min-width: 960px) {
  #newslist .newslist_wrap .contents .item a .title, #newslist .record_wrap .contents .item a .title, #post.archive .newslist_wrap .contents .item a .title, #post.archive .record_wrap .contents .item a .title, #record .newslist_wrap .contents .item a .title, #record .record_wrap .contents .item a .title, #archivement .newslist_wrap .contents .item a .title, #archivement .record_wrap .contents .item a .title {
    padding-right: 2.0833333333vw;
  }
}
@media screen and (min-width: 1440px) {
  #newslist .newslist_wrap .contents .item a .title, #newslist .record_wrap .contents .item a .title, #post.archive .newslist_wrap .contents .item a .title, #post.archive .record_wrap .contents .item a .title, #record .newslist_wrap .contents .item a .title, #record .record_wrap .contents .item a .title, #archivement .newslist_wrap .contents .item a .title, #archivement .record_wrap .contents .item a .title {
    padding-right: 30px;
  }
}
#newslist .newslist_wrap .contents .item a .arrow, #newslist .record_wrap .contents .item a .arrow, #post.archive .newslist_wrap .contents .item a .arrow, #post.archive .record_wrap .contents .item a .arrow, #record .newslist_wrap .contents .item a .arrow, #record .record_wrap .contents .item a .arrow, #archivement .newslist_wrap .contents .item a .arrow, #archivement .record_wrap .contents .item a .arrow {
  width: 7.2vw;
  height: 7.2vw;
  border: 2px solid #0036B6;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 960px) {
  #newslist .newslist_wrap .contents .item a .arrow, #newslist .record_wrap .contents .item a .arrow, #post.archive .newslist_wrap .contents .item a .arrow, #post.archive .record_wrap .contents .item a .arrow, #record .newslist_wrap .contents .item a .arrow, #record .record_wrap .contents .item a .arrow, #archivement .newslist_wrap .contents .item a .arrow, #archivement .record_wrap .contents .item a .arrow {
    width: 1.8055555556vw;
    max-width: 26px;
    height: 1.8055555556vw;
    max-height: 26px;
    border-width: 1px;
  }
}
#newslist .newslist_wrap .contents .item a .arrow span, #newslist .record_wrap .contents .item a .arrow span, #post.archive .newslist_wrap .contents .item a .arrow span, #post.archive .record_wrap .contents .item a .arrow span, #record .newslist_wrap .contents .item a .arrow span, #record .record_wrap .contents .item a .arrow span, #archivement .newslist_wrap .contents .item a .arrow span, #archivement .record_wrap .contents .item a .arrow span {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
#newslist .newslist_wrap .contents .item a .arrow span:before, #newslist .record_wrap .contents .item a .arrow span:before, #post.archive .newslist_wrap .contents .item a .arrow span:before, #post.archive .record_wrap .contents .item a .arrow span:before, #record .newslist_wrap .contents .item a .arrow span:before, #record .record_wrap .contents .item a .arrow span:before, #archivement .newslist_wrap .contents .item a .arrow span:before, #archivement .record_wrap .contents .item a .arrow span:before {
  content: "";
  width: 0.4em;
  height: 0.4em;
  border: 2px solid #0036B6;
  border-left: 0;
  border-bottom: 0;
  position: absolute;
  top: 50%;
  left: 48%;
  transform: translate(-50%, -50%) rotate3d(0, 0, 1, 45deg);
  transition: all 0.4s;
}
@media screen and (min-width: 960px) {
  #newslist .newslist_wrap .contents .item a .arrow span:before, #newslist .record_wrap .contents .item a .arrow span:before, #post.archive .newslist_wrap .contents .item a .arrow span:before, #post.archive .record_wrap .contents .item a .arrow span:before, #record .newslist_wrap .contents .item a .arrow span:before, #record .record_wrap .contents .item a .arrow span:before, #archivement .newslist_wrap .contents .item a .arrow span:before, #archivement .record_wrap .contents .item a .arrow span:before {
    width: 0.2em;
    height: 0.2em;
    border-width: 1px;
  }
}
@media screen and (min-width: 960px) {
  #newslist .newslist_wrap .contents .item a:hover, #newslist .record_wrap .contents .item a:hover, #post.archive .newslist_wrap .contents .item a:hover, #post.archive .record_wrap .contents .item a:hover, #record .newslist_wrap .contents .item a:hover, #record .record_wrap .contents .item a:hover, #archivement .newslist_wrap .contents .item a:hover, #archivement .record_wrap .contents .item a:hover {
    opacity: 0.6;
  }
}
#newslist .archivement_wrap .contents .item, #post.archive .archivement_wrap .contents .item, #record .archivement_wrap .contents .item, #archivement .archivement_wrap .contents .item {
  padding: 4.2666666667vw 0;
  position: relative;
}
@media screen and (min-width: 960px) {
  #newslist .archivement_wrap .contents .item, #post.archive .archivement_wrap .contents .item, #record .archivement_wrap .contents .item, #archivement .archivement_wrap .contents .item {
    display: flex;
    align-items: center;
    padding: 2.2222222222vw 0;
  }
}
@media screen and (min-width: 1440px) {
  #newslist .archivement_wrap .contents .item, #post.archive .archivement_wrap .contents .item, #record .archivement_wrap .contents .item, #archivement .archivement_wrap .contents .item {
    padding: 32px 0;
  }
}
#newslist .archivement_wrap .contents .item ul li, #post.archive .archivement_wrap .contents .item ul li, #record .archivement_wrap .contents .item ul li, #archivement .archivement_wrap .contents .item ul li {
  margin-right: 2.4vw;
}
@media screen and (min-width: 960px) {
  #newslist .archivement_wrap .contents .item ul li, #post.archive .archivement_wrap .contents .item ul li, #record .archivement_wrap .contents .item ul li, #archivement .archivement_wrap .contents .item ul li {
    margin-right: 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  #newslist .archivement_wrap .contents .item ul li, #post.archive .archivement_wrap .contents .item ul li, #record .archivement_wrap .contents .item ul li, #archivement .archivement_wrap .contents .item ul li {
    margin-right: 10px;
  }
}
#newslist .archivement_wrap .contents .item ul li:last-child, #post.archive .archivement_wrap .contents .item ul li:last-child, #record .archivement_wrap .contents .item ul li:last-child, #archivement .archivement_wrap .contents .item ul li:last-child {
  margin-right: 0;
}
#newslist .archivement_wrap .contents .item ul li.date, #post.archive .archivement_wrap .contents .item ul li.date, #record .archivement_wrap .contents .item ul li.date, #archivement .archivement_wrap .contents .item ul li.date {
  width: 9.3333333333vw;
  margin-right: 5.3333333333vw;
}
@media screen and (min-width: 960px) {
  #newslist .archivement_wrap .contents .item ul li.date, #post.archive .archivement_wrap .contents .item ul li.date, #record .archivement_wrap .contents .item ul li.date, #archivement .archivement_wrap .contents .item ul li.date {
    width: 4.8vw;
    max-width: 36px;
    margin-right: 1.6666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  #newslist .archivement_wrap .contents .item ul li.date, #post.archive .archivement_wrap .contents .item ul li.date, #record .archivement_wrap .contents .item ul li.date, #archivement .archivement_wrap .contents .item ul li.date {
    margin-right: 24px;
  }
}
#newslist .archivement_wrap .contents .item ul li.category, #post.archive .archivement_wrap .contents .item ul li.category, #record .archivement_wrap .contents .item ul li.category, #archivement .archivement_wrap .contents .item ul li.category {
  margin-right: 3.2vw;
  color: #fff;
  background: linear-gradient(90deg, #0037B0 0%, #2861DC 51.5%, #00A6DB 100%);
}
@media screen and (min-width: 960px) {
  #newslist .archivement_wrap .contents .item ul li.category, #post.archive .archivement_wrap .contents .item ul li.category, #record .archivement_wrap .contents .item ul li.category, #archivement .archivement_wrap .contents .item ul li.category {
    margin-right: 0.8333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  #newslist .archivement_wrap .contents .item ul li.category, #post.archive .archivement_wrap .contents .item ul li.category, #record .archivement_wrap .contents .item ul li.category, #archivement .archivement_wrap .contents .item ul li.category {
    margin-right: 12px;
  }
}
#newslist .archivement_wrap .contents .item ul li.category.design, #post.archive .archivement_wrap .contents .item ul li.category.design, #record .archivement_wrap .contents .item ul li.category.design, #archivement .archivement_wrap .contents .item ul li.category.design {
  background: linear-gradient(90deg, #4700C0 0%, #6A48C8 51.5%, #8D59E8 100%);
}
#newslist .archivement_wrap .contents .item ul li.category.measurement, #post.archive .archivement_wrap .contents .item ul li.category.measurement, #record .archivement_wrap .contents .item ul li.category.measurement, #archivement .archivement_wrap .contents .item ul li.category.measurement {
  background: linear-gradient(90deg, #0037B0 0%, #2861DC 51.5%, #00A6DB 100%);
}
#newslist .archivement_wrap .contents .item ul li.category.client-support, #post.archive .archivement_wrap .contents .item ul li.category.client-support, #record .archivement_wrap .contents .item ul li.category.client-support, #archivement .archivement_wrap .contents .item ul li.category.client-support {
  background: linear-gradient(90deg, #A60FDC 0%, #A54FE5 51.5%, #BC76F1 100%);
}
#newslist .archivement_wrap .contents .item ul li.category.environmental-research, #post.archive .archivement_wrap .contents .item ul li.category.environmental-research, #record .archivement_wrap .contents .item ul li.category.environmental-research, #archivement .archivement_wrap .contents .item ul li.category.environmental-research {
  background: linear-gradient(90deg, #009104 0%, #10BE00 51.5%, #80D300 100%);
}
#newslist .archivement_wrap .contents .item ul li.category.structure-inspection, #post.archive .archivement_wrap .contents .item ul li.category.structure-inspection, #record .archivement_wrap .contents .item ul li.category.structure-inspection, #archivement .archivement_wrap .contents .item ul li.category.structure-inspection {
  background: linear-gradient(90deg, #D50E00 0%, #FF4600 51.5%, #FF7457 100%);
}
#newslist .archivement_wrap .contents .item ul li.category.geological-survey, #post.archive .archivement_wrap .contents .item ul li.category.geological-survey, #record .archivement_wrap .contents .item ul li.category.geological-survey, #archivement .archivement_wrap .contents .item ul li.category.geological-survey {
  background: linear-gradient(90deg, #B05F00 0%, #DE7D00 51.5%, #F0B300 100%);
}
#newslist .archivement_wrap .contents .item ul li.tag, #post.archive .archivement_wrap .contents .item ul li.tag, #record .archivement_wrap .contents .item ul li.tag, #archivement .archivement_wrap .contents .item ul li.tag {
  border: 1px solid #0036B6;
}

/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

		post

----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/
#post.single, #record.single {
  /*================================
  post
  =================================*/
}
#post.single .post_wrap, #record.single .post_wrap {
  margin-bottom: 16vw;
  padding: 0 6vw;
  /*================================
  top
  =================================*/
  /*================================
  contents
  =================================*/
}
@media screen and (min-width: 960px) {
  #post.single .post_wrap, #record.single .post_wrap {
    width: 90.2777777778vw;
    max-width: 1300px;
    margin: 0 auto 18.3333333333vw;
    padding: 0;
  }
}
@media screen and (min-width: 1440px) {
  #post.single .post_wrap, #record.single .post_wrap {
    margin-bottom: 264px;
  }
}
#post.single .post_wrap .top, #record.single .post_wrap .top {
  margin-bottom: 8vw;
  padding-bottom: 3.7333333333vw;
  border-bottom: 1px solid #0036B6;
}
@media screen and (min-width: 960px) {
  #post.single .post_wrap .top, #record.single .post_wrap .top {
    margin-bottom: 4.1666666667vw;
    padding-bottom: 1.9444444444vw;
  }
}
@media screen and (min-width: 1440px) {
  #post.single .post_wrap .top, #record.single .post_wrap .top {
    margin-bottom: 60px;
    padding-bottom: 28px;
  }
}
#post.single .post_wrap .top ul, #record.single .post_wrap .top ul {
  display: flex;
  align-items: center;
  margin-bottom: 2.6666666667vw;
}
@media screen and (min-width: 960px) {
  #post.single .post_wrap .top ul, #record.single .post_wrap .top ul {
    margin-bottom: 1.25vw;
  }
}
@media screen and (min-width: 1440px) {
  #post.single .post_wrap .top ul, #record.single .post_wrap .top ul {
    margin-bottom: 18px;
  }
}
#post.single .post_wrap .top ul li, #record.single .post_wrap .top ul li {
  margin-right: 2.4vw;
  line-height: 1;
}
@media screen and (min-width: 960px) {
  #post.single .post_wrap .top ul li, #record.single .post_wrap .top ul li {
    margin-right: 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  #post.single .post_wrap .top ul li, #record.single .post_wrap .top ul li {
    margin-right: 10px;
  }
}
#post.single .post_wrap .top ul li:last-child, #record.single .post_wrap .top ul li:last-child {
  margin-right: 0;
}
#post.single .post_wrap .top ul li.date, #record.single .post_wrap .top ul li.date {
  width: 18.6666666667vw;
  font-size: 3.4666666667vw;
}
@media screen and (min-width: 960px) {
  #post.single .post_wrap .top ul li.date, #record.single .post_wrap .top ul li.date {
    width: 10.6666666667vw;
    max-width: 80px;
    font-size: 1.0416666667vw;
  }
}
@media screen and (min-width: 1440px) {
  #post.single .post_wrap .top ul li.date, #record.single .post_wrap .top ul li.date {
    font-size: 15px;
  }
}
#post.single .post_wrap .top ul li.category, #record.single .post_wrap .top ul li.category {
  width: 26.6666666667vw;
  padding: 1.6vw 0;
  font-size: 2.9333333333vw;
  text-align: center;
  color: #fff;
  background: linear-gradient(90deg, #0037B0 0%, #2861DC 51.5%, #00A6DB 100%);
  border-radius: 0.5333333333vw;
}
@media screen and (min-width: 960px) {
  #post.single .post_wrap .top ul li.category, #record.single .post_wrap .top ul li.category {
    width: 7.7777777778vw;
    max-width: 112px;
    padding: 0.4861111111vw 0;
    font-size: 0.8333333333vw;
    border-radius: 0.2777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  #post.single .post_wrap .top ul li.category, #record.single .post_wrap .top ul li.category {
    font-size: 12px;
    padding: 7px 0;
    border-radius: 4px;
  }
}
#post.single .post_wrap .top .title, #record.single .post_wrap .top .title {
  font-size: 5.0666666667vw;
}
@media screen and (min-width: 960px) {
  #post.single .post_wrap .top .title, #record.single .post_wrap .top .title {
    font-size: 1.5277777778vw;
  }
}
@media screen and (min-width: 1440px) {
  #post.single .post_wrap .top .title, #record.single .post_wrap .top .title {
    font-size: 22px;
  }
}
#post.single .post_wrap .contents, #record.single .post_wrap .contents {
  margin-bottom: 13.3333333333vw;
}
@media screen and (min-width: 960px) {
  #post.single .post_wrap .contents, #record.single .post_wrap .contents {
    margin-bottom: 7.6388888889vw;
  }
}
@media screen and (min-width: 1440px) {
  #post.single .post_wrap .contents, #record.single .post_wrap .contents {
    margin-bottom: 110px;
  }
}
#post.single .post_wrap .contents *, #record.single .post_wrap .contents * {
  font-size: 3.7333333333vw;
  line-height: 2.5;
}
@media screen and (min-width: 960px) {
  #post.single .post_wrap .contents *, #record.single .post_wrap .contents * {
    font-size: 1.1111111111vw;
    line-height: 3;
  }
}
@media screen and (min-width: 1440px) {
  #post.single .post_wrap .contents *, #record.single .post_wrap .contents * {
    font-size: 16px;
    line-height: 3;
  }
}
#post.single .post_wrap .contents p a, #record.single .post_wrap .contents p a {
  line-height: 1;
  border-bottom: 1px solid #0036B6;
}
@media screen and (min-width: 960px) {
  #post.single .post_wrap .contents a:hover, #record.single .post_wrap .contents a:hover {
    opacity: 0.6;
  }
}
#post.single .post_wrap .return_btn, #record.single .post_wrap .return_btn {
  text-align: center;
}
#post.single .post_wrap .return_btn a, #record.single .post_wrap .return_btn a {
  padding-bottom: 2.4vw;
  font-size: 4.5333333333vw;
  line-height: 1;
  letter-spacing: 0.075em;
  border-bottom: 1px solid #0036B6;
}
@media screen and (min-width: 960px) {
  #post.single .post_wrap .return_btn a, #record.single .post_wrap .return_btn a {
    padding-bottom: 1.25vw;
    font-size: 1.4583333333vw;
  }
}
@media screen and (min-width: 1440px) {
  #post.single .post_wrap .return_btn a, #record.single .post_wrap .return_btn a {
    padding-bottom: 18px;
    font-size: 21px;
  }
}
@media screen and (min-width: 960px) {
  #post.single .post_wrap .return_btn a:hover:hover, #record.single .post_wrap .return_btn a:hover:hover {
    opacity: 0.6;
  }
}

/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

		contact

----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/
/*================================
form
=================================*/
.form_wrap {
  margin-bottom: 33.3333333333vw;
}
@media screen and (min-width: 960px) {
  .form_wrap {
    margin-bottom: 20.8333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .form_wrap {
    margin-bottom: 300px;
  }
}
.form_wrap .inner {
  padding: 0 6vw;
}
@media screen and (min-width: 960px) {
  .form_wrap .inner {
    width: 90.2777777778vw;
    max-width: 1300px;
    margin: 0 auto 13.8888888889vw;
    padding: 0;
  }
}
.form_wrap .inner .contents {
  padding: 13.3333333333vw 6vw;
  border: 1px solid #0036B6;
  border-radius: 6px;
}
@media screen and (min-width: 960px) {
  .form_wrap .inner .contents {
    padding: 6.9444444444vw 0;
    border-radius: 0.2777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .form_wrap .inner .contents {
    padding: 100px 0;
    border-radius: 4px;
  }
}
.form_wrap .inner .contents .top_text {
  text-align: center;
}
@media screen and (min-width: 960px) {
  .form_wrap .inner .contents .form {
    width: 65.9722222222vw;
    max-width: 950px;
    margin: 0 auto;
  }
}
.form_wrap .inner .contents .form .list {
  margin-bottom: 8vw;
}
@media screen and (min-width: 960px) {
  .form_wrap .inner .contents .form .list {
    margin-bottom: 2.6388888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .form_wrap .inner .contents .form .list {
    margin-bottom: 38px;
  }
}
.form_wrap .inner .contents .form .list dl {
  margin-bottom: 4.5333333333vw;
  padding-bottom: 4.5333333333vw;
  border-bottom: 1px solid #D1D1D1;
}
@media screen and (min-width: 960px) {
  .form_wrap .inner .contents .form .list dl {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.3888888889vw;
    padding-bottom: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .form_wrap .inner .contents .form .list dl {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}
.form_wrap .inner .contents .form .list dl:last-child {
  margin-bottom: 0;
}
.form_wrap .inner .contents .form .list dl dt {
  margin-bottom: 3.2vw;
}
@media screen and (min-width: 960px) {
  .form_wrap .inner .contents .form .list dl dt {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 17.9166666667vw;
    max-width: 258px;
    margin-right: 1.3888888889vw;
    margin-bottom: 0;
    flex-shrink: 0;
  }
}
@media screen and (min-width: 1440px) {
  .form_wrap .inner .contents .form .list dl dt {
    margin-right: 20px;
  }
}
.form_wrap .inner .contents .form .list dl dt span {
  display: inline-block;
}
.form_wrap .inner .contents .form .list dl dt span.form_title {
  margin-right: 2.6666666667vw;
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 960px) {
  .form_wrap .inner .contents .form .list dl dt span.form_title {
    margin-right: 0;
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .form_wrap .inner .contents .form .list dl dt span.form_title {
    font-size: 16px;
  }
}
.form_wrap .inner .contents .form .list dl dt span.required {
  padding: 6px 18px;
  font-size: 2.6666666667vw;
  line-height: 1;
  color: #fff;
  background: #0036B6;
}
@media screen and (min-width: 960px) {
  .form_wrap .inner .contents .form .list dl dt span.required {
    padding: 0.2777777778vw 0.5555555556vw;
    font-size: 0.9027777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .form_wrap .inner .contents .form .list dl dt span.required {
    padding: 4px 8px;
    font-size: 13px;
  }
}
.form_wrap .inner .contents .form .list dl dd, .form_wrap .inner .contents .form .list dl dd input, .form_wrap .inner .contents .form .list dl dd textarea {
  width: 100%;
}
.form_wrap .inner .contents .form .list dl dd input, .form_wrap .inner .contents .form .list dl dd textarea {
  padding: 2.6666666667vw;
  border: none;
  background: #F1F1F1;
}
@media screen and (min-width: 960px) {
  .form_wrap .inner .contents .form .list dl dd input, .form_wrap .inner .contents .form .list dl dd textarea {
    height: 3.1944444444vw;
    max-height: 46px;
    padding: 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .form_wrap .inner .contents .form .list dl dd input, .form_wrap .inner .contents .form .list dl dd textarea {
    height: 3.1944444444vw;
    max-height: 46px;
    padding: 10px;
  }
}
.form_wrap .inner .contents .form .list dl dd input {
  height: 9.8666666667vw;
}
@media screen and (min-width: 960px) {
  .form_wrap .inner .contents .form .list dl dd input {
    height: 3.1944444444vw;
    max-height: 46px;
  }
}
.form_wrap .inner .contents .form .list dl dd textarea {
  height: 53.3333333333vw;
}
@media screen and (min-width: 960px) {
  .form_wrap .inner .contents .form .list dl dd textarea {
    height: 13.8888888889vw;
    max-height: 200px;
  }
}
.form_wrap .inner .contents .form .list dl dd .wpcf7-not-valid-tip {
  font-size: 2.9333333333vw;
}
@media screen and (min-width: 960px) {
  .form_wrap .inner .contents .form .list dl dd .wpcf7-not-valid-tip {
    font-size: 0.9722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .form_wrap .inner .contents .form .list dl dd .wpcf7-not-valid-tip {
    font-size: 14px;
  }
}
.form_wrap .inner .contents .form .policy_check, .form_wrap .inner .contents .form .policy_check * {
  font-size: 2.9333333333vw;
}
@media screen and (min-width: 960px) {
  .form_wrap .inner .contents .form .policy_check, .form_wrap .inner .contents .form .policy_check * {
    font-size: 0.9722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .form_wrap .inner .contents .form .policy_check, .form_wrap .inner .contents .form .policy_check * {
    font-size: 14px;
  }
}
.form_wrap .inner .contents .form .policy_check {
  margin-bottom: 6vw;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .form_wrap .inner .contents .form .policy_check {
    margin-bottom: 2.0833333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .form_wrap .inner .contents .form .policy_check {
    margin-bottom: 30px;
  }
}
.form_wrap .inner .contents .form .policy_check a {
  border-bottom: 1px solid #0036B6;
}
@media screen and (min-width: 960px) {
  .form_wrap .inner .contents .form .policy_check a:hover {
    opacity: 0.6;
  }
}
.form_wrap .inner .contents .form .policy_check input[type=checkbox] {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.form_wrap .inner .contents .form .policy_check label {
  display: inline-block;
  padding-left: 4.6666666667vw;
  cursor: pointer;
  position: relative;
}
@media screen and (min-width: 960px) {
  .form_wrap .inner .contents .form .policy_check label {
    padding-left: 1.7361111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .form_wrap .inner .contents .form .policy_check label {
    padding-left: 25px;
  }
}
.form_wrap .inner .contents .form .policy_check label:before, .form_wrap .inner .contents .form .policy_check label:after {
  content: "";
  display: block;
  position: absolute;
}
.form_wrap .inner .contents .form .policy_check label:before {
  width: 2.6666666667vw;
  height: 2.6666666667vw;
  border: 1px solid #0036B6;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 960px) {
  .form_wrap .inner .contents .form .policy_check label:before {
    width: 1.1111111111vw;
    max-width: 16px;
    height: 1.1111111111vw;
    max-height: 16px;
  }
}
.form_wrap .inner .contents .form .policy_check label:after {
  width: 1.2vw;
  height: 0.5333333333vw;
  border-left: 2px solid #0036B6;
  border-bottom: 2px solid #0036B6;
  top: 38%;
  left: 1.8%;
  transform: rotate(-45deg);
  opacity: 0;
}
@media screen and (min-width: 960px) {
  .form_wrap .inner .contents .form .policy_check label:after {
    width: 0.5555555556vw;
    max-width: 8px;
    height: 0.2083333333vw;
    max-height: 3px;
  }
}
.form_wrap .inner .contents .form .policy_check label.checked:after {
  opacity: 1;
}
.form_wrap .inner .contents .form .form_btn {
  width: 53.3333333333vw;
  margin: 0 auto;
  text-align: center;
  background: #0036B6;
  border: 1px solid #0036B6;
  border-radius: 0.8vw;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  .form_wrap .inner .contents .form .form_btn {
    width: 15.2777777778vw;
    max-width: 220px;
    border-radius: 0.2777777778vw;
    z-index: 0;
  }
}
@media screen and (min-width: 1440px) {
  .form_wrap .inner .contents .form .form_btn {
    border-radius: 4px;
  }
}
@media screen and (min-width: 960px) {
  .form_wrap .inner .contents .form .form_btn:before {
    content: "";
    width: 100%;
    height: 200%;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: right top;
    transform: scale(0, 1);
    transition: transform 0.3s;
    z-index: 1;
  }
}
@media screen and (min-width: 960px) {
  .form_wrap .inner .contents .form .form_btn:hover:before {
    transform-origin: left top;
    transform: scale(1, 1);
  }
  .form_wrap .inner .contents .form .form_btn:hover input {
    color: #0036B6;
    background: #fff;
  }
}
.form_wrap .inner .contents .form .form_btn input {
  width: 100%;
  padding: 3.2vw 0 3.4666666667vw;
  color: #fff;
  background: transparent;
  border: none;
  transition: all 0.3s;
  cursor: pointer;
}
@media screen and (min-width: 960px) {
  .form_wrap .inner .contents .form .form_btn input {
    padding: 0.8333333333vw 0 0.9722222222vw;
    position: relative;
    z-index: 2;
  }
}
@media screen and (min-width: 1440px) {
  .form_wrap .inner .contents .form .form_btn input {
    padding: 12px 0 14px;
  }
}
.form_wrap .inner .contents .form .form_btn .wpcf7-spinner {
  display: none;
}

/*================================
contact
=================================*/
#contact .form_wrap .inner .contents .top_text {
  margin-bottom: 10.6666666667vw;
  line-height: 2.5;
}
@media screen and (min-width: 960px) {
  #contact .form_wrap .inner .contents .top_text {
    margin-bottom: 6.9444444444vw;
  }
}
@media screen and (min-width: 1440px) {
  #contact .form_wrap .inner .contents .top_text {
    margin-bottom: 100px;
  }
}
@media screen and (min-width: 960px) {
  #contact .form_wrap .inner .contents .form .list dl dt dt {
    padding-top: 0.8333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  #contact .form_wrap .inner .contents .form .list dl dt dt {
    padding-top: 12px;
  }
}

/*================================
confirmation
=================================*/
#confirmation .form_wrap .inner .contents .top_text {
  margin-bottom: 22.6666666667vw;
  font-size: 5.0666666667vw;
}
@media screen and (min-width: 960px) {
  #confirmation .form_wrap .inner .contents .top_text {
    margin-bottom: 8.3333333333vw;
    font-size: 1.8055555556vw;
  }
}
@media screen and (min-width: 1440px) {
  #confirmation .form_wrap .inner .contents .top_text {
    margin-bottom: 120px;
    font-size: 26px;
  }
}
#confirmation .form_wrap .inner .contents .form .form_btn {
  margin-bottom: 2.6666666667vw;
}
@media screen and (min-width: 960px) {
  #confirmation .form_wrap .inner .contents .form .form_btn {
    margin-bottom: 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  #confirmation .form_wrap .inner .contents .form .form_btn {
    margin-bottom: 10px;
  }
}
#confirmation .form_wrap .inner .contents .form .return_btn {
  font-size: 3.7333333333vw;
  text-align: center;
}
@media screen and (min-width: 960px) {
  #confirmation .form_wrap .inner .contents .form .return_btn {
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  #confirmation .form_wrap .inner .contents .form .return_btn {
    font-size: 16px;
  }
}
#confirmation .form_wrap .inner .contents .form .return_btn input {
  color: #0036B6;
  background: transparent;
  border-top: unset;
  border-right: unset;
  border-left: unset;
  border-bottom: 1px solid #0036B6;
  cursor: pointer;
}

/*================================
completed
=================================*/
#completed .form_wrap .inner .contents .top_text {
  margin-bottom: 16vw;
  font-size: 5.0666666667vw;
}
@media screen and (min-width: 960px) {
  #completed .form_wrap .inner .contents .top_text {
    margin-bottom: 5.5555555556vw;
    font-size: 1.8055555556vw;
  }
}
@media screen and (min-width: 1440px) {
  #completed .form_wrap .inner .contents .top_text {
    margin-bottom: 80px;
    font-size: 26px;
  }
}
#completed .form_wrap .inner .contents .form .thx_text {
  margin-bottom: 16vw;
  line-height: 1.75;
}
@media screen and (min-width: 960px) {
  #completed .form_wrap .inner .contents .form .thx_text {
    margin-bottom: 5.5555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  #completed .form_wrap .inner .contents .form .thx_text {
    margin-bottom: 80px;
  }
}
#completed .form_wrap .inner .contents .form .return_btn {
  width: 53.3333333333vw;
  margin: 0 auto;
  text-align: center;
  background: #0036B6;
  border: 1px solid #0036B6;
  border-radius: 0.8vw;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  #completed .form_wrap .inner .contents .form .return_btn {
    width: 15.2777777778vw;
    max-width: 220px;
    border-radius: 0.2777777778vw;
    z-index: 0;
  }
}
@media screen and (min-width: 1440px) {
  #completed .form_wrap .inner .contents .form .return_btn {
    border-radius: 4px;
  }
}
@media screen and (min-width: 960px) {
  #completed .form_wrap .inner .contents .form .return_btn:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: right top;
    transform: scale(0, 1);
    transition: transform 0.3s;
    z-index: 1;
  }
}
@media screen and (min-width: 960px) {
  #completed .form_wrap .inner .contents .form .return_btn:hover:before {
    transform-origin: left top;
    transform: scale(1, 1);
  }
  #completed .form_wrap .inner .contents .form .return_btn:hover a {
    color: #0036B6;
    background: #fff;
  }
}
#completed .form_wrap .inner .contents .form .return_btn a {
  width: 100%;
  padding: 3.2vw 0;
  color: #fff;
  background: transparent;
  border: none;
  transition: all 0.3s;
  cursor: pointer;
}
@media screen and (min-width: 960px) {
  #completed .form_wrap .inner .contents .form .return_btn a {
    padding: 0.8333333333vw 0;
    position: relative;
    z-index: 2;
  }
}
@media screen and (min-width: 1440px) {
  #completed .form_wrap .inner .contents .form .return_btn a {
    padding: 12px 0;
  }
}

/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

		privacy policy

----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/
#privacy-policy {
  /*================================
  privacy-policy
  =================================*/
}
#privacy-policy .privacypolicy_wrap {
  margin-bottom: 33.3333333333vw;
  line-height: 2.5;
}
@media screen and (min-width: 960px) {
  #privacy-policy .privacypolicy_wrap {
    margin-bottom: 20.8333333333vw;
  }
}
@media screen and (min-width: 960px) {
  #privacy-policy .privacypolicy_wrap {
    margin-bottom: 300px;
  }
}
#privacy-policy .privacypolicy_wrap .inner {
  padding: 0 6vw;
}
@media screen and (min-width: 960px) {
  #privacy-policy .privacypolicy_wrap .inner {
    width: 90.2777777778vw;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0;
  }
}
#privacy-policy .privacypolicy_wrap .inner .top_text {
  margin-bottom: 16vw;
  font-size: 3.7333333333vw;
  line-height: 2.2;
}
@media screen and (min-width: 960px) {
  #privacy-policy .privacypolicy_wrap .inner .top_text {
    margin-bottom: 6.9444444444vw;
    font-size: 1.1111111111vw;
    line-height: 2.5;
  }
}
@media screen and (min-width: 960px) {
  #privacy-policy .privacypolicy_wrap .inner .top_text {
    margin-bottom: 100px;
    font-size: 16px;
  }
}
#privacy-policy .privacypolicy_wrap .inner .contents dl {
  margin-bottom: 10.6666666667vw;
}
@media screen and (min-width: 960px) {
  #privacy-policy .privacypolicy_wrap .inner .contents dl {
    margin-bottom: 3.1944444444vw;
  }
}
@media screen and (min-width: 960px) {
  #privacy-policy .privacypolicy_wrap .inner .contents dl {
    margin-bottom: 46px;
  }
}
#privacy-policy .privacypolicy_wrap .inner .contents dl dt {
  margin-bottom: 2.6666666667vw;
  padding-bottom: 2.6666666667vw;
  border-bottom: 1px solid #0036B6;
}
@media screen and (min-width: 960px) {
  #privacy-policy .privacypolicy_wrap .inner .contents dl dt {
    margin-bottom: 0.6944444444vw;
    padding-bottom: 0.6944444444vw;
  }
}
@media screen and (min-width: 960px) {
  #privacy-policy .privacypolicy_wrap .inner .contents dl dt {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}
#privacy-policy .privacypolicy_wrap .inner .contents dl dt span {
  font-size: 4.2666666667vw;
  font-weight: 700;
  background: linear-gradient(45deg, #0037B0 0%, #2861DC 51.5%, #00A6DB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width: 960px) {
  #privacy-policy .privacypolicy_wrap .inner .contents dl dt span {
    font-size: 1.5277777778vw;
  }
}
@media screen and (min-width: 960px) {
  #privacy-policy .privacypolicy_wrap .inner .contents dl dt span {
    font-size: 22px;
  }
}
#privacy-policy .privacypolicy_wrap .inner .contents dl dd, #privacy-policy .privacypolicy_wrap .inner .contents dl dd * {
  line-height: 2.2;
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 960px) {
  #privacy-policy .privacypolicy_wrap .inner .contents dl dd, #privacy-policy .privacypolicy_wrap .inner .contents dl dd * {
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 960px) {
  #privacy-policy .privacypolicy_wrap .inner .contents dl dd, #privacy-policy .privacypolicy_wrap .inner .contents dl dd * {
    font-size: 16px;
  }
}
/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

		information security policy

----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/
#information-security-policy {
  /*================================
  policy
  =================================*/
}
#information-security-policy .policy_wrap {
  margin-bottom: 33.3333333333vw;
}
@media screen and (min-width: 960px) {
  #information-security-policy .policy_wrap {
    margin-bottom: 20.8333333333vw;
  }
}
@media screen and (min-width: 960px) {
  #information-security-policy .policy_wrap {
    margin-bottom: 300px;
  }
}
#information-security-policy .policy_wrap .inner {
  padding: 0 6vw;
}
@media screen and (min-width: 960px) {
  #information-security-policy .policy_wrap .inner {
    width: 90.2777777778vw;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0;
  }
}
#information-security-policy .policy_wrap .inner .top_text {
  margin-bottom: 16vw;
  font-size: 3.7333333333vw;
  line-height: 2.2;
}
@media screen and (min-width: 960px) {
  #information-security-policy .policy_wrap .inner .top_text {
    margin-bottom: 6.9444444444vw;
    font-size: 1.1111111111vw;
    line-height: 2.5;
  }
}
@media screen and (min-width: 960px) {
  #information-security-policy .policy_wrap .inner .top_text {
    margin-bottom: 100px;
    font-size: 16px;
  }
}
#information-security-policy .policy_wrap .inner .contents {
  margin-bottom: 10.6666666667vw;
}
@media screen and (min-width: 960px) {
  #information-security-policy .policy_wrap .inner .contents {
    margin-bottom: 3.1944444444vw;
  }
}
@media screen and (min-width: 960px) {
  #information-security-policy .policy_wrap .inner .contents {
    margin-bottom: 46px;
  }
}
#information-security-policy .policy_wrap .inner .contents dl {
  margin-bottom: 10.6666666667vw;
}
@media screen and (min-width: 960px) {
  #information-security-policy .policy_wrap .inner .contents dl {
    margin-bottom: 3.1944444444vw;
  }
}
@media screen and (min-width: 960px) {
  #information-security-policy .policy_wrap .inner .contents dl {
    margin-bottom: 46px;
  }
}
#information-security-policy .policy_wrap .inner .contents dl dt {
  margin-bottom: 2.6666666667vw;
  padding-bottom: 2.6666666667vw;
  border-bottom: 1px solid #0036B6;
}
@media screen and (min-width: 960px) {
  #information-security-policy .policy_wrap .inner .contents dl dt {
    margin-bottom: 0.6944444444vw;
    padding-bottom: 0.6944444444vw;
  }
}
@media screen and (min-width: 960px) {
  #information-security-policy .policy_wrap .inner .contents dl dt {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}
#information-security-policy .policy_wrap .inner .contents dl dt span {
  font-size: 4.2666666667vw;
  font-weight: 700;
  background: linear-gradient(45deg, #0037B0 0%, #2861DC 51.5%, #00A6DB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width: 960px) {
  #information-security-policy .policy_wrap .inner .contents dl dt span {
    font-size: 1.5277777778vw;
  }
}
@media screen and (min-width: 960px) {
  #information-security-policy .policy_wrap .inner .contents dl dt span {
    font-size: 22px;
  }
}
#information-security-policy .policy_wrap .inner .contents dl dd {
  line-height: 2.2;
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 960px) {
  #information-security-policy .policy_wrap .inner .contents dl dd {
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 960px) {
  #information-security-policy .policy_wrap .inner .contents dl dd {
    font-size: 16px;
  }
}
#information-security-policy .policy_wrap .inner .name_wrap .date {
  margin-bottom: 2.6666666667vw;
}
@media screen and (min-width: 960px) {
  #information-security-policy .policy_wrap .inner .name_wrap .date {
    margin-bottom: 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  #information-security-policy .policy_wrap .inner .name_wrap .date {
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 960px) {
  #information-security-policy .policy_wrap .inner .name_wrap dl {
    display: flex;
    align-items: center;
  }
}
#information-security-policy .policy_wrap .inner .name_wrap dl dt {
  margin-bottom: 1.3333333333vw;
  font-size: 4.8vw;
}
@media screen and (min-width: 960px) {
  #information-security-policy .policy_wrap .inner .name_wrap dl dt {
    margin-bottom: 0;
    margin-right: 0.3472222222vw;
    font-size: 1.5277777778vw;
  }
}
@media screen and (min-width: 1440px) {
  #information-security-policy .policy_wrap .inner .name_wrap dl dt {
    margin-right: 5px;
    font-size: 22px;
  }
}

/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

		information disclosure

----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/
#information-disclosure {
  /*================================
  privac-policy
  =================================*/
}
#information-disclosure .policy_wrap {
  margin-bottom: 33.3333333333vw;
  line-height: 2.5;
}
@media screen and (min-width: 960px) {
  #information-disclosure .policy_wrap {
    margin-bottom: 20.8333333333vw;
  }
}
@media screen and (min-width: 960px) {
  #information-disclosure .policy_wrap {
    margin-bottom: 300px;
  }
}
#information-disclosure .policy_wrap .inner {
  padding: 0 6vw;
}
@media screen and (min-width: 960px) {
  #information-disclosure .policy_wrap .inner {
    width: 90.2777777778vw;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0;
  }
}
#information-disclosure .policy_wrap .inner .top_title {
  margin-bottom: 2.6666666667vw;
  padding-bottom: 1.3333333333vw;
  border-bottom: 1px solid #0036B6;
}
@media screen and (min-width: 960px) {
  #information-disclosure .policy_wrap .inner .top_title {
    margin-bottom: 1.6666666667vw;
    padding-bottom: 0.5555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  #information-disclosure .policy_wrap .inner .top_title {
    margin-bottom: 24px;
    padding-bottom: 12px;
  }
}
#information-disclosure .policy_wrap .inner .top_title span {
  display: inline-block;
  font-size: 4.2666666667vw;
  font-weight: 700;
  line-height: 1.5;
  background: linear-gradient(45deg, #0037B0 0%, #2861DC 51.5%, #00A6DB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width: 960px) {
  #information-disclosure .policy_wrap .inner .top_title span {
    font-size: 1.5277777778vw;
  }
}
@media screen and (min-width: 1440px) {
  #information-disclosure .policy_wrap .inner .top_title span {
    font-size: 22px;
  }
}
#information-disclosure .policy_wrap .inner .contents * {
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 960px) {
  #information-disclosure .policy_wrap .inner .contents * {
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  #information-disclosure .policy_wrap .inner .contents * {
    font-size: 16px;
  }
}
#information-disclosure .policy_wrap .inner .contents .parent > li {
  margin-bottom: 8vw;
}
@media screen and (min-width: 960px) {
  #information-disclosure .policy_wrap .inner .contents .parent > li {
    margin-bottom: 2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  #information-disclosure .policy_wrap .inner .contents .parent > li {
    margin-bottom: 40px;
  }
}
#information-disclosure .policy_wrap .inner .contents .parent > li:first-child, #information-disclosure .policy_wrap .inner .contents .parent > li:last-child {
  margin-bottom: 0;
}
#information-disclosure .policy_wrap .inner .contents .parent > li .list_text {
  display: inline-block;
  margin-left: 1em;
  text-indent: -2em;
  padding-left: 1em;
}
#information-disclosure .policy_wrap .inner .contents .parent > li .list_text:before {
  margin-right: 1em;
  content: attr(data-label);
}
#information-disclosure .policy_wrap .inner .contents .parent > li .child {
  margin-left: 2em;
}
#information-disclosure .policy_wrap .inner .contents .parent > li ol {
  margin-bottom: 1px;
}
#information-disclosure .policy_wrap .inner .contents .parent > li ol > li > dl dt {
  margin-left: 2em;
  text-indent: -2em;
}
#information-disclosure .policy_wrap .inner .contents .parent > li ol > li > dl dd .child {
  margin-left: 2em;
}
@media screen and (min-width: 960px) {
  #information-disclosure .policy_wrap .inner .contents .parent > li ol > li > dl dd .child {
    margin-left: 3em;
  }
}

/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

		parent / other

----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/
.parent_wrap, .other_wrap {
  margin-bottom: 26.6666666667vw;
  padding: 0 6vw;
}
@media screen and (min-width: 960px) {
  .parent_wrap, .other_wrap {
    width: 90.2777777778vw;
    max-width: 1300px;
    margin: 0 auto 13.8888888889vw;
    padding: 0;
  }
}
@media screen and (min-width: 1440px) {
  .parent_wrap, .other_wrap {
    margin-bottom: 200px;
  }
}
@media screen and (min-width: 960px) {
  .parent_wrap .contents, .other_wrap .contents {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
}
.parent_wrap .contents .item, .other_wrap .contents .item {
  width: 88vw;
  margin-bottom: 10.6666666667vw;
}
@media screen and (min-width: 960px) {
  .parent_wrap .contents .item, .other_wrap .contents .item {
    width: 27.5vw;
    max-width: 396px;
  }
}
.parent_wrap .contents .item:last-child, .other_wrap .contents .item:last-child {
  margin-bottom: 0;
}
.parent_wrap .contents .item__001 .image_wrap .image, .other_wrap .contents .item__001 .image_wrap .image {
  clip-path: url(#parent_path001);
}
.parent_wrap .contents .item__002 .image_wrap .image, .other_wrap .contents .item__002 .image_wrap .image {
  clip-path: url(#parent_path002);
}
.parent_wrap .contents .item__003 .image_wrap .image, .other_wrap .contents .item__003 .image_wrap .image {
  clip-path: url(#parent_path003);
}
.parent_wrap .contents .item__004 .image_wrap .image, .other_wrap .contents .item__004 .image_wrap .image {
  clip-path: url(#parent_path004);
}
.parent_wrap .contents .item__005 .image_wrap .image, .other_wrap .contents .item__005 .image_wrap .image {
  clip-path: url(#parent_path005);
}
.parent_wrap .contents .item__006 .image_wrap .image, .other_wrap .contents .item__006 .image_wrap .image {
  clip-path: url(#parent_path006);
}
.parent_wrap .contents .item a, .other_wrap .contents .item a {
  width: 100%;
}
.parent_wrap .contents .item a .image_wrap, .other_wrap .contents .item a .image_wrap {
  width: 100%;
  height: 69.4666666667vw;
  margin-bottom: 2.6666666667vw;
}
@media screen and (min-width: 960px) {
  .parent_wrap .contents .item a .image_wrap, .other_wrap .contents .item a .image_wrap {
    height: 21.7361111111vw;
    max-height: 313px;
    margin-bottom: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .parent_wrap .contents .item a .image_wrap, .other_wrap .contents .item a .image_wrap {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 960px) {
  .parent_wrap .contents .item a .image_wrap img, .other_wrap .contents .item a .image_wrap img {
    transition: all 0.4s;
  }
}
.parent_wrap .contents .item a .title, .other_wrap .contents .item a .title {
  font-size: 4.8vw;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .parent_wrap .contents .item a .title, .other_wrap .contents .item a .title {
    font-size: 1.8055555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .parent_wrap .contents .item a .title, .other_wrap .contents .item a .title {
    font-size: 26px;
  }
}
@media screen and (min-width: 960px) {
  .parent_wrap .contents .item a:hover .image img, .other_wrap .contents .item a:hover .image img {
    transform: scale(1.05);
  }
}

/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

  about

----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/
#about {
  /*||||||||||||||||||||||||||||||||||||||||||||||||||
  ----------------------------------------------------

    history

  ----------------------------------------------------
  ||||||||||||||||||||||||||||||||||||||||||||||||||||*/
  /*||||||||||||||||||||||||||||||||||||||||||||||||||
  ----------------------------------------------------

    message

  ----------------------------------------------------
  ||||||||||||||||||||||||||||||||||||||||||||||||||||*/
  /*||||||||||||||||||||||||||||||||||||||||||||||||||
  ----------------------------------------------------

    company

  ----------------------------------------------------
  ||||||||||||||||||||||||||||||||||||||||||||||||||||*/
  /*||||||||||||||||||||||||||||||||||||||||||||||||||
  ----------------------------------------------------

    management policy

  ----------------------------------------------------
  ||||||||||||||||||||||||||||||||||||||||||||||||||||*/
}
#about.about {
  /*================================
  about
  =================================*/
}
@media screen and (min-width: 960px) {
  #about.about .parent_wrap .contents .item__001, #about.about .parent_wrap .contents .item__002, #about.about .parent_wrap .contents .item__003 {
    margin-bottom: 6.9444444444vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.about .parent_wrap .contents .item__001, #about.about .parent_wrap .contents .item__002, #about.about .parent_wrap .contents .item__003 {
    margin-bottom: 100px;
  }
}
@media screen and (min-width: 960px) {
  #about.about .parent_wrap .contents .item__001, #about.about .parent_wrap .contents .item__002, #about.about .parent_wrap .contents .item__004 {
    margin-right: 3.1944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.about .parent_wrap .contents .item__001, #about.about .parent_wrap .contents .item__002, #about.about .parent_wrap .contents .item__004 {
    margin-right: 46px;
  }
}
@media screen and (min-width: 960px) {
  #about.about .parent_wrap .contents .item__004, #about.about .parent_wrap .contents .item__005 {
    margin-bottom: 0;
  }
}
#about.history {
  /*================================
  history
  =================================*/
}
#about.history .history_box {
  margin-bottom: 16vw;
  /*================================
  fixed navi
  =================================*/
  /*================================
  history
  =================================*/
}
@media screen and (min-width: 960px) {
  #about.history .history_box {
    display: flex;
    align-items: flex-start;
    width: 90.2777777778vw;
    max-width: 1300px;
    margin: 0 auto 13.8888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.history .history_box {
    margin-bottom: 200px;
  }
}
#about.history .history_box .fixed_anchor_link {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 18.6666666667vw;
  padding: 0 11.7333333333vw;
}
@media screen and (min-width: 960px) {
  #about.history .history_box .fixed_anchor_link {
    display: block;
    width: 18%;
    margin-bottom: 0;
    padding: 0;
    position: sticky;
    top: 31.9444444444vw;
    flex-shrink: 0;
  }
}
@media screen and (min-width: 1440px) {
  #about.history .history_box .fixed_anchor_link {
    top: 460px;
  }
}
#about.history .history_box .fixed_anchor_link li {
  width: 33%;
}
@media screen and (min-width: 960px) {
  #about.history .history_box .fixed_anchor_link li {
    width: 100%;
    margin-bottom: 1.9444444444vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.history .history_box .fixed_anchor_link li {
    margin-bottom: 28px;
  }
}
#about.history .history_box .fixed_anchor_link li:nth-child(1), #about.history .history_box .fixed_anchor_link li:nth-child(2), #about.history .history_box .fixed_anchor_link li:nth-child(3) {
  margin-bottom: 3.3333333333vw;
}
@media screen and (min-width: 960px) {
  #about.history .history_box .fixed_anchor_link li:nth-child(1), #about.history .history_box .fixed_anchor_link li:nth-child(2), #about.history .history_box .fixed_anchor_link li:nth-child(3) {
    margin-bottom: 1.9444444444vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.history .history_box .fixed_anchor_link li:nth-child(1), #about.history .history_box .fixed_anchor_link li:nth-child(2), #about.history .history_box .fixed_anchor_link li:nth-child(3) {
    margin-bottom: 28px;
  }
}
#about.history .history_box .fixed_anchor_link li a {
  padding-left: 3.3333333333vw;
  position: relative;
}
@media screen and (min-width: 960px) {
  #about.history .history_box .fixed_anchor_link li a {
    padding-left: 1.7361111111vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.history .history_box .fixed_anchor_link li a {
    padding-left: 25px;
  }
}
#about.history .history_box .fixed_anchor_link li a:before {
  content: "";
  width: 1.8666666667vw;
  height: 1.8666666667vw;
  background: #666;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 960px) {
  #about.history .history_box .fixed_anchor_link li a:before {
    width: 0.4166666667vw;
    max-width: 6px;
    height: 0.4166666667vw;
    max-height: 6px;
    left: 0.2083333333vw;
    transition: all 0.3s;
  }
}
@media screen and (min-width: 1440px) {
  #about.history .history_box .fixed_anchor_link li a:before {
    left: 3px;
  }
}
#about.history .history_box .fixed_anchor_link li a .year, #about.history .history_box .fixed_anchor_link li a .ja {
  color: #666;
  transition: all 0.3s;
}
#about.history .history_box .fixed_anchor_link li a .year {
  font-size: 3.2vw;
}
@media screen and (min-width: 960px) {
  #about.history .history_box .fixed_anchor_link li a .year {
    font-size: 0.9722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.history .history_box .fixed_anchor_link li a .year {
    font-size: 14px;
  }
}
@media screen and (min-width: 960px) {
  #about.history .history_box .fixed_anchor_link li a .ja {
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.history .history_box .fixed_anchor_link li a .ja {
    font-size: 16px;
  }
}
#about.history .history_box .fixed_anchor_link li.current a:before {
  background: linear-gradient(45deg, #0036B6 0%, #0061E3 26.5%, #00A8DF 71.5%);
}
@media screen and (min-width: 960px) {
  #about.history .history_box .fixed_anchor_link li.current a:before {
    width: 0.6944444444vw;
    max-width: 10px;
    height: 0.6944444444vw;
    max-height: 10px;
    left: 0;
  }
}
#about.history .history_box .fixed_anchor_link li.current a .year, #about.history .history_box .fixed_anchor_link li.current a .ja {
  color: #0036B6;
}
#about.history .history_box .history_wrap {
  padding: 0 6vw;
}
@media screen and (min-width: 960px) {
  #about.history .history_box .history_wrap {
    width: 82%;
    padding: 0;
  }
}
#about.history .history_box .history_wrap .history_contents {
  margin-top: -105px;
  padding-top: 105px;
}
@media screen and (min-width: 960px) {
  #about.history .history_box .history_wrap .history_contents {
    margin-top: -8.75vw;
    padding-top: 8.75vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.history .history_box .history_wrap .history_contents {
    margin-top: -126px;
    padding-top: 126px;
  }
}
#about.history .history_box .history_wrap .history_contents .contents .item {
  display: flex;
  align-items: flex-start;
  opacity: 0.1%;
  visibility: hidden;
}
#about.history .history_box .history_wrap .history_contents .contents .item > .year {
  width: 18.6666666667vw;
  padding-right: 2.1333333333vw;
  font-size: 6.4vw;
  font-weight: 500;
  line-height: 1;
  background: linear-gradient(90deg, #0036B6 0%, #0061E3 20.5%, #00A8DF 74.5%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  flex-shrink: 0;
  position: relative;
}
@media screen and (min-width: 960px) {
  #about.history .history_box .history_wrap .history_contents .contents .item > .year {
    width: 9.7222222222vw;
    max-width: 140px;
    padding-right: 1.1111111111vw;
    font-size: 3.3333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.history .history_box .history_wrap .history_contents .contents .item > .year {
    padding-right: 16px;
    font-size: 48px;
  }
}
#about.history .history_box .history_wrap .history_contents .contents .item > .year:before {
  content: "";
  width: 2.4vw;
  height: 2.4vw;
  background: linear-gradient(45deg, #0036B6 0%, #0061E3 26.5%, #00A8DF 71.5%);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: -1.3333333333vw;
  transform: translateY(-50%);
  z-index: 1;
}
@media screen and (min-width: 960px) {
  #about.history .history_box .history_wrap .history_contents .contents .item > .year:before {
    width: 1.25vw;
    max-width: 18px;
    height: 1.25vw;
    max-height: 18px;
    right: -0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.history .history_box .history_wrap .history_contents .contents .item > .year:before {
    right: -10px;
  }
}
#about.history .history_box .history_wrap .history_contents .contents .item .text_wrap {
  width: 100%;
  padding-bottom: 10.6666666667vw;
  padding-left: 5.6vw;
  position: relative;
}
@media screen and (min-width: 960px) {
  #about.history .history_box .history_wrap .history_contents .contents .item .text_wrap {
    padding-bottom: 5.5555555556vw;
    padding-left: 2.5vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.history .history_box .history_wrap .history_contents .contents .item .text_wrap {
    padding-bottom: 80px;
    padding-left: 36px;
  }
}
#about.history .history_box .history_wrap .history_contents .contents .item .text_wrap:before {
  content: "";
  width: 1px;
  height: 100%;
  background: #ccc;
  position: absolute;
  top: 2.6666666667vw;
  left: 0;
}
@media screen and (min-width: 960px) {
  #about.history .history_box .history_wrap .history_contents .contents .item .text_wrap:before {
    top: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.history .history_box .history_wrap .history_contents .contents .item .text_wrap:before {
    top: 20px;
  }
}
#about.history .history_box .history_wrap .history_contents .contents .item .text_wrap * {
  color: #333;
}
#about.history .history_box .history_wrap .history_contents .contents .item .text_wrap .item_title {
  font-size: 3.4666666667vw;
}
@media screen and (min-width: 960px) {
  #about.history .history_box .history_wrap .history_contents .contents .item .text_wrap .item_title {
    font-size: 1.5277777778vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.history .history_box .history_wrap .history_contents .contents .item .text_wrap .item_title {
    font-size: 22px;
  }
}
#about.history .history_box .history_wrap .history_contents .contents .item .text_wrap .text {
  padding-top: 3.7333333333vw;
  font-size: 3.2vw;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (min-width: 960px) {
  #about.history .history_box .history_wrap .history_contents .contents .item .text_wrap .text {
    width: 37.7083333333vw;
    max-width: 543px;
    padding-top: 1.6666666667vw;
    font-size: 1.1111111111vw;
    line-height: 2;
  }
}
@media screen and (min-width: 1440px) {
  #about.history .history_box .history_wrap .history_contents .contents .item .text_wrap .text {
    padding-top: 24px;
    font-size: 16px;
  }
}
#about.history .history_box .history_wrap .history_contents .contents .item .text_wrap .image {
  width: 50.6666666667vw;
  margin: 0 auto;
  padding-top: 3.2vw;
  border-radius: 0.5333333333vw;
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  #about.history .history_box .history_wrap .history_contents .contents .item .text_wrap .image {
    width: 21.6666666667vw;
    max-width: 312px;
    margin: 0;
    padding: 0;
    border-radius: 0.2777777778vw;
    position: absolute;
    right: 0;
  }
}
@media screen and (min-width: 1440px) {
  #about.history .history_box .history_wrap .history_contents .contents .item .text_wrap .image {
    border-radius: 4px;
  }
}
@media screen and (min-width: 960px) {
  #about.history .history_box .history_wrap .history_contents .contents .item .text_wrap .image__001 {
    top: 2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.history .history_box .history_wrap .history_contents .contents .item .text_wrap .image__001 {
    top: 40px;
  }
}
@media screen and (min-width: 960px) {
  #about.history .history_box .history_wrap .history_contents .contents .item .text_wrap .image__002 {
    top: 3.3333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.history .history_box .history_wrap .history_contents .contents .item .text_wrap .image__002 {
    top: 48px;
  }
}
@media screen and (min-width: 960px) {
  #about.history .history_box .history_wrap .history_contents .contents .item .text_wrap .image__003 {
    top: 5.5555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.history .history_box .history_wrap .history_contents .contents .item .text_wrap .image__003 {
    top: 5.5555555556vw;
  }
}
@media screen and (min-width: 960px) {
  #about.history .history_box .history_wrap .history_contents .contents .item .text_wrap .image__004 {
    top: 2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.history .history_box .history_wrap .history_contents .contents .item .text_wrap .image__004 {
    top: 40px;
  }
}
@media screen and (min-width: 960px) {
  #about.history .history_box .history_wrap .history_contents .contents .item .text_wrap .image__005 {
    width: 34.7222222222vw;
    max-width: 500px;
    top: 20.4861111111vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.history .history_box .history_wrap .history_contents .contents .item .text_wrap .image__005 {
    top: 295px;
  }
}
@media screen and (min-width: 960px) {
  #about.history .history_box .history_wrap .history_contents .contents .item .text_wrap .image__006 {
    top: -19.9305555556vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.history .history_box .history_wrap .history_contents .contents .item .text_wrap .image__006 {
    top: -287px;
  }
}
@media screen and (min-width: 960px) {
  #about.history .history_box .history_wrap .history_contents .contents .item .text_wrap .image__007 {
    top: -9.4444444444vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.history .history_box .history_wrap .history_contents .contents .item .text_wrap .image__007 {
    top: -136px;
  }
}
@media screen and (min-width: 960px) {
  #about.history .history_box .history_wrap .history_contents .contents .item .text_wrap .image__008 {
    top: -4.0277777778vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.history .history_box .history_wrap .history_contents .contents .item .text_wrap .image__008 {
    top: -58px;
  }
}
@media screen and (min-width: 960px) {
  #about.history .history_box .history_wrap .history_contents .contents .item .text_wrap .image__009 {
    width: 47.5vw;
    max-width: 684px;
    padding-top: 3.1944444444vw;
    position: unset;
    right: unset;
  }
}
@media screen and (min-width: 1440px) {
  #about.history .history_box .history_wrap .history_contents .contents .item .text_wrap .image__009 {
    padding-top: 46px;
    top: 40px;
  }
}
#about.history .history_box .history_wrap .history_contents .contents .item .text_wrap .pickup_wrap {
  padding-top: 8vw;
}
@media screen and (min-width: 960px) {
  #about.history .history_box .history_wrap .history_contents .contents .item .text_wrap .pickup_wrap {
    width: 21.5277777778vw;
    max-width: 310px;
    padding-top: 0;
    position: absolute;
    top: -6.5972222222vw;
    right: 0;
  }
}
@media screen and (min-width: 1440px) {
  #about.history .history_box .history_wrap .history_contents .contents .item .text_wrap .pickup_wrap {
    top: -95px;
  }
}
#about.history .history_box .history_wrap .history_contents .contents .item .text_wrap .pickup_wrap .pickup_contents {
  padding: 5.3333333333vw 2.1333333333vw;
  background: #fff;
  border: 1px solid #0036B6;
  border-radius: 0.5333333333vw;
  position: relative;
}
@media screen and (min-width: 960px) {
  #about.history .history_box .history_wrap .history_contents .contents .item .text_wrap .pickup_wrap .pickup_contents {
    padding: 2.0833333333vw 1.1111111111vw;
    border-radius: 0.2777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.history .history_box .history_wrap .history_contents .contents .item .text_wrap .pickup_wrap .pickup_contents {
    padding: 30px 16px;
    border-radius: 4px;
  }
}
#about.history .history_box .history_wrap .history_contents .contents .item .text_wrap .pickup_wrap .pickup_contents:before, #about.history .history_box .history_wrap .history_contents .contents .item .text_wrap .pickup_wrap .pickup_contents:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
}
@media screen and (min-width: 960px) {
  #about.history .history_box .history_wrap .history_contents .contents .item .text_wrap .pickup_wrap .pickup_contents:before, #about.history .history_box .history_wrap .history_contents .contents .item .text_wrap .pickup_wrap .pickup_contents:after {
    left: 0;
    transform: translate(0, -50%);
  }
}
#about.history .history_box .history_wrap .history_contents .contents .item .text_wrap .pickup_wrap .pickup_contents:before {
  border: 14px solid transparent;
  border-bottom: 14px solid #FFF;
  top: -28px;
  z-index: 2;
}
@media screen and (min-width: 960px) {
  #about.history .history_box .history_wrap .history_contents .contents .item .text_wrap .pickup_wrap .pickup_contents:before {
    border: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 12px solid #FFF;
    top: 50%;
    left: -20px;
  }
}
#about.history .history_box .history_wrap .history_contents .contents .item .text_wrap .pickup_wrap .pickup_contents:after {
  border: 16px solid transparent;
  border-bottom: 16px solid #0036B6;
  top: -32px;
  z-index: 1;
}
@media screen and (min-width: 960px) {
  #about.history .history_box .history_wrap .history_contents .contents .item .text_wrap .pickup_wrap .pickup_contents:after {
    border: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 12px solid #0036B6;
    top: 50%;
    left: -22px;
  }
}
#about.history .history_box .history_wrap .history_contents .contents .item .text_wrap .pickup_wrap .pickup_contents .pickup_title {
  margin-bottom: 2.4vw;
  text-align: center;
  color: #0036B6;
}
@media screen and (min-width: 960px) {
  #about.history .history_box .history_wrap .history_contents .contents .item .text_wrap .pickup_wrap .pickup_contents .pickup_title {
    margin-bottom: 1.25vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.history .history_box .history_wrap .history_contents .contents .item .text_wrap .pickup_wrap .pickup_contents .pickup_title {
    margin-bottom: 18px;
  }
}
#about.history .history_box .history_wrap .history_contents .contents .item .text_wrap .pickup_wrap .pickup_contents ul {
  width: 48vw;
  margin: 0 auto 3.4666666667vw;
}
@media screen and (min-width: 960px) {
  #about.history .history_box .history_wrap .history_contents .contents .item .text_wrap .pickup_wrap .pickup_contents ul {
    margin-bottom: 1.8055555556vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.history .history_box .history_wrap .history_contents .contents .item .text_wrap .pickup_wrap .pickup_contents ul {
    margin-bottom: 26px;
  }
}
#about.history .history_box .history_wrap .history_contents .contents .item .text_wrap .pickup_wrap .pickup_contents ul li {
  display: flex;
  align-items: center;
  font-size: 3.2vw;
  font-weight: 500;
}
@media screen and (min-width: 960px) {
  #about.history .history_box .history_wrap .history_contents .contents .item .text_wrap .pickup_wrap .pickup_contents ul li {
    font-size: 0.9722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.history .history_box .history_wrap .history_contents .contents .item .text_wrap .pickup_wrap .pickup_contents ul li {
    font-size: 14px;
  }
}
#about.history .history_box .history_wrap .history_contents .contents .item .text_wrap .pickup_wrap .pickup_contents ul li .initials {
  display: block;
  width: 2.6666666667vw;
  text-align: center;
  color: #0036B6;
}
#about.history .history_box .history_wrap .history_contents .contents .item .text_wrap .pickup_wrap .pickup_contents .pickup_text {
  font-size: 3.2vw;
  font-weight: 500;
}
@media screen and (min-width: 960px) {
  #about.history .history_box .history_wrap .history_contents .contents .item .text_wrap .pickup_wrap .pickup_contents .pickup_text {
    font-size: 0.9722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.history .history_box .history_wrap .history_contents .contents .item .text_wrap .pickup_wrap .pickup_contents .pickup_text {
    font-size: 14px;
  }
}
#about.history .history_box .history_wrap .history_contents .contents .item__top .year:before {
  content: none;
}
#about.history .history_box .history_wrap .history_contents .contents .item__top .text_wrap {
  padding-bottom: 6.6666666667vw;
}
@media screen and (min-width: 960px) {
  #about.history .history_box .history_wrap .history_contents .contents .item__top .text_wrap {
    padding-bottom: 4.4444444444vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.history .history_box .history_wrap .history_contents .contents .item__top .text_wrap {
    padding-bottom: 64px;
  }
}
#about.history .history_box .history_wrap .history_contents .contents .item__top .text_wrap .history_title_wrap {
  display: flex;
  padding-bottom: 3.4666666667vw;
  border-bottom: 1px solid #0036B6;
  position: relative;
}
@media screen and (min-width: 960px) {
  #about.history .history_box .history_wrap .history_contents .contents .item__top .text_wrap .history_title_wrap {
    padding-bottom: 0.8333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.history .history_box .history_wrap .history_contents .contents .item__top .text_wrap .history_title_wrap {
    padding-bottom: 12px;
  }
}
#about.history .history_box .history_wrap .history_contents .contents .item__top .text_wrap .history_title_wrap .ja, #about.history .history_box .history_wrap .history_contents .contents .item__top .text_wrap .history_title_wrap .year {
  color: #0036B6;
}
#about.history .history_box .history_wrap .history_contents .contents .item__top .text_wrap .history_title_wrap .ja {
  margin-right: 1.3333333333vw;
}
@media screen and (min-width: 960px) {
  #about.history .history_box .history_wrap .history_contents .contents .item__top .text_wrap .history_title_wrap .ja {
    margin-left: 0.6944444444vw;
    margin-right: 0;
    font-size: 1.9444444444vw;
    order: 2;
  }
}
@media screen and (min-width: 1440px) {
  #about.history .history_box .history_wrap .history_contents .contents .item__top .text_wrap .history_title_wrap .ja {
    margin-right: 10px;
    font-size: 28px;
  }
}
#about.history .history_box .history_wrap .history_contents .contents .item__top .text_wrap .history_title_wrap .year {
  padding-top: 0.8vw;
  font-size: 3.2vw;
}
@media screen and (min-width: 960px) {
  #about.history .history_box .history_wrap .history_contents .contents .item__top .text_wrap .history_title_wrap .year {
    padding-top: 0.4861111111vw;
    font-size: 1.5277777778vw;
    order: 1;
  }
}
@media screen and (min-width: 1440px) {
  #about.history .history_box .history_wrap .history_contents .contents .item__top .text_wrap .history_title_wrap .year {
    padding-top: 7px;
    font-size: 22px;
  }
}
#about.history .history_box .history_wrap .history_contents .contents .item.anim_active {
  animation: fadein 0.6s forwards;
}
#about.history .history_box .history_wrap .history_contents:first-child .contents .item__top .text_wrap:before {
  content: none;
}
#about.history .history_box .history_wrap .history_contents:last-child .contents .item:last-child .text_wrap:before {
  top: 0;
  height: calc(100% - 10.6666666667vw);
}
@media screen and (min-width: 960px) {
  #about.history .history_box .history_wrap .history_contents:last-child .contents .item:last-child .text_wrap:before {
    height: calc(100% - 5.5555555556vw);
  }
}
@media screen and (min-width: 1440px) {
  #about.history .history_box .history_wrap .history_contents:last-child .contents .item:last-child .text_wrap:before {
    height: calc(100% - 80px);
  }
}
#about.history .history_box .history_wrap .history_contents:last-child .contents .item:last-child .text_wrap .end_scroll {
  width: 1px;
  height: 10.6666666667vw;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 960px) {
  #about.history .history_box .history_wrap .history_contents:last-child .contents .item:last-child .text_wrap .end_scroll {
    height: 5.5555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.history .history_box .history_wrap .history_contents:last-child .contents .item:last-child .text_wrap .end_scroll {
    height: 80px;
  }
}
#about.history .history_box .history_wrap .history_contents:last-child .contents .item:last-child .text_wrap .end_scroll .line {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
#about.history .history_box .history_wrap .history_contents:last-child .contents .item:last-child .text_wrap .end_scroll .line:before {
  content: "";
  width: 1px;
  height: 100%;
  background: #ccc;
  position: absolute;
  bottom: 0;
  left: 0;
  animation: blinking 1.8s ease-in-out infinite;
}
#about.message {
  /*================================
  message
  =================================*/
}
#about.message .message_wrap {
  margin-bottom: 33.3333333333vw;
  padding: 0 6vw;
  /*================================
  top
  =================================*/
  /*================================
  contents
  =================================*/
}
@media screen and (min-width: 960px) {
  #about.message .message_wrap {
    width: 90.2777777778vw;
    max-width: 1300px;
    margin: 0 auto 19.4444444444vw;
    padding: 0;
  }
}
@media screen and (min-width: 1440px) {
  #about.message .message_wrap {
    margin-bottom: 280px;
  }
}
#about.message .message_wrap .top {
  margin-bottom: 16vw;
  padding-bottom: 21.3333333333vw;
  position: relative;
}
@media screen and (min-width: 960px) {
  #about.message .message_wrap .top {
    margin-bottom: 5.9722222222vw;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 1440px) {
  #about.message .message_wrap .top {
    margin-bottom: 86px;
  }
}
#about.message .message_wrap .top .image_wrap {
  height: 65.4666666667vw;
}
@media screen and (min-width: 960px) {
  #about.message .message_wrap .top .image_wrap {
    width: 73.125vw;
    max-width: 1053px;
    height: 57.9166666667vw;
    max-height: 834px;
    margin-left: auto;
  }
}
#about.message .message_wrap .top .image_wrap .image, #about.message .message_wrap .top .image_wrap img {
  width: 100%;
  height: 100%;
}
#about.message .message_wrap .top .image_wrap .image {
  clip-path: url(#messate_path);
}
#about.message .message_wrap .top .image_wrap .image img {
  -o-object-fit: cover;
     object-fit: cover;
}
#about.message .message_wrap .top .text_wrap {
  position: absolute;
  bottom: 0;
  left: 6vw;
}
@media screen and (min-width: 960px) {
  #about.message .message_wrap .top .text_wrap {
    top: 9.7222222222vw;
    bottom: unset;
    left: 6.5972222222vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.message .message_wrap .top .text_wrap {
    top: 140px;
    left: 95px;
  }
}
#about.message .message_wrap .top .text_wrap .name_wrap {
  position: relative;
}
#about.message .message_wrap .top .text_wrap .name_wrap * {
  color: #fff;
}
#about.message .message_wrap .top .text_wrap .name_wrap h2, #about.message .message_wrap .top .text_wrap .name_wrap p {
  position: relative;
  z-index: 1;
}
#about.message .message_wrap .top .text_wrap .name_wrap .sub {
  font-size: 3.2vw;
}
@media screen and (min-width: 960px) {
  #about.message .message_wrap .top .text_wrap .name_wrap .sub {
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.message .message_wrap .top .text_wrap .name_wrap .sub {
    font-size: 16px;
  }
}
#about.message .message_wrap .top .text_wrap .name_wrap .name__ja {
  font-size: 5.0666666667vw;
}
@media screen and (min-width: 960px) {
  #about.message .message_wrap .top .text_wrap .name_wrap .name__ja {
    font-size: 2.2222222222vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.message .message_wrap .top .text_wrap .name_wrap .name__ja {
    font-size: 32px;
  }
}
#about.message .message_wrap .top .text_wrap .name_wrap .name__en {
  margin-bottom: 2.6666666667vw;
  font-size: 2.6666666667vw;
}
@media screen and (min-width: 960px) {
  #about.message .message_wrap .top .text_wrap .name_wrap .name__en {
    margin-bottom: 1.5277777778vw;
    font-size: 0.9722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.message .message_wrap .top .text_wrap .name_wrap .name__en {
    margin-bottom: 22px;
    font-size: 2.6666666667vw;
    font-size: 14px;
  }
}
#about.message .message_wrap .top .text_wrap .name_wrap .text {
  font-size: 2.6666666667vw;
  line-height: 1.7;
}
@media screen and (min-width: 960px) {
  #about.message .message_wrap .top .text_wrap .name_wrap .text {
    font-size: 0.9722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.message .message_wrap .top .text_wrap .name_wrap .text {
    font-size: 14px;
  }
}
#about.message .message_wrap .top .text_wrap .name_wrap .bg {
  width: 72vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  mix-blend-mode: multiply;
}
@media screen and (min-width: 960px) {
  #about.message .message_wrap .top .text_wrap .name_wrap .bg {
    width: 30vw;
    max-width: 432px;
  }
}
#about.message .message_wrap .top .text_wrap .name_wrap .bg svg {
  width: 100%;
}
#about.message .message_wrap .top .text_wrap .name_wrap .bg svg path {
  fill: url(#gradation);
}
#about.message .message_wrap .contents .text {
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 960px) {
  #about.message .message_wrap .contents .text {
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.message .message_wrap .contents .text {
    font-size: 16px;
  }
}
#about.company {
  /*================================
  company
  =================================*/
}
#about.company .company_wrap {
  margin-bottom: 33.3333333333vw;
}
@media screen and (min-width: 960px) {
  #about.company .company_wrap {
    margin-bottom: 13.8888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.company .company_wrap {
    margin-bottom: 200px;
  }
}
#about.company .company_wrap .inner {
  padding: 0 6vw;
}
@media screen and (min-width: 960px) {
  #about.company .company_wrap .inner {
    width: 90.2777777778vw;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0;
  }
}
#about.company .company_wrap .inner .section {
  margin-bottom: 18.6666666667vw;
  /*================================
  overview
  =================================*/
  /*================================
  qualified
  =================================*/
  /*================================
  organization chart
  =================================*/
}
@media screen and (min-width: 960px) {
  #about.company .company_wrap .inner .section {
    margin-bottom: 10.0694444444vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.company .company_wrap .inner .section {
    margin-bottom: 145px;
  }
}
#about.company .company_wrap .inner .section:last-child {
  margin-bottom: 0;
}
#about.company .company_wrap .inner .section .contents_title {
  margin-bottom: 8vw;
  padding-bottom: 2.6666666667vw;
  border-bottom: 1px solid #0036B6;
}
@media screen and (min-width: 960px) {
  #about.company .company_wrap .inner .section .contents_title {
    margin-bottom: 3.1944444444vw;
    padding-bottom: 0.8333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.company .company_wrap .inner .section .contents_title {
    margin-bottom: 46px;
    padding-bottom: 12px;
  }
}
#about.company .company_wrap .inner .section .contents_title span {
  font-size: 4.8vw;
  background: linear-gradient(45deg, #0037B0 0%, #2861DC 51.5%, #00A6DB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width: 960px) {
  #about.company .company_wrap .inner .section .contents_title span {
    font-size: 1.5277777778vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.company .company_wrap .inner .section .contents_title span {
    font-size: 22px;
  }
}
#about.company .company_wrap .inner .section.overview .contents_title .logo {
  width: 56vw;
}
@media screen and (min-width: 960px) {
  #about.company .company_wrap .inner .section.overview .contents_title .logo {
    width: 20.8333333333vw;
    max-width: 300px;
  }
}
@media screen and (min-width: 960px) {
  #about.company .company_wrap .inner .section.overview .contents {
    width: 69.4444444444vw;
    max-width: 1000px;
    margin: 0 auto;
  }
}
#about.company .company_wrap .inner .section.overview .contents * {
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 960px) {
  #about.company .company_wrap .inner .section.overview .contents * {
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.company .company_wrap .inner .section.overview .contents * {
    font-size: 16px;
  }
}
@media screen and (min-width: 960px) {
  #about.company .company_wrap .inner .section.overview .contents dl {
    display: flex;
    position: relative;
  }
}
#about.company .company_wrap .inner .section.overview .contents dl:last-child {
  margin-bottom: 0;
}
#about.company .company_wrap .inner .section.overview .contents dl * {
  line-height: 1.75;
}
#about.company .company_wrap .inner .section.overview .contents dl.parent {
  margin-bottom: 8vw;
}
@media screen and (min-width: 960px) {
  #about.company .company_wrap .inner .section.overview .contents dl.parent {
    margin-bottom: 1.3888888889vw;
    padding-bottom: 1.3888888889vw;
    border-bottom: 1px solid #ccc;
  }
}
@media screen and (min-width: 1440px) {
  #about.company .company_wrap .inner .section.overview .contents dl.parent {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}
@media screen and (min-width: 960px) {
  #about.company .company_wrap .inner .section.overview .contents dl.parent:before {
    content: "";
    width: 7.9166666667vw;
    max-width: 114px;
    height: 1px;
    background: #0036B6;
    position: absolute;
    bottom: -1px;
    left: 0;
    z-index: 1;
  }
}
#about.company .company_wrap .inner .section.overview .contents dl.parent > dt, #about.company .company_wrap .inner .section.overview .contents dl.parent > dt .em3 {
  text-align: justify;
  -moz-text-align-last: justify;
  text-align-last: justify;
  text-justify: inter-ideograph;
}
#about.company .company_wrap .inner .section.overview .contents dl.parent > dt {
  margin-bottom: 2.6666666667vw;
  padding-bottom: 2.6666666667vw;
  border-bottom: 1px solid #ccc;
  position: relative;
}
@media screen and (min-width: 960px) {
  #about.company .company_wrap .inner .section.overview .contents dl.parent > dt {
    width: 7.9166666667vw;
    max-width: 114px;
    margin-right: 2.0833333333vw;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
    flex-shrink: 0;
  }
}
@media screen and (min-width: 1440px) {
  #about.company .company_wrap .inner .section.overview .contents dl.parent > dt {
    margin-right: 30px;
  }
}
#about.company .company_wrap .inner .section.overview .contents dl.parent > dt:before {
  content: "";
  width: 24vw;
  height: 1px;
  background: #0036B6;
  position: absolute;
  bottom: -1px;
  left: 0;
  z-index: 1;
}
@media screen and (min-width: 960px) {
  #about.company .company_wrap .inner .section.overview .contents dl.parent > dt:before {
    content: none;
  }
}
#about.company .company_wrap .inner .section.overview .contents dl.parent > dt span {
  display: block;
}
#about.company .company_wrap .inner .section.overview .contents dl.parent > dt span.em3, #about.company .company_wrap .inner .section.overview .contents dl.parent > dt span.em5 {
  margin: 0 auto;
}
#about.company .company_wrap .inner .section.overview .contents dl.parent > dt span.dt_ttl {
  width: 24vw;
}
@media screen and (min-width: 960px) {
  #about.company .company_wrap .inner .section.overview .contents dl.parent > dt span.dt_ttl {
    width: 100%;
  }
}
#about.company .company_wrap .inner .section.overview .contents dl.parent > dt span.em3 {
  width: 16vw;
}
@media screen and (min-width: 960px) {
  #about.company .company_wrap .inner .section.overview .contents dl.parent > dt span.em3 {
    width: 4.1666666667vw;
    max-width: 60px;
  }
}
#about.company .company_wrap .inner .section.overview .contents dl.parent > dt span.em5 {
  width: 21.3333333333vw;
}
@media screen and (min-width: 960px) {
  #about.company .company_wrap .inner .section.overview .contents dl.parent > dt span.em5 {
    width: 6.9444444444vw;
    max-width: 100px;
  }
}
#about.company .company_wrap .inner .section.overview .contents dl.parent > dd {
  width: 100%;
}
#about.company .company_wrap .inner .section.overview .contents dl.parent > dd .child {
  display: flex;
}
#about.company .company_wrap .inner .section.overview .contents dl.parent > dd .child > dt {
  width: 48vw;
}
@media screen and (min-width: 960px) {
  #about.company .company_wrap .inner .section.overview .contents dl.parent > dd .child > dt {
    width: 11.1111111111vw;
    max-width: 160px;
    margin-right: 2.9166666667vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.company .company_wrap .inner .section.overview .contents dl.parent > dd .child > dt {
    margin-right: 42px;
  }
}
#about.company .company_wrap .inner .section.overview .contents dl.parent > dd .address {
  margin-bottom: 2.6666666667vw;
}
@media screen and (min-width: 960px) {
  #about.company .company_wrap .inner .section.overview .contents dl.parent > dd .address {
    margin-bottom: 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.company .company_wrap .inner .section.overview .contents dl.parent > dd .address {
    margin-bottom: 10px;
  }
}
#about.company .company_wrap .inner .section.overview .contents dl.parent > dd .google_map, #about.company .company_wrap .inner .section.overview .contents dl.parent > dd .google_map iframe {
  width: 100%;
  height: 46.6666666667vw;
}
@media screen and (min-width: 960px) {
  #about.company .company_wrap .inner .section.overview .contents dl.parent > dd .google_map, #about.company .company_wrap .inner .section.overview .contents dl.parent > dd .google_map iframe {
    height: 33.0555555556vw;
    max-height: 476px;
  }
}
@media screen and (min-width: 960px) {
  #about.company .company_wrap .inner .section.qualified .contents {
    width: 69.4444444444vw;
    max-width: 1000px;
    margin: 0 auto;
  }
}
#about.company .company_wrap .inner .section.qualified .contents ul li {
  margin-bottom: 2.6666666667vw;
  padding-bottom: 2.6666666667vw;
  border-bottom: 1px solid #ccc;
}
@media screen and (min-width: 960px) {
  #about.company .company_wrap .inner .section.qualified .contents ul li {
    margin-bottom: 0.6944444444vw;
    padding-bottom: 0.6944444444vw;
    border-bottom: 1px solid #ccc;
  }
}
@media screen and (min-width: 1440px) {
  #about.company .company_wrap .inner .section.qualified .contents ul li {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}
#about.company .company_wrap .inner .section.qualified .contents ul li:last-child {
  margin-bottom: 0;
}
#about.company .company_wrap .inner .section.qualified .contents ul li dl {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#about.company .company_wrap .inner .section.qualified .contents ul li dl dt {
  display: flex;
  align-items: center;
}
#about.company .company_wrap .inner .section.qualified .contents ul li dl dt .dot {
  display: block;
  width: 3.7333333333vw;
  height: 3.7333333333vw;
  margin-right: 2.6666666667vw;
  border: 1px solid #0036B6;
  border-radius: 50%;
  position: relative;
}
@media screen and (min-width: 960px) {
  #about.company .company_wrap .inner .section.qualified .contents ul li dl dt .dot {
    width: 1.1111111111vw;
    max-width: 16px;
    height: 1.1111111111vw;
    max-height: 16px;
    margin-right: 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.company .company_wrap .inner .section.qualified .contents ul li dl dt .dot {
    margin-right: 10px;
  }
}
#about.company .company_wrap .inner .section.qualified .contents ul li dl dt .dot:before {
  content: "";
  width: 1.3333333333vw;
  height: 1.3333333333vw;
  background: #0036B6;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 960px) {
  #about.company .company_wrap .inner .section.qualified .contents ul li dl dt .dot:before {
    width: 0.4166666667vw;
    max-width: 6px;
    height: 0.4166666667vw;
    max-height: 6px;
  }
}
#about.company .company_wrap .inner .section.qualified .contents ul li dl dt .dt_ttl .small {
  font-size: 2.6666666667vw;
}
@media screen and (min-width: 960px) {
  #about.company .company_wrap .inner .section.qualified .contents ul li dl dt .dt_ttl .small {
    font-size: 0.9722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.company .company_wrap .inner .section.qualified .contents ul li dl dt .dt_ttl .small {
    font-size: 14px;
  }
}
#about.company .company_wrap .inner .section.qualified .contents ul li dl dd {
  flex-shrink: 0;
}
#about.company .company_wrap .inner .section.qualified .contents ul li dl dd .number {
  font-size: 5.6vw;
}
@media screen and (min-width: 960px) {
  #about.company .company_wrap .inner .section.qualified .contents ul li dl dd .number {
    font-size: 1.9444444444vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.company .company_wrap .inner .section.qualified .contents ul li dl dd .number {
    font-size: 28px;
  }
}
#about.company .company_wrap .inner .section.organization-chart .contents_title {
  margin-bottom: 16vw;
}
@media screen and (min-width: 960px) {
  #about.company .company_wrap .inner .section.organization-chart .contents_title {
    margin-bottom: 6.9444444444vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.company .company_wrap .inner .section.organization-chart .contents_title {
    margin-bottom: 100px;
  }
}
#about.company .company_wrap .inner .section.organization-chart .chart_image_wrap {
  margin-bottom: 16vw;
  padding-bottom: 5.3333333333vw;
  overflow-x: auto;
}
@media screen and (min-width: 960px) {
  #about.company .company_wrap .inner .section.organization-chart .chart_image_wrap {
    margin-bottom: 6.9444444444vw;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 1440px) {
  #about.company .company_wrap .inner .section.organization-chart .chart_image_wrap {
    margin-bottom: 100px;
  }
}
#about.company .company_wrap .inner .section.organization-chart .chart_image_wrap .image {
  min-width: 170.6666666667vw;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  #about.company .company_wrap .inner .section.organization-chart .chart_image_wrap .image {
    min-width: unset;
  }
}
#about.company .company_wrap .inner .section.organization-chart .group {
  border: 1px solid;
  -o-border-image: linear-gradient(to right, #0037B0, #00A6DB) 1;
     border-image: linear-gradient(to right, #0037B0, #00A6DB) 1;
}
#about.company .company_wrap .inner .section.organization-chart .group .group_title_wrap {
  margin-bottom: 8vw;
  padding: 5.3333333333vw 0;
  text-align: center;
  background: linear-gradient(45deg, #0037B0 0%, #2861DC 51.5%, #00A6DB 100%);
}
@media screen and (min-width: 960px) {
  #about.company .company_wrap .inner .section.organization-chart .group .group_title_wrap {
    margin-bottom: 3.75vw;
    padding: 1.6666666667vw 0 1.8055555556vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.company .company_wrap .inner .section.organization-chart .group .group_title_wrap {
    margin-bottom: 54px;
    padding: 24px 0 26px;
  }
}
#about.company .company_wrap .inner .section.organization-chart .group .group_title_wrap * {
  color: #fff;
}
#about.company .company_wrap .inner .section.organization-chart .group .group_title_wrap .group_title {
  margin-bottom: 4.2666666667vw;
  font-size: 4.8vw;
}
@media screen and (min-width: 960px) {
  #about.company .company_wrap .inner .section.organization-chart .group .group_title_wrap .group_title {
    margin-bottom: 0.8333333333vw;
    font-size: 1.8055555556vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.company .company_wrap .inner .section.organization-chart .group .group_title_wrap .group_title {
    margin-bottom: 12px;
    font-size: 26px;
  }
}
#about.company .company_wrap .inner .section.organization-chart .group .group_title_wrap .top_text {
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 960px) {
  #about.company .company_wrap .inner .section.organization-chart .group .group_title_wrap .top_text {
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.company .company_wrap .inner .section.organization-chart .group .group_title_wrap .top_text {
    font-size: 16px;
  }
}
#about.company .company_wrap .inner .section.organization-chart .group .name_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 8vw;
}
@media screen and (min-width: 960px) {
  #about.company .company_wrap .inner .section.organization-chart .group .name_wrap {
    margin-bottom: 3.4722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.company .company_wrap .inner .section.organization-chart .group .name_wrap {
    margin-bottom: 50px;
  }
}
#about.company .company_wrap .inner .section.organization-chart .group .name_wrap .logo {
  width: 21.0666666667vw;
  margin-right: 3.7333333333vw;
}
@media screen and (min-width: 960px) {
  #about.company .company_wrap .inner .section.organization-chart .group .name_wrap .logo {
    width: 8.1944444444vw;
    max-width: 118px;
    margin-right: 1.0416666667vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.company .company_wrap .inner .section.organization-chart .group .name_wrap .logo {
    margin-right: 15px;
  }
}
#about.company .company_wrap .inner .section.organization-chart .group .name_wrap .text_wrap .name {
  font-size: 5.0666666667vw;
}
@media screen and (min-width: 960px) {
  #about.company .company_wrap .inner .section.organization-chart .group .name_wrap .text_wrap .name {
    font-size: 1.6666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.company .company_wrap .inner .section.organization-chart .group .name_wrap .text_wrap .name {
    font-size: 24px;
  }
}
#about.company .company_wrap .inner .section.organization-chart .group .name_wrap .text_wrap .catch {
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 960px) {
  #about.company .company_wrap .inner .section.organization-chart .group .name_wrap .text_wrap .catch {
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.company .company_wrap .inner .section.organization-chart .group .name_wrap .text_wrap .catch {
    font-size: 16px;
  }
}
#about.company .company_wrap .inner .section.organization-chart .group .contents {
  padding: 0 6vw;
}
@media screen and (min-width: 960px) {
  #about.company .company_wrap .inner .section.organization-chart .group .contents {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4.3055555556vw;
    padding: 0 2.2222222222vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.company .company_wrap .inner .section.organization-chart .group .contents {
    margin-bottom: 62px;
    padding: 0 32px;
  }
}
#about.company .company_wrap .inner .section.organization-chart .group .contents .item {
  margin-bottom: 10.6666666667vw;
}
@media screen and (min-width: 960px) {
  #about.company .company_wrap .inner .section.organization-chart .group .contents .item {
    width: 32.5%;
    margin-bottom: 0;
  }
}
#about.company .company_wrap .inner .section.organization-chart .group .contents .item .item_title {
  margin-bottom: 5.3333333333vw;
  padding: 2.6666666667vw 0;
  border: 1px solid #0036B6;
  line-height: 1;
  text-align: center;
  background: #EBF5FB;
}
@media screen and (min-width: 960px) {
  #about.company .company_wrap .inner .section.organization-chart .group .contents .item .item_title {
    margin-bottom: 2.0833333333vw;
    padding: 0.6944444444vw 0;
  }
}
@media screen and (min-width: 1440px) {
  #about.company .company_wrap .inner .section.organization-chart .group .contents .item .item_title {
    margin-bottom: 30px;
    padding: 10px 0;
  }
}
#about.company .company_wrap .inner .section.organization-chart .group .contents .item .detail {
  display: flex;
  width: 56vw;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  #about.company .company_wrap .inner .section.organization-chart .group .contents .item .detail {
    justify-content: center;
    width: unset;
    margin: 0;
  }
}
#about.company .company_wrap .inner .section.organization-chart .group .contents .item .detail .logo {
  margin-right: 3.2vw;
  flex-shrink: 0;
}
@media screen and (min-width: 960px) {
  #about.company .company_wrap .inner .section.organization-chart .group .contents .item .detail .logo {
    margin-right: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.company .company_wrap .inner .section.organization-chart .group .contents .item .detail .logo {
    margin-right: 16px;
  }
}
@media screen and (min-width: 960px) {
  #about.company .company_wrap .inner .section.organization-chart .group .contents .item .detail .text_wrap dl dt {
    margin-bottom: 0.5555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.company .company_wrap .inner .section.organization-chart .group .contents .item .detail .text_wrap dl dt {
    margin-bottom: 8px;
  }
}
#about.company .company_wrap .inner .section.organization-chart .group .contents .item .detail .text_wrap dl dd ul li {
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 960px) {
  #about.company .company_wrap .inner .section.organization-chart .group .contents .item .detail .text_wrap dl dd ul li {
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.company .company_wrap .inner .section.organization-chart .group .contents .item .detail .text_wrap dl dd ul li {
    font-size: 16px;
  }
}
#about.company .company_wrap .inner .section.organization-chart .group .contents .item .detail .text_wrap dl dd ul li:before {
  content: "・";
}
@media screen and (min-width: 960px) {
  #about.company .company_wrap .inner .section.organization-chart .group .contents .item .detail .text_wrap dl dd ul li .small {
    font-size: 0.8333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.company .company_wrap .inner .section.organization-chart .group .contents .item .detail .text_wrap dl dd ul li .small {
    font-size: 12px;
  }
}
#about.company .company_wrap .inner .section.organization-chart .group .contents .item:nth-child(1) .detail .logo {
  width: 15.2vw;
}
@media screen and (min-width: 960px) {
  #about.company .company_wrap .inner .section.organization-chart .group .contents .item:nth-child(1) .detail .logo {
    width: 5.1388888889vw;
    max-width: 74px;
  }
}
#about.company .company_wrap .inner .section.organization-chart .group .contents .item:nth-child(2) .detail .logo {
  width: 17.3333333333vw;
}
@media screen and (min-width: 960px) {
  #about.company .company_wrap .inner .section.organization-chart .group .contents .item:nth-child(2) .detail .logo {
    width: 6.25vw;
    max-width: 90px;
  }
}
#about.company .company_wrap .inner .section.organization-chart .group .contents .item:nth-child(3) .detail .logo {
  width: 15.0666666667vw;
}
@media screen and (min-width: 960px) {
  #about.company .company_wrap .inner .section.organization-chart .group .contents .item:nth-child(3) .detail .logo {
    width: 5.0694444444vw;
    max-width: 73px;
  }
}
#about.management-policy {
  /*================================
  policy
  =================================*/
  /*================================
  philosophy
  =================================*/
  /*================================
  introduction
  =================================*/
  /*================================
  person
  =================================*/
}
#about.management-policy .policy_wrap {
  margin-bottom: 26.6666666667vw;
}
@media screen and (min-width: 960px) {
  #about.management-policy .policy_wrap {
    margin-bottom: 12.5vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.management-policy .policy_wrap {
    margin-bottom: 180px;
  }
}
#about.management-policy .policy_wrap .inner {
  padding: 0 6vw;
}
@media screen and (min-width: 960px) {
  #about.management-policy .policy_wrap .inner {
    width: 90.2777777778vw;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0;
  }
}
@media screen and (min-width: 960px) {
  #about.management-policy .policy_wrap .inner .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 85.2777777778vw;
    max-width: 1228px;
    margin: 0 auto 4.8611111111vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.management-policy .policy_wrap .inner .top {
    margin-bottom: 70px;
  }
}
#about.management-policy .policy_wrap .inner .top .image_wrap {
  width: 100%;
  height: 69.7333333333vw;
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 960px) {
  #about.management-policy .policy_wrap .inner .top .image_wrap {
    width: 45.6944444444vw;
    max-width: 658px;
    height: 36.1805555556vw;
    max-height: 521px;
    margin-bottom: 0;
    order: 2;
  }
}
#about.management-policy .policy_wrap .inner .top .image_wrap .image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  clip-path: url(#policy_path);
}
#about.management-policy .policy_wrap .inner .top .catch {
  margin-bottom: 5.3333333333vw;
  line-height: 1.75;
  font-feature-settings: "palt";
  background: linear-gradient(45deg, #0037B0 0%, #2861DC 51.5%, #00A6DB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width: 960px) {
  #about.management-policy .policy_wrap .inner .top .catch {
    margin-bottom: 0;
    padding-left: 5.4166666667vw;
    order: 1;
  }
}
@media screen and (min-width: 1440px) {
  #about.management-policy .policy_wrap .inner .top .catch {
    padding-left: 78px;
  }
}
#about.management-policy .policy_wrap .inner .top .catch span {
  font-size: 5.6vw;
}
@media screen and (min-width: 960px) {
  #about.management-policy .policy_wrap .inner .top .catch span {
    font-size: 2.6388888889vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.management-policy .policy_wrap .inner .top .catch span {
    font-size: 38px;
  }
}
#about.management-policy .policy_wrap .inner .top_text {
  line-height: 2.5;
}
#about.management-policy .philosophy_wrap {
  margin-bottom: 13.3333333333vw;
  padding: 13.3333333333vw 0;
  background: #EDF5FB;
}
@media screen and (min-width: 960px) {
  #about.management-policy .philosophy_wrap {
    margin-bottom: 9.7222222222vw;
    padding: 6.9444444444vw 0;
  }
}
@media screen and (min-width: 1440px) {
  #about.management-policy .philosophy_wrap {
    margin-bottom: 140px;
    padding: 100px 0;
  }
}
#about.management-policy .philosophy_wrap .inner {
  padding: 0 6vw;
}
@media screen and (min-width: 960px) {
  #about.management-policy .philosophy_wrap .inner {
    width: 69.4444444444vw;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
  }
}
#about.management-policy .philosophy_wrap .inner .philosophy_title {
  margin-bottom: 6.6666666667vw;
  padding-bottom: 4.8vw;
  font-size: 6.1333333333vw;
  text-align: center;
  border-bottom: 1px solid #0036B6;
}
@media screen and (min-width: 960px) {
  #about.management-policy .philosophy_wrap .inner .philosophy_title {
    margin-bottom: 3.4722222222vw;
    padding-bottom: 2.5vw;
    font-size: 1.9444444444vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.management-policy .philosophy_wrap .inner .philosophy_title {
    margin-bottom: 50px;
    padding-bottom: 36px;
    font-size: 28px;
  }
}
#about.management-policy .philosophy_wrap .inner .top_text {
  margin-bottom: 8vw;
  text-align: center;
}
@media screen and (min-width: 960px) {
  #about.management-policy .philosophy_wrap .inner .top_text {
    margin-bottom: 2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.management-policy .philosophy_wrap .inner .top_text {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 960px) {
  #about.management-policy .philosophy_wrap .inner ol {
    width: 50.1388888889vw;
    max-width: 722px;
    margin: 0 auto;
  }
}
#about.management-policy .philosophy_wrap .inner ol li {
  margin-bottom: 5.3333333333vw;
  padding-left: 7.4666666667vw;
  font-size: 4vw;
  position: relative;
}
@media screen and (min-width: 960px) {
  #about.management-policy .philosophy_wrap .inner ol li {
    margin-bottom: 2.0833333333vw;
    padding-left: 3.4722222222vw;
    font-size: 1.6666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.management-policy .philosophy_wrap .inner ol li {
    margin-bottom: 30px;
    padding-left: 50px;
    font-size: 24px;
  }
}
#about.management-policy .philosophy_wrap .inner ol li:last-child {
  margin-bottom: 0;
}
#about.management-policy .philosophy_wrap .inner ol li:before {
  display: block;
  width: 5.6vw;
  height: 5.0666666667vw;
  padding-top: 0.5333333333vw;
  font-family: "Kanit", serif;
  font-size: 4.2666666667vw;
  font-weight: 300;
  line-height: 1.1;
  text-align: center;
  border: 1px solid #0036B6;
  border-radius: 0.8vw;
  position: absolute;
  top: 0.1333333333vw;
  left: 0;
}
@media screen and (min-width: 960px) {
  #about.management-policy .philosophy_wrap .inner ol li:before {
    width: 2.0833333333vw;
    max-width: 30px;
    height: 1.8055555556vw;
    max-height: 26px;
    padding-top: 0.2777777778vw;
    font-size: 1.6666666667vw;
    line-height: 1;
    border-radius: 0.2777777778vw;
    top: 0.2083333333vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.management-policy .philosophy_wrap .inner ol li:before {
    padding-top: 4px;
    font-size: 24px;
    border-radius: 4px;
    top: 3px;
  }
}
#about.management-policy .philosophy_wrap .inner ol li:nth-child(1):before {
  content: "1";
}
#about.management-policy .philosophy_wrap .inner ol li:nth-child(2):before {
  content: "2";
}
#about.management-policy .philosophy_wrap .inner ol li:nth-child(3):before {
  content: "3";
}
#about.management-policy .introduction_wrap {
  margin-bottom: 12vw;
  padding: 0 6vw;
}
@media screen and (min-width: 960px) {
  #about.management-policy .introduction_wrap {
    margin-bottom: 4.8611111111vw;
    padding: 0;
  }
}
@media screen and (min-width: 1440px) {
  #about.management-policy .introduction_wrap {
    margin-bottom: 70px;
  }
}
#about.management-policy .introduction_wrap .contents_title {
  margin-bottom: 13.3333333333vw;
  padding: 3.2vw 0;
  text-align: center;
  background: linear-gradient(45deg, #0037B0 0%, #2861DC 51.5%, #00A6DB 100%);
}
@media screen and (min-width: 960px) {
  #about.management-policy .introduction_wrap .contents_title {
    width: 90.2777777778vw;
    max-width: 1300px;
    margin: 0 auto 5.1388888889vw;
    padding: 1.25vw 0;
  }
}
@media screen and (min-width: 1440px) {
  #about.management-policy .introduction_wrap .contents_title {
    margin-bottom: 74px;
    padding: 18px 0;
  }
}
#about.management-policy .introduction_wrap .contents_title span {
  font-size: 6.4vw;
  line-height: 1;
  color: #fff;
}
@media screen and (min-width: 960px) {
  #about.management-policy .introduction_wrap .contents_title span {
    font-size: 2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.management-policy .introduction_wrap .contents_title span {
    font-size: 40px;
  }
}
#about.management-policy .introduction_wrap .inner .section {
  margin-bottom: 18.6666666667vw;
}
@media screen and (min-width: 960px) {
  #about.management-policy .introduction_wrap .inner .section {
    margin-bottom: 8.3333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.management-policy .introduction_wrap .inner .section {
    margin-bottom: 120px;
  }
}
#about.management-policy .introduction_wrap .inner .section:last-child {
  margin-bottom: 0;
}
#about.management-policy .introduction_wrap .inner .section .item_title_wrap {
  margin-bottom: 10.6666666667vw;
  text-align: center;
}
@media screen and (min-width: 960px) {
  #about.management-policy .introduction_wrap .inner .section .item_title_wrap {
    margin-bottom: 3.75vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.management-policy .introduction_wrap .inner .section .item_title_wrap {
    margin-bottom: 54px;
  }
}
#about.management-policy .introduction_wrap .inner .section .item_title_wrap .en span {
  font-size: 7.4666666667vw;
  font-weight: 300;
  line-height: 1;
  background: linear-gradient(45deg, #0037B0 0%, #2861DC 51.5%, #00A6DB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width: 960px) {
  #about.management-policy .introduction_wrap .inner .section .item_title_wrap .en span {
    font-size: 3.6111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.management-policy .introduction_wrap .inner .section .item_title_wrap .en span {
    font-size: 52px;
  }
}
#about.management-policy .introduction_wrap .inner .section .item_title_wrap .ja {
  font-size: 3.2vw;
}
@media screen and (min-width: 960px) {
  #about.management-policy .introduction_wrap .inner .section .item_title_wrap .ja {
    font-size: 0.9722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.management-policy .introduction_wrap .inner .section .item_title_wrap .ja {
    font-size: 14px;
  }
}
#about.management-policy .introduction_wrap .inner .section ol li {
  margin-bottom: 5.3333333333vw;
  position: relative;
}
@media screen and (min-width: 960px) {
  #about.management-policy .introduction_wrap .inner .section ol li {
    margin-bottom: 2.0833333333vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.management-policy .introduction_wrap .inner .section ol li {
    margin-bottom: 30px;
  }
}
#about.management-policy .introduction_wrap .inner .section ol li:last-child {
  margin-bottom: 0;
}
#about.management-policy .introduction_wrap .inner .section ol li.list_title, #about.management-policy .introduction_wrap .inner .section ol li .list_title {
  padding-left: 7.4666666667vw;
  font-size: 4vw;
  position: relative;
}
@media screen and (min-width: 960px) {
  #about.management-policy .introduction_wrap .inner .section ol li.list_title, #about.management-policy .introduction_wrap .inner .section ol li .list_title {
    padding-left: 3.4722222222vw;
    font-size: 1.6666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.management-policy .introduction_wrap .inner .section ol li.list_title, #about.management-policy .introduction_wrap .inner .section ol li .list_title {
    padding-left: 50px;
    font-size: 24px;
  }
}
#about.management-policy .introduction_wrap .inner .section ol li.list_title:before, #about.management-policy .introduction_wrap .inner .section ol li .list_title:before {
  display: block;
  width: 5.6vw;
  height: 5.0666666667vw;
  padding-top: 0.5333333333vw;
  font-family: "Kanit", serif;
  font-size: 4.2666666667vw;
  font-weight: 300;
  line-height: 1.1;
  text-align: center;
  border: 1px solid #0036B6;
  border-radius: 0.8vw;
  position: absolute;
  top: 0.1333333333vw;
  left: 0;
}
@media screen and (min-width: 960px) {
  #about.management-policy .introduction_wrap .inner .section ol li.list_title:before, #about.management-policy .introduction_wrap .inner .section ol li .list_title:before {
    width: 2.0833333333vw;
    max-width: 30px;
    height: 1.8055555556vw;
    max-height: 26px;
    padding-top: 0.2777777778vw;
    font-size: 1.6666666667vw;
    line-height: 1;
    border-radius: 0.2777777778vw;
    top: 0.2083333333vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.management-policy .introduction_wrap .inner .section ol li.list_title:before, #about.management-policy .introduction_wrap .inner .section ol li .list_title:before {
    padding-top: 4px;
    font-size: 24px;
    border-radius: 4px;
    top: 3px;
  }
}
#about.management-policy .introduction_wrap .inner .section ol li:nth-child(1).list_title:before, #about.management-policy .introduction_wrap .inner .section ol li:nth-child(1) .list_title:before {
  content: "1";
}
#about.management-policy .introduction_wrap .inner .section ol li:nth-child(2).list_title:before, #about.management-policy .introduction_wrap .inner .section ol li:nth-child(2) .list_title:before {
  content: "2";
}
#about.management-policy .introduction_wrap .inner .section ol li:nth-child(3).list_title:before, #about.management-policy .introduction_wrap .inner .section ol li:nth-child(3) .list_title:before {
  content: "3";
}
#about.management-policy .introduction_wrap .inner .section ol li:nth-child(4).list_title:before, #about.management-policy .introduction_wrap .inner .section ol li:nth-child(4) .list_title:before {
  content: "4";
}
#about.management-policy .introduction_wrap .inner .section.mission .top_text {
  margin-bottom: 8vw;
  font-size: 4.2666666667vw;
  text-align: center;
}
@media screen and (min-width: 960px) {
  #about.management-policy .introduction_wrap .inner .section.mission .top_text {
    margin-bottom: 2.4305555556vw;
    font-size: 1.6666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.management-policy .introduction_wrap .inner .section.mission .top_text {
    margin-bottom: 35px;
    font-size: 24px;
  }
}
@media screen and (min-width: 960px) {
  #about.management-policy .introduction_wrap .inner .section.mission .contents {
    display: flex;
    justify-content: space-between;
    width: 69.4444444444vw;
    max-width: 1000px;
    margin: 0 auto 5.1388888889vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.management-policy .introduction_wrap .inner .section.mission .contents {
    margin-bottom: 74px;
  }
}
#about.management-policy .introduction_wrap .inner .section.mission .contents .item {
  margin-bottom: 10.6666666667vw;
  padding: 8.5333333333vw 0 8.8vw;
  border: 1px solid #0036B6;
  border-radius: 1.0666666667vw;
}
@media screen and (min-width: 960px) {
  #about.management-policy .introduction_wrap .inner .section.mission .contents .item {
    width: 32%;
    margin-bottom: 0;
    padding: 1.9444444444vw 0 2.2222222222vw;
    border-radius: 0.4166666667vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.management-policy .introduction_wrap .inner .section.mission .contents .item {
    padding: 28px 0 32x;
    border-radius: 6px;
  }
}
#about.management-policy .introduction_wrap .inner .section.mission .contents .item:last-child {
  margin-bottom: 0;
}
#about.management-policy .introduction_wrap .inner .section.mission .contents .item .icon {
  width: 16.8vw;
  margin: 0 auto 4.8vw;
}
@media screen and (min-width: 960px) {
  #about.management-policy .introduction_wrap .inner .section.mission .contents .item .icon {
    width: 5.9722222222vw;
    max-width: 86px;
  }
}
#about.management-policy .introduction_wrap .inner .section.mission .contents .item .text {
  font-size: 4.2666666667vw;
  text-align: center;
  line-height: 1.5;
}
@media screen and (min-width: 960px) {
  #about.management-policy .introduction_wrap .inner .section.mission .contents .item .text {
    font-size: 1.6666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.management-policy .introduction_wrap .inner .section.mission .contents .item .text {
    font-size: 24px;
  }
}
#about.management-policy .introduction_wrap .inner .section.mission .contents .item .text .small {
  display: block;
  font-size: 2.6666666667vw;
  line-height: 1.75;
}
@media screen and (min-width: 960px) {
  #about.management-policy .introduction_wrap .inner .section.mission .contents .item .text .small {
    font-size: 0.9722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.management-policy .introduction_wrap .inner .section.mission .contents .item .text .small {
    font-size: 14px;
  }
}
@media screen and (min-width: 960px) {
  #about.management-policy .introduction_wrap .inner .section.mission .contents .item:nth-child(1) .icon {
    margin-bottom: 1.1111111111vw;
  }
}
@media screen and (min-width: 960px) {
  #about.management-policy .introduction_wrap .inner .section.mission .contents .item:nth-child(2) .icon {
    margin-bottom: 0.3472222222vw;
  }
}
@media screen and (min-width: 960px) {
  #about.management-policy .introduction_wrap .inner .section.mission .contents .item:nth-child(3) .icon {
    margin-bottom: 0.6944444444vw;
  }
}
#about.management-policy .introduction_wrap .inner .section.vision ul {
  margin-bottom: 13.3333333333vw;
}
@media screen and (min-width: 960px) {
  #about.management-policy .introduction_wrap .inner .section.vision ul {
    width: 39.5833333333vw;
    max-width: 570px;
    margin: 0 auto 6.9444444444vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.management-policy .introduction_wrap .inner .section.vision ul {
    margin-bottom: 100px;
  }
}
#about.management-policy .introduction_wrap .inner .section.vision ul li {
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 960px) {
  #about.management-policy .introduction_wrap .inner .section.vision ul li {
    margin-bottom: 1.6666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.management-policy .introduction_wrap .inner .section.vision ul li {
    margin-bottom: 24px;
  }
}
#about.management-policy .introduction_wrap .inner .section.vision ul li:last-child {
  margin-bottom: 0;
}
#about.management-policy .introduction_wrap .inner .section.vision ul li dl {
  display: flex;
  align-items: center;
}
#about.management-policy .introduction_wrap .inner .section.vision ul li dl dt {
  width: 24vw;
  margin-right: 2.6666666667vw;
  padding: 0.8vw 0;
  text-align: center;
  border: 1px solid #0036B6;
  border-radius: 0.8vw;
  flex-shrink: 0;
}
@media screen and (min-width: 960px) {
  #about.management-policy .introduction_wrap .inner .section.vision ul li dl dt {
    width: 7.9166666667vw;
    max-width: 114px;
    margin-right: 1.3888888889vw;
    padding: 0.2083333333vw 0;
    border-radius: 0.2777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.management-policy .introduction_wrap .inner .section.vision ul li dl dt {
    margin-right: 20px;
    padding: 3px 0;
    border-radius: 4px;
  }
}
#about.management-policy .introduction_wrap .inner .section.vision ul li dl dd {
  font-size: 4vw;
}
@media screen and (min-width: 960px) {
  #about.management-policy .introduction_wrap .inner .section.vision ul li dl dd {
    font-size: 1.6666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.management-policy .introduction_wrap .inner .section.vision ul li dl dd {
    font-size: 24px;
  }
}
@media screen and (min-width: 960px) {
  #about.management-policy .introduction_wrap .inner .section.vision .contents {
    display: flex;
    justify-content: space-between;
    width: 85.9027777778vw;
    max-width: 1237px;
    margin: 0 auto;
  }
}
#about.management-policy .introduction_wrap .inner .section.vision .contents .item {
  margin-bottom: 10.6666666667vw;
}
@media screen and (min-width: 960px) {
  #about.management-policy .introduction_wrap .inner .section.vision .contents .item {
    width: 47%;
    margin-bottom: 0;
  }
}
#about.management-policy .introduction_wrap .inner .section.vision .contents .item:last-child {
  margin-bottom: 0;
}
#about.management-policy .introduction_wrap .inner .section.vision .contents .item .item_title_wrap {
  margin-bottom: 10.6666666667vw;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 960px) {
  #about.management-policy .introduction_wrap .inner .section.vision .contents .item .item_title_wrap {
    margin-bottom: 4.8611111111vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.management-policy .introduction_wrap .inner .section.vision .contents .item .item_title_wrap {
    margin-bottom: 70px;
  }
}
#about.management-policy .introduction_wrap .inner .section.vision .contents .item .item_title_wrap:before {
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid transparent;
  background: linear-gradient(45deg, #0037B0 0%, #2861DC 51.5%, #00A6DB 100%) border-box border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
  -webkit-mask-composite: destination-out;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
          mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  border-radius: 0.8vw;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
@media screen and (min-width: 960px) {
  #about.management-policy .introduction_wrap .inner .section.vision .contents .item .item_title_wrap:before {
    border-radius: 0.2777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.management-policy .introduction_wrap .inner .section.vision .contents .item .item_title_wrap:before {
    border-radius: 4px;
  }
}
#about.management-policy .introduction_wrap .inner .section.vision .contents .item .item_title_wrap .item_title {
  width: 100%;
  height: 100%;
  padding: 3.2vw 0;
  font-size: 4.5333333333vw;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 960px) {
  #about.management-policy .introduction_wrap .inner .section.vision .contents .item .item_title_wrap .item_title {
    padding: 0.4166666667vw 0;
    font-size: 1.5277777778vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.management-policy .introduction_wrap .inner .section.vision .contents .item .item_title_wrap .item_title {
    padding: 6px 0;
    font-size: 22px;
  }
}
#about.management-policy .introduction_wrap .inner .section.vision .contents .item .item_title_wrap .item_title:before, #about.management-policy .introduction_wrap .inner .section.vision .contents .item .item_title_wrap .item_title:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-radius: 0 0 0.8vw 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleX(0.6) rotate(45deg);
}
@media screen and (min-width: 960px) {
  #about.management-policy .introduction_wrap .inner .section.vision .contents .item .item_title_wrap .item_title:before, #about.management-policy .introduction_wrap .inner .section.vision .contents .item .item_title_wrap .item_title:after {
    border-radius: 0 0 4px 0;
  }
}
#about.management-policy .introduction_wrap .inner .section.vision .contents .item .item_title_wrap .item_title:before {
  border-color: transparent #0036B6 #0036B6 transparent;
  border-width: 12px;
  bottom: -13px;
}
#about.management-policy .introduction_wrap .inner .section.vision .contents .item .item_title_wrap .item_title:after {
  border-color: transparent #fff #fff transparent;
  border-width: 12px;
  bottom: -11px;
}
#about.management-policy .introduction_wrap .inner .section.vision .contents .item ol {
  padding: 0 5.0666666667vw;
}
@media screen and (min-width: 960px) {
  #about.management-policy .introduction_wrap .inner .section.vision .contents .item ol {
    padding: 0;
  }
}
@media screen and (min-width: 960px) {
  #about.management-policy .introduction_wrap .inner .section.vision .contents .item ol li {
    margin-bottom: 4.1666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.management-policy .introduction_wrap .inner .section.vision .contents .item ol li {
    margin-bottom: 60px;
  }
}
#about.management-policy .introduction_wrap .inner .section.vision .contents .item ol li dl dt {
  margin-bottom: 3.2vw;
}
@media screen and (min-width: 960px) {
  #about.management-policy .introduction_wrap .inner .section.vision .contents .item ol li dl dt {
    margin-bottom: 0.8333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.management-policy .introduction_wrap .inner .section.vision .contents .item ol li dl dt {
    margin-bottom: 12px;
  }
}
#about.management-policy .introduction_wrap .inner .section.vision .contents .item ol li dl dd {
  font-size: 3.7333333333vw;
  line-height: 2.5;
}
@media screen and (min-width: 960px) {
  #about.management-policy .introduction_wrap .inner .section.vision .contents .item ol li dl dd {
    padding-left: 3.4722222222vw;
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.management-policy .introduction_wrap .inner .section.vision .contents .item ol li dl dd {
    padding-left: 50px;
    font-size: 16px;
  }
}
#about.management-policy .introduction_wrap .inner .section.value .top_text {
  font-size: 3.7333333333vw;
  line-height: 2.5;
  text-align: center;
}
@media screen and (min-width: 960px) {
  #about.management-policy .introduction_wrap .inner .section.value .top_text {
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.management-policy .introduction_wrap .inner .section.value .top_text {
    font-size: 16px;
  }
}
#about.management-policy .person_wrap {
  margin-bottom: 33.3333333333vw;
  padding: 16vw 6vw;
  background: #EDF5FB;
}
@media screen and (min-width: 960px) {
  #about.management-policy .person_wrap {
    margin-bottom: 20.8333333333vw;
    padding: 6.9444444444vw 0 8.3333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.management-policy .person_wrap {
    margin-bottom: 300px;
    padding: 100px 0 120px;
  }
}
@media screen and (min-width: 960px) {
  #about.management-policy .person_wrap .inner {
    width: 69.4444444444vw;
    max-width: 1000px;
    margin: 0 auto;
  }
}
#about.management-policy .person_wrap .inner .person_title {
  margin-bottom: 8vw;
  padding-bottom: 5.3333333333vw;
  font-size: 6.1333333333vw;
  text-align: center;
  border-bottom: 1px solid #0036B6;
}
@media screen and (min-width: 960px) {
  #about.management-policy .person_wrap .inner .person_title {
    margin-bottom: 3.3333333333vw;
    padding-bottom: 2.4305555556vw;
    font-size: 1.9444444444vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.management-policy .person_wrap .inner .person_title {
    margin-bottom: 48px;
    padding-bottom: 35px;
    font-size: 28px;
  }
}
#about.management-policy .person_wrap .inner .contents .text {
  font-size: 4.2666666667vw;
  line-height: 2;
  text-align: center;
}
@media screen and (min-width: 960px) {
  #about.management-policy .person_wrap .inner .contents .text {
    font-size: 1.5277777778vw;
  }
}
@media screen and (min-width: 1440px) {
  #about.management-policy .person_wrap .inner .contents .text {
    font-size: 22px;
  }
}

/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

  service

----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/
#service {
  /*================================
  parent
  =================================*/
  /*================================
  other
  =================================*/
  /*================================
  top
  =================================*/
  /*================================
  introduction
  =================================*/
  /*================================
  archivement link
  =================================*/
  /*||||||||||||||||||||||||||||||||||||||||||||||||||
  ----------------------------------------------------

  	environmental-research

  ----------------------------------------------------
  ||||||||||||||||||||||||||||||||||||||||||||||||||||*/
  /*||||||||||||||||||||||||||||||||||||||||||||||||||
  ----------------------------------------------------

  	measurement

  ----------------------------------------------------
  ||||||||||||||||||||||||||||||||||||||||||||||||||||*/
  /*||||||||||||||||||||||||||||||||||||||||||||||||||
  ----------------------------------------------------

  	structure inspection

  ----------------------------------------------------
  ||||||||||||||||||||||||||||||||||||||||||||||||||||*/
  /*||||||||||||||||||||||||||||||||||||||||||||||||||
  ----------------------------------------------------

  	design

  ----------------------------------------------------
  ||||||||||||||||||||||||||||||||||||||||||||||||||||*/
  /*||||||||||||||||||||||||||||||||||||||||||||||||||
  ----------------------------------------------------

  	geological survey

  ----------------------------------------------------
  ||||||||||||||||||||||||||||||||||||||||||||||||||||*/
  /*||||||||||||||||||||||||||||||||||||||||||||||||||
  ----------------------------------------------------

  	client support

  ----------------------------------------------------
  ||||||||||||||||||||||||||||||||||||||||||||||||||||*/
}
@media screen and (min-width: 960px) {
  #service .parent_wrap .contents .item__001, #service .parent_wrap .contents .item__002, #service .parent_wrap .contents .item__003 {
    margin-bottom: 6.9444444444vw;
  }
}
@media screen and (min-width: 1440px) {
  #service .parent_wrap .contents .item__001, #service .parent_wrap .contents .item__002, #service .parent_wrap .contents .item__003 {
    margin-bottom: 100px;
  }
}
@media screen and (min-width: 960px) {
  #service .parent_wrap .contents .item__001, #service .parent_wrap .contents .item__002, #service .parent_wrap .contents .item__004, #service .parent_wrap .contents .item__005 {
    margin-right: 3.1944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  #service .parent_wrap .contents .item__001, #service .parent_wrap .contents .item__002, #service .parent_wrap .contents .item__004, #service .parent_wrap .contents .item__005 {
    margin-right: 46px;
  }
}
@media screen and (min-width: 960px) {
  #service .parent_wrap .contents .item__004, #service .parent_wrap .contents .item__005, #service .parent_wrap .contents .item__006 {
    margin-bottom: 0;
  }
}
#service .other_wrap .other_title {
  margin-bottom: 18.6666666667vw;
  font-size: 5.0666666667vw;
  text-align: center;
}
@media screen and (min-width: 960px) {
  #service .other_wrap .other_title {
    margin-bottom: 13.8888888889vw;
    font-size: 2.3611111111vw;
  }
}
@media screen and (min-width: 1440px) {
  #service .other_wrap .other_title {
    margin-bottom: 200px;
    font-size: 34px;
  }
}
@media screen and (min-width: 960px) {
  #service .other_wrap .contents .item:nth-child(1), #service .other_wrap .contents .item:nth-child(2), #service .other_wrap .contents .item:nth-child(3) {
    margin-bottom: 6.9444444444vw;
  }
}
@media screen and (min-width: 1440px) {
  #service .other_wrap .contents .item:nth-child(1), #service .other_wrap .contents .item:nth-child(2), #service .other_wrap .contents .item:nth-child(3) {
    margin-bottom: 100px;
  }
}
@media screen and (min-width: 960px) {
  #service .other_wrap .contents .item:nth-child(1), #service .other_wrap .contents .item:nth-child(2), #service .other_wrap .contents .item:nth-child(4) {
    margin-right: 3.1944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  #service .other_wrap .contents .item:nth-child(1), #service .other_wrap .contents .item:nth-child(2), #service .other_wrap .contents .item:nth-child(4) {
    margin-right: 46px;
  }
}
@media screen and (min-width: 960px) {
  #service .other_wrap .contents .item:nth-child(4), #service .other_wrap .contents .item:nth-child(5) {
    margin-bottom: 0;
  }
}
#service .top_wrap {
  margin-bottom: 26.6666666667vw;
}
@media screen and (min-width: 960px) {
  #service .top_wrap {
    margin-bottom: 12.5vw;
  }
}
@media screen and (min-width: 1440px) {
  #service .top_wrap {
    margin-bottom: 180px;
  }
}
#service .top_wrap .inner {
  padding: 0 6vw;
}
@media screen and (min-width: 960px) {
  #service .top_wrap .inner {
    width: 90.2777777778vw;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0;
  }
}
@media screen and (min-width: 960px) {
  #service .top_wrap .inner .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 77.7777777778vw;
    max-width: 1120px;
    margin: 0 auto 4.8611111111vw;
  }
}
@media screen and (min-width: 1440px) {
  #service .top_wrap .inner .top {
    margin-bottom: 70px;
  }
}
#service .top_wrap .inner .top .image_wrap {
  width: 100%;
  height: 69.7333333333vw;
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 960px) {
  #service .top_wrap .inner .top .image_wrap {
    width: 45.6944444444vw;
    max-width: 658px;
    height: 36.1805555556vw;
    max-height: 521px;
    margin-bottom: 0;
    order: 2;
  }
}
#service .top_wrap .inner .top .image_wrap .image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  clip-path: url(#top_path);
}
#service .top_wrap .inner .top .catch {
  margin-bottom: 5.3333333333vw;
  line-height: 1.75;
  font-feature-settings: "palt";
  background: linear-gradient(45deg, #0037B0 0%, #2861DC 51.5%, #00A6DB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width: 960px) {
  #service .top_wrap .inner .top .catch {
    margin-bottom: 0;
    order: 1;
  }
}
#service .top_wrap .inner .top .catch span {
  font-size: 5.6vw;
}
@media screen and (min-width: 960px) {
  #service .top_wrap .inner .top .catch span {
    font-size: 2.6388888889vw;
  }
}
@media screen and (min-width: 1440px) {
  #service .top_wrap .inner .top .catch span {
    font-size: 38px;
  }
}
#service .top_wrap .inner .top_text {
  font-size: 3.7333333333vw;
  line-height: 2.5;
}
@media screen and (min-width: 960px) {
  #service .top_wrap .inner .top_text {
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  #service .top_wrap .inner .top_text {
    font-size: 16px;
  }
}
#service .introduction_wrap {
  margin-bottom: 26.6666666667vw;
  padding: 0 6vw;
}
@media screen and (min-width: 960px) {
  #service .introduction_wrap {
    margin-bottom: 12.5vw;
  }
}
@media screen and (min-width: 1440px) {
  #service .introduction_wrap {
    margin-bottom: 180px;
  }
}
@media screen and (min-width: 960px) {
  #service .introduction_wrap {
    padding: 0;
  }
}
#service .introduction_wrap .contents_title {
  margin-bottom: 13.3333333333vw;
  padding: 3.2vw 0;
  text-align: center;
  background: linear-gradient(45deg, #0037B0 0%, #2861DC 51.5%, #00A6DB 100%);
}
@media screen and (min-width: 960px) {
  #service .introduction_wrap .contents_title {
    width: 90.2777777778vw;
    max-width: 1300px;
    margin: 0 auto 5.1388888889vw;
    padding: 1.25vw 0;
  }
}
@media screen and (min-width: 1440px) {
  #service .introduction_wrap .contents_title {
    margin-bottom: 74px;
    padding: 18px 0;
  }
}
#service .introduction_wrap .contents_title span {
  font-size: 5.6vw;
  line-height: 1;
  color: #fff;
}
@media screen and (min-width: 960px) {
  #service .introduction_wrap .contents_title span {
    font-size: 2.3611111111vw;
  }
}
@media screen and (min-width: 1440px) {
  #service .introduction_wrap .contents_title span {
    font-size: 34px;
  }
}
#service .archivement_link {
  height: 49.6vw;
  margin-bottom: 29.3333333333vw;
  position: relative;
}
@media screen and (min-width: 960px) {
  #service .archivement_link {
    height: 21.3541666667vw;
    max-height: 410px;
    margin-bottom: 9.375vw;
  }
}
@media screen and (min-width: 1920px) {
  #service .archivement_link {
    margin-bottom: 180px;
  }
}
#service .archivement_link a {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
#service .archivement_link a:before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #0000EA 0%, #0039FF 51.5%, #0076FF 100%);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.6;
  z-index: 1;
}
#service .archivement_link a .bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 960px) {
  #service .archivement_link a .bg {
    transition: all 0.4s;
  }
}
#service .archivement_link a .archivement_link_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 66.6666666667vw;
  margin: 0 auto;
  padding: 2.6666666667vw 0;
  background: #fff;
  border: 1px solid #0036B6;
  border-radius: 0.8vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
@media screen and (min-width: 960px) {
  #service .archivement_link a .archivement_link_btn {
    width: 55.5555555556vw;
    max-width: 800px;
    padding: 1.6666666667vw 0;
    border-radius: 0.2777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  #service .archivement_link a .archivement_link_btn {
    padding: 24px 0;
    border-radius: 4px;
  }
}
#service .archivement_link a .archivement_link_btn .link_text {
  margin-right: 2.6666666667vw;
}
@media screen and (min-width: 960px) {
  #service .archivement_link a .archivement_link_btn .link_text {
    margin-right: 1vw;
  }
}
@media screen and (min-width: 1440px) {
  #service .archivement_link a .archivement_link_btn .link_text {
    margin-right: 14px;
  }
}
#service .archivement_link a .archivement_link_btn .link_text span {
  display: inline-block;
  font-size: 5.6vw;
  line-height: 1;
  background: linear-gradient(45deg, #0037B0 0%, #2861DC 51.5%, #00A6DB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width: 960px) {
  #service .archivement_link a .archivement_link_btn .link_text span {
    font-size: 2.6388888889vw;
  }
}
@media screen and (min-width: 1440px) {
  #service .archivement_link a .archivement_link_btn .link_text span {
    font-size: 38px;
  }
}
#service .archivement_link a .archivement_link_btn .arrow {
  width: 7.2vw;
  height: 7.2vw;
  border: 2px solid #0036B6;
  border-radius: 50%;
}
@media screen and (min-width: 960px) {
  #service .archivement_link a .archivement_link_btn .arrow {
    width: 2.4305555556vw;
    max-width: 35px;
    height: 2.4305555556vw;
    max-height: 35px;
    border-width: 1px;
  }
}
#service .archivement_link a .archivement_link_btn .arrow span {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
#service .archivement_link a .archivement_link_btn .arrow span:before {
  content: "";
  width: 0.4em;
  height: 0.4em;
  border: 2px solid #0036B6;
  border-left: 0;
  border-bottom: 0;
  position: absolute;
  top: 52%;
  left: 46%;
  transform: translate(-50%, -50%) rotate3d(0, 0, 1, 45deg);
  transition: all 0.4s;
}
@media screen and (min-width: 960px) {
  #service .archivement_link a .archivement_link_btn .arrow span:before {
    border-width: 1px;
  }
}
@media screen and (min-width: 960px) {
  #service .archivement_link a:hover .bg {
    transform: scale(1.05);
  }
}
#service.environmental-research .introduction_wrap .inner .contents {
  margin-bottom: 13.3333333333vw;
}
@media screen and (min-width: 960px) {
  #service.environmental-research .introduction_wrap .inner .contents {
    margin-bottom: 6.9444444444vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.environmental-research .introduction_wrap .inner .contents {
    margin-bottom: 100px;
  }
}
#service.environmental-research .introduction_wrap .inner .contents:last-child {
  margin-bottom: 0;
}
#service.environmental-research .introduction_wrap .inner .contents .section_title_wrap {
  margin-bottom: 10.6666666667vw;
  position: relative;
}
@media screen and (min-width: 960px) {
  #service.environmental-research .introduction_wrap .inner .contents .section_title_wrap {
    width: 90.2777777778vw;
    max-width: 1300px;
    margin: 0 auto 5.4166666667vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.environmental-research .introduction_wrap .inner .contents .section_title_wrap {
    margin-bottom: 78px;
  }
}
#service.environmental-research .introduction_wrap .inner .contents .section_title_wrap:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #0036B6;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 0;
}
#service.environmental-research .introduction_wrap .inner .contents .section_title_wrap .title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60vw;
  margin: 0 auto;
  background: #fff;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 960px) {
  #service.environmental-research .introduction_wrap .inner .contents .section_title_wrap .title {
    width: 31.8055555556vw;
    max-width: 458px;
  }
}
#service.environmental-research .introduction_wrap .inner .contents .section_title_wrap .title * {
  line-height: 1;
}
#service.environmental-research .introduction_wrap .inner .contents .section_title_wrap .title .ja {
  margin-right: 2.6666666667vw;
  font-size: 4.8vw;
}
@media screen and (min-width: 960px) {
  #service.environmental-research .introduction_wrap .inner .contents .section_title_wrap .title .ja {
    margin-right: 1.1111111111vw;
    font-size: 2.2222222222vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.environmental-research .introduction_wrap .inner .contents .section_title_wrap .title .ja {
    margin-right: 16px;
    font-size: 32px;
  }
}
#service.environmental-research .introduction_wrap .inner .contents .section_title_wrap .title .en {
  font-size: 4vw;
}
@media screen and (min-width: 960px) {
  #service.environmental-research .introduction_wrap .inner .contents .section_title_wrap .title .en {
    font-size: 1.6666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.environmental-research .introduction_wrap .inner .contents .section_title_wrap .title .en {
    font-size: 24px;
  }
}
@media screen and (min-width: 960px) {
  #service.environmental-research .introduction_wrap .inner .contents .item {
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
}
#service.environmental-research .introduction_wrap .inner .contents .item .image {
  margin-bottom: 4.5333333333vw;
  border-radius: 0.8vw;
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  #service.environmental-research .introduction_wrap .inner .contents .item .image {
    margin-bottom: 0;
    border-radius: 0.2777777778vw;
    order: 2;
  }
}
@media screen and (min-width: 1440px) {
  #service.environmental-research .introduction_wrap .inner .contents .item .image {
    border-radius: 4px;
  }
}
@media screen and (min-width: 960px) {
  #service.environmental-research .introduction_wrap .inner .contents .item .text_wrap {
    min-width: 400px;
    margin-right: 3.8888888889vw;
    order: 1;
  }
}
@media screen and (min-width: 1440px) {
  #service.environmental-research .introduction_wrap .inner .contents .item .text_wrap {
    margin-right: 56px;
  }
}
#service.environmental-research .introduction_wrap .inner .contents .item .text_wrap .item_title {
  margin-bottom: 4.5333333333vw;
  padding: 2.1333333333vw;
  font-size: 4.5333333333vw;
  line-height: 1;
  text-align: center;
  background: #fff;
  border: 1px solid #0036B6;
  border-radius: 0.8vw;
}
@media screen and (min-width: 960px) {
  #service.environmental-research .introduction_wrap .inner .contents .item .text_wrap .item_title {
    margin-bottom: 2.3611111111vw;
    padding: 0.8333333333vw 0;
    font-size: 2.0833333333vw;
    border-radius: 0.2777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.environmental-research .introduction_wrap .inner .contents .item .text_wrap .item_title {
    margin-bottom: 34px;
    padding: 12px 0;
    font-size: 30px;
    border-radius: 4px;
  }
}
#service.environmental-research .introduction_wrap .inner .contents .item .text_wrap ul li, #service.environmental-research .introduction_wrap .inner .contents .item .text_wrap ul .big {
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 960px) {
  #service.environmental-research .introduction_wrap .inner .contents .item .text_wrap ul li, #service.environmental-research .introduction_wrap .inner .contents .item .text_wrap ul .big {
    font-size: 1.6666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.environmental-research .introduction_wrap .inner .contents .item .text_wrap ul li, #service.environmental-research .introduction_wrap .inner .contents .item .text_wrap ul .big {
    font-size: 24px;
  }
}
#service.environmental-research .introduction_wrap .inner .contents .item .text_wrap ul li {
  display: flex;
  flex-direction: column;
  margin-bottom: 2.6666666667vw;
  padding-left: 1.4em;
}
@media screen and (min-width: 960px) {
  #service.environmental-research .introduction_wrap .inner .contents .item .text_wrap ul li {
    margin-bottom: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.environmental-research .introduction_wrap .inner .contents .item .text_wrap ul li {
    margin-bottom: 20px;
  }
}
#service.environmental-research .introduction_wrap .inner .contents .item .text_wrap ul li:last-child {
  margin-bottom: 0;
}
#service.environmental-research .introduction_wrap .inner .contents .item .text_wrap ul li span {
  display: inline-block;
}
#service.environmental-research .introduction_wrap .inner .contents .item .text_wrap ul li span.big {
  position: relative;
}
#service.environmental-research .introduction_wrap .inner .contents .item .text_wrap ul li span.big:before {
  content: "●";
  font-size: 2.9333333333vw;
  position: absolute;
  top: 50%;
  left: -1.4em;
  transform: translateY(-50%);
}
@media screen and (min-width: 960px) {
  #service.environmental-research .introduction_wrap .inner .contents .item .text_wrap ul li span.big:before {
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.environmental-research .introduction_wrap .inner .contents .item .text_wrap ul li span.big:before {
    font-size: 16px;
  }
}
#service.environmental-research .introduction_wrap .inner .contents .item .text_wrap ul li span.small {
  font-size: 2.6666666667vw;
}
@media screen and (min-width: 960px) {
  #service.environmental-research .introduction_wrap .inner .contents .item .text_wrap ul li span.small {
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.environmental-research .introduction_wrap .inner .contents .item .text_wrap ul li span.small {
    font-size: 16px;
  }
}
@media screen and (min-width: 960px) {
  #service.environmental-research .introduction_wrap .inner .contents.field-investigation .item .image {
    width: 39.3055555556vw;
    max-width: 566px;
  }
}
@media screen and (min-width: 960px) {
  #service.environmental-research .introduction_wrap .inner .contents.support .item .image {
    width: 47.0833333333vw;
    max-width: 678px;
  }
}
@media screen and (min-width: 960px) {
  #service.measurement .introduction_wrap .inner {
    width: 90.2777777778vw;
    max-width: 1300px;
    margin: 0 auto;
  }
}
#service.measurement .introduction_wrap .inner .section_title_wrap {
  margin-bottom: 10.6666666667vw;
  position: relative;
}
@media screen and (min-width: 960px) {
  #service.measurement .introduction_wrap .inner .section_title_wrap {
    margin-bottom: 5.4166666667vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.measurement .introduction_wrap .inner .section_title_wrap {
    margin-bottom: 78px;
  }
}
#service.measurement .introduction_wrap .inner .section_title_wrap:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #0036B6;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 0;
}
@media screen and (min-width: 960px) {
  #service.measurement .introduction_wrap .inner .section_title_wrap .title_contents {
    display: flex;
  }
}
#service.measurement .introduction_wrap .inner .section_title_wrap .title_contents:before, #service.measurement .introduction_wrap .inner .section_title_wrap .title_contents:after {
  content: "";
  position: absolute;
}
#service.measurement .introduction_wrap .inner .section_title_wrap .title_contents:before {
  width: 66.6666666667vw;
  height: 100%;
  background: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
@media screen and (min-width: 960px) {
  #service.measurement .introduction_wrap .inner .section_title_wrap .title_contents:before {
    width: 24.3055555556vw;
    max-width: 350px;
  }
}
#service.measurement .introduction_wrap .inner .section_title_wrap .title_contents:after {
  width: 1.0666666667vw;
  height: 4.2666666667vw;
  background: url("../images/measurement/arrow_title_mb.svg") no-repeat center center;
  background-size: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
@media screen and (min-width: 960px) {
  #service.measurement .introduction_wrap .inner .section_title_wrap .title_contents:after {
    width: 10vw;
    max-width: 144px;
    height: 0.5555555556vw;
    max-height: 8px;
    background: url("../images/measurement/arrow_title.svg") no-repeat center center;
    background-size: 100%;
  }
}
#service.measurement .introduction_wrap .inner .section_title_wrap .title_contents .title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60vw;
  margin: 0 auto 10.6666666667vw;
  background: #fff;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 960px) {
  #service.measurement .introduction_wrap .inner .section_title_wrap .title_contents .title {
    width: 31.8055555556vw;
    max-width: 458px;
    margin-bottom: 0;
  }
}
#service.measurement .introduction_wrap .inner .section_title_wrap .title_contents .title:last-child {
  margin-bottom: 0;
}
#service.measurement .introduction_wrap .inner .section_title_wrap .title_contents .title * {
  line-height: 1;
}
#service.measurement .introduction_wrap .inner .section_title_wrap .title_contents .title .ja {
  margin-right: 2.6666666667vw;
  font-size: 4.8vw;
}
@media screen and (min-width: 960px) {
  #service.measurement .introduction_wrap .inner .section_title_wrap .title_contents .title .ja {
    margin-right: 1.1111111111vw;
    font-size: 2.2222222222vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.measurement .introduction_wrap .inner .section_title_wrap .title_contents .title .ja {
    margin-right: 16px;
    font-size: 32px;
  }
}
#service.measurement .introduction_wrap .inner .section_title_wrap .title_contents .title .en {
  font-size: 4vw;
}
@media screen and (min-width: 960px) {
  #service.measurement .introduction_wrap .inner .section_title_wrap .title_contents .title .en {
    font-size: 1.6666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.measurement .introduction_wrap .inner .section_title_wrap .title_contents .title .en {
    font-size: 24px;
  }
}
#service.measurement .introduction_wrap .inner .contents {
  margin-bottom: 13.3333333333vw;
}
@media screen and (min-width: 960px) {
  #service.measurement .introduction_wrap .inner .contents {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 6.9444444444vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.measurement .introduction_wrap .inner .contents {
    margin-bottom: 100px;
  }
}
#service.measurement .introduction_wrap .inner .contents .item {
  margin-bottom: 13.3333333333vw;
}
@media screen and (min-width: 960px) {
  #service.measurement .introduction_wrap .inner .contents .item {
    width: 32%;
    margin-bottom: 5.5555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.measurement .introduction_wrap .inner .contents .item {
    margin-bottom: 80px;
  }
}
#service.measurement .introduction_wrap .inner .contents .item:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 960px) {
  #service.measurement .introduction_wrap .inner .contents .item:nth-child(4), #service.measurement .introduction_wrap .inner .contents .item:nth-child(5), #service.measurement .introduction_wrap .inner .contents .item:nth-child(6) {
    margin-bottom: 0;
  }
}
#service.measurement .introduction_wrap .inner .contents .item .item_title {
  margin-bottom: 4.5333333333vw;
  padding: 2.1333333333vw;
  font-size: 4.5333333333vw;
  line-height: 1;
  text-align: center;
  background: #fff;
  border: 1px solid #0036B6;
  border-radius: 0.8vw;
}
@media screen and (min-width: 960px) {
  #service.measurement .introduction_wrap .inner .contents .item .item_title {
    margin-bottom: 2.3611111111vw;
    padding: 0.8333333333vw 0;
    font-size: 2.0833333333vw;
    border-radius: 0.2777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.measurement .introduction_wrap .inner .contents .item .item_title {
    margin-bottom: 34px;
    padding: 12px 0;
    font-size: 30px;
    border-radius: 4px;
  }
}
#service.measurement .introduction_wrap .inner .contents .item ul li, #service.measurement .introduction_wrap .inner .contents .item ul .big {
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 960px) {
  #service.measurement .introduction_wrap .inner .contents .item ul li, #service.measurement .introduction_wrap .inner .contents .item ul .big {
    font-size: 1.6666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.measurement .introduction_wrap .inner .contents .item ul li, #service.measurement .introduction_wrap .inner .contents .item ul .big {
    font-size: 24px;
  }
}
#service.measurement .introduction_wrap .inner .contents .item ul li {
  display: flex;
  flex-direction: column;
  margin-bottom: 2.6666666667vw;
  padding-left: 1.4em;
}
@media screen and (min-width: 960px) {
  #service.measurement .introduction_wrap .inner .contents .item ul li {
    margin-bottom: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.measurement .introduction_wrap .inner .contents .item ul li {
    margin-bottom: 20px;
  }
}
#service.measurement .introduction_wrap .inner .contents .item ul li:last-child {
  margin-bottom: 0;
}
#service.measurement .introduction_wrap .inner .contents .item ul li span {
  display: inline-block;
}
#service.measurement .introduction_wrap .inner .contents .item ul li span.big {
  position: relative;
}
#service.measurement .introduction_wrap .inner .contents .item ul li span.big:before {
  content: "●";
  font-size: 2.9333333333vw;
  position: absolute;
  top: 50%;
  left: -1.4em;
  transform: translateY(-50%);
}
@media screen and (min-width: 960px) {
  #service.measurement .introduction_wrap .inner .contents .item ul li span.big:before {
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.measurement .introduction_wrap .inner .contents .item ul li span.big:before {
    font-size: 16px;
  }
}
#service.measurement .introduction_wrap .inner .contents .item ul li span.small {
  font-size: 2.6666666667vw;
}
@media screen and (min-width: 960px) {
  #service.measurement .introduction_wrap .inner .contents .item ul li span.small {
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.measurement .introduction_wrap .inner .contents .item ul li span.small {
    font-size: 16px;
  }
}
#service.measurement .introduction_wrap .inner .bottom_image {
  border-radius: 0.8vw;
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  #service.measurement .introduction_wrap .inner .bottom_image {
    width: 38.6111111111vw;
    max-width: 556px;
    margin: 0 auto;
    border-radius: 0.2777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.measurement .introduction_wrap .inner .bottom_image {
    border-radius: 4px;
  }
}
@media screen and (min-width: 960px) {
  #service.structure-inspection .introduction_wrap .inner {
    width: 90.2777777778vw;
    max-width: 1300px;
    margin: 0 auto;
  }
}
#service.structure-inspection .introduction_wrap .inner .section_title_wrap {
  margin-bottom: 10.6666666667vw;
  position: relative;
}
@media screen and (min-width: 960px) {
  #service.structure-inspection .introduction_wrap .inner .section_title_wrap {
    width: 90.2777777778vw;
    max-width: 1300px;
    margin: 0 auto 5.4166666667vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.structure-inspection .introduction_wrap .inner .section_title_wrap {
    margin-bottom: 78px;
  }
}
#service.structure-inspection .introduction_wrap .inner .section_title_wrap:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #0036B6;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 0;
}
#service.structure-inspection .introduction_wrap .inner .section_title_wrap .title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60vw;
  margin: 0 auto;
  background: #fff;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 960px) {
  #service.structure-inspection .introduction_wrap .inner .section_title_wrap .title {
    width: 31.8055555556vw;
    max-width: 458px;
  }
}
#service.structure-inspection .introduction_wrap .inner .section_title_wrap .title * {
  line-height: 1;
}
#service.structure-inspection .introduction_wrap .inner .section_title_wrap .title .ja {
  margin-right: 2.6666666667vw;
  font-size: 4.8vw;
}
@media screen and (min-width: 960px) {
  #service.structure-inspection .introduction_wrap .inner .section_title_wrap .title .ja {
    margin-right: 1.1111111111vw;
    font-size: 2.2222222222vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.structure-inspection .introduction_wrap .inner .section_title_wrap .title .ja {
    margin-right: 16px;
    font-size: 32px;
  }
}
#service.structure-inspection .introduction_wrap .inner .section_title_wrap .title .en {
  font-size: 4vw;
}
@media screen and (min-width: 960px) {
  #service.structure-inspection .introduction_wrap .inner .section_title_wrap .title .en {
    font-size: 1.6666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.structure-inspection .introduction_wrap .inner .section_title_wrap .title .en {
    font-size: 24px;
  }
}
#service.structure-inspection .introduction_wrap .inner .contents {
  margin-bottom: 13.3333333333vw;
}
@media screen and (min-width: 960px) {
  #service.structure-inspection .introduction_wrap .inner .contents {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 6.9444444444vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.structure-inspection .introduction_wrap .inner .contents {
    margin-bottom: 100px;
  }
}
#service.structure-inspection .introduction_wrap .inner .contents .item {
  margin-bottom: 13.3333333333vw;
}
@media screen and (min-width: 960px) {
  #service.structure-inspection .introduction_wrap .inner .contents .item {
    width: 32%;
    margin-bottom: 0;
    margin-right: 2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.structure-inspection .introduction_wrap .inner .contents .item {
    margin-right: 40px;
  }
}
#service.structure-inspection .introduction_wrap .inner .contents .item:last-child {
  margin-bottom: 0;
  margin-right: 0;
}
#service.structure-inspection .introduction_wrap .inner .contents .item .item_title {
  margin-bottom: 4.5333333333vw;
  padding: 2.1333333333vw;
  font-size: 4.5333333333vw;
  line-height: 1;
  text-align: center;
  background: #fff;
  border: 1px solid #0036B6;
  border-radius: 0.8vw;
}
@media screen and (min-width: 960px) {
  #service.structure-inspection .introduction_wrap .inner .contents .item .item_title {
    margin-bottom: 2.3611111111vw;
    padding: 0.8333333333vw 0;
    font-size: 2.0833333333vw;
    border-radius: 0.2777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.structure-inspection .introduction_wrap .inner .contents .item .item_title {
    margin-bottom: 34px;
    padding: 12px 0;
    font-size: 30px;
    border-radius: 4px;
  }
}
#service.structure-inspection .introduction_wrap .inner .contents .item ul li, #service.structure-inspection .introduction_wrap .inner .contents .item ul .big {
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 960px) {
  #service.structure-inspection .introduction_wrap .inner .contents .item ul li, #service.structure-inspection .introduction_wrap .inner .contents .item ul .big {
    font-size: 1.6666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.structure-inspection .introduction_wrap .inner .contents .item ul li, #service.structure-inspection .introduction_wrap .inner .contents .item ul .big {
    font-size: 24px;
  }
}
#service.structure-inspection .introduction_wrap .inner .contents .item ul li {
  display: flex;
  flex-direction: column;
  margin-bottom: 2.6666666667vw;
  padding-left: 1.4em;
}
@media screen and (min-width: 960px) {
  #service.structure-inspection .introduction_wrap .inner .contents .item ul li {
    margin-bottom: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.structure-inspection .introduction_wrap .inner .contents .item ul li {
    margin-bottom: 20px;
  }
}
#service.structure-inspection .introduction_wrap .inner .contents .item ul li:last-child {
  margin-bottom: 0;
}
#service.structure-inspection .introduction_wrap .inner .contents .item ul li span {
  display: inline-block;
}
#service.structure-inspection .introduction_wrap .inner .contents .item ul li span.big {
  position: relative;
}
#service.structure-inspection .introduction_wrap .inner .contents .item ul li span.big:before {
  content: "●";
  font-size: 2.9333333333vw;
  position: absolute;
  top: 50%;
  left: -1.4em;
  transform: translateY(-50%);
}
@media screen and (min-width: 960px) {
  #service.structure-inspection .introduction_wrap .inner .contents .item ul li span.big:before {
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.structure-inspection .introduction_wrap .inner .contents .item ul li span.big:before {
    font-size: 16px;
  }
}
#service.structure-inspection .introduction_wrap .inner .contents .item ul li span.small {
  font-size: 2.6666666667vw;
}
@media screen and (min-width: 960px) {
  #service.structure-inspection .introduction_wrap .inner .contents .item ul li span.small {
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.structure-inspection .introduction_wrap .inner .contents .item ul li span.small {
    font-size: 16px;
  }
}
#service.structure-inspection .introduction_wrap .inner .contents .item .text {
  font-size: 3.7333333333vw;
  line-height: 1.5;
}
@media screen and (min-width: 960px) {
  #service.structure-inspection .introduction_wrap .inner .contents .item .text {
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.structure-inspection .introduction_wrap .inner .contents .item .text {
    font-size: 16px;
  }
}
#service.structure-inspection .introduction_wrap .inner .bottom_image {
  border-radius: 0.8vw;
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  #service.structure-inspection .introduction_wrap .inner .bottom_image {
    width: 38.6111111111vw;
    max-width: 556px;
    margin: 0 auto;
    border-radius: 0.2777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.structure-inspection .introduction_wrap .inner .bottom_image {
    border-radius: 4px;
  }
}
@media screen and (min-width: 960px) {
  #service.design .introduction_wrap .inner {
    width: 90.2777777778vw;
    max-width: 1300px;
    margin: 0 auto;
  }
}
#service.design .introduction_wrap .inner .contents {
  margin-bottom: 13.3333333333vw;
  position: relative;
}
@media screen and (min-width: 960px) {
  #service.design .introduction_wrap .inner .contents {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 6.9444444444vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.design .introduction_wrap .inner .contents {
    margin-bottom: 100px;
  }
}
#service.design .introduction_wrap .inner .contents:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 960px) {
  #service.design .introduction_wrap .inner .contents:after {
    content: "";
    width: 32%;
  }
}
#service.design .introduction_wrap .inner .contents .item {
  margin-bottom: 13.3333333333vw;
}
@media screen and (min-width: 960px) {
  #service.design .introduction_wrap .inner .contents .item {
    width: 32%;
    margin-bottom: 5.5555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.design .introduction_wrap .inner .contents .item {
    margin-bottom: 80px;
  }
}
#service.design .introduction_wrap .inner .contents .item:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 960px) {
  #service.design .introduction_wrap .inner .contents .item:nth-child(4), #service.design .introduction_wrap .inner .contents .item:nth-child(5), #service.design .introduction_wrap .inner .contents .item:nth-child(6) {
    margin-bottom: 0;
  }
}
#service.design .introduction_wrap .inner .contents .item .item_title {
  margin-bottom: 4.5333333333vw;
  padding: 2.1333333333vw;
  font-size: 4.5333333333vw;
  line-height: 1;
  text-align: center;
  background: #fff;
  border: 1px solid #0036B6;
  border-radius: 0.8vw;
}
@media screen and (min-width: 960px) {
  #service.design .introduction_wrap .inner .contents .item .item_title {
    margin-bottom: 2.3611111111vw;
    padding: 0.8333333333vw 0;
    font-size: 2.0833333333vw;
    border-radius: 0.2777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.design .introduction_wrap .inner .contents .item .item_title {
    margin-bottom: 34px;
    padding: 12px 0;
    font-size: 30px;
    border-radius: 4px;
  }
}
#service.design .introduction_wrap .inner .contents .item ul li, #service.design .introduction_wrap .inner .contents .item ul .big {
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 960px) {
  #service.design .introduction_wrap .inner .contents .item ul li, #service.design .introduction_wrap .inner .contents .item ul .big {
    font-size: 1.6666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.design .introduction_wrap .inner .contents .item ul li, #service.design .introduction_wrap .inner .contents .item ul .big {
    font-size: 24px;
  }
}
#service.design .introduction_wrap .inner .contents .item ul li {
  display: flex;
  flex-direction: column;
  margin-bottom: 2.6666666667vw;
  padding-left: 1.4em;
}
@media screen and (min-width: 960px) {
  #service.design .introduction_wrap .inner .contents .item ul li {
    margin-bottom: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.design .introduction_wrap .inner .contents .item ul li {
    margin-bottom: 20px;
  }
}
#service.design .introduction_wrap .inner .contents .item ul li:last-child {
  margin-bottom: 0;
}
#service.design .introduction_wrap .inner .contents .item ul li span {
  display: inline-block;
}
#service.design .introduction_wrap .inner .contents .item ul li span.big {
  position: relative;
}
#service.design .introduction_wrap .inner .contents .item ul li span.big:before {
  content: "●";
  font-size: 2.9333333333vw;
  position: absolute;
  top: 50%;
  left: -1.4em;
  transform: translateY(-50%);
}
@media screen and (min-width: 960px) {
  #service.design .introduction_wrap .inner .contents .item ul li span.big:before {
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.design .introduction_wrap .inner .contents .item ul li span.big:before {
    font-size: 16px;
  }
}
#service.design .introduction_wrap .inner .contents .item ul li span.small {
  font-size: 2.6666666667vw;
}
@media screen and (min-width: 960px) {
  #service.design .introduction_wrap .inner .contents .item ul li span.small {
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.design .introduction_wrap .inner .contents .item ul li span.small {
    font-size: 16px;
  }
}
#service.geological-survey .introduction_wrap .inner .section_title_wrap {
  margin-bottom: 10.6666666667vw;
  position: relative;
}
@media screen and (min-width: 960px) {
  #service.geological-survey .introduction_wrap .inner .section_title_wrap {
    width: 90.2777777778vw;
    max-width: 1300px;
    margin: 0 auto 5.4166666667vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.geological-survey .introduction_wrap .inner .section_title_wrap {
    margin-bottom: 78px;
  }
}
#service.geological-survey .introduction_wrap .inner .section_title_wrap:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #0036B6;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 0;
}
#service.geological-survey .introduction_wrap .inner .section_title_wrap .title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60vw;
  margin: 0 auto;
  background: #fff;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 960px) {
  #service.geological-survey .introduction_wrap .inner .section_title_wrap .title {
    width: 31.8055555556vw;
    max-width: 458px;
  }
}
#service.geological-survey .introduction_wrap .inner .section_title_wrap .title * {
  line-height: 1;
}
#service.geological-survey .introduction_wrap .inner .section_title_wrap .title .ja {
  margin-right: 2.6666666667vw;
  font-size: 4.8vw;
}
@media screen and (min-width: 960px) {
  #service.geological-survey .introduction_wrap .inner .section_title_wrap .title .ja {
    margin-right: 1.1111111111vw;
    font-size: 2.2222222222vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.geological-survey .introduction_wrap .inner .section_title_wrap .title .ja {
    margin-right: 16px;
    font-size: 32px;
  }
}
#service.geological-survey .introduction_wrap .inner .section_title_wrap .title .en {
  font-size: 4vw;
}
@media screen and (min-width: 960px) {
  #service.geological-survey .introduction_wrap .inner .section_title_wrap .title .en {
    font-size: 1.6666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.geological-survey .introduction_wrap .inner .section_title_wrap .title .en {
    font-size: 24px;
  }
}
#service.geological-survey .introduction_wrap .inner .section {
  margin-bottom: 13.3333333333vw;
}
@media screen and (min-width: 960px) {
  #service.geological-survey .introduction_wrap .inner .section {
    width: 90.2777777778vw;
    max-width: 1300px;
    margin: 0 auto 6.9444444444vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.geological-survey .introduction_wrap .inner .section {
    margin-bottom: 100px;
  }
}
#service.geological-survey .introduction_wrap .inner .section:last-child {
  margin-bottom: 0;
}
#service.geological-survey .introduction_wrap .inner .section .contents {
  margin-bottom: 10.6666666667vw;
}
@media screen and (min-width: 960px) {
  #service.geological-survey .introduction_wrap .inner .section .contents {
    margin-bottom: 5.5555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.geological-survey .introduction_wrap .inner .section .contents {
    margin-bottom: 80px;
  }
}
#service.geological-survey .introduction_wrap .inner .section.field-investigation .contents {
  margin-bottom: 13.3333333333vw;
  position: relative;
}
@media screen and (min-width: 960px) {
  #service.geological-survey .introduction_wrap .inner .section.field-investigation .contents {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 6.9444444444vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.geological-survey .introduction_wrap .inner .section.field-investigation .contents {
    margin-bottom: 100px;
  }
}
#service.geological-survey .introduction_wrap .inner .section.field-investigation .contents:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 960px) {
  #service.geological-survey .introduction_wrap .inner .section.field-investigation .contents:after {
    content: "";
    width: 32%;
  }
}
#service.geological-survey .introduction_wrap .inner .section.field-investigation .contents .item {
  margin-bottom: 13.3333333333vw;
}
@media screen and (min-width: 960px) {
  #service.geological-survey .introduction_wrap .inner .section.field-investigation .contents .item {
    width: 32%;
    margin-bottom: 5.5555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.geological-survey .introduction_wrap .inner .section.field-investigation .contents .item {
    margin-bottom: 80px;
  }
}
#service.geological-survey .introduction_wrap .inner .section.field-investigation .contents .item:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 960px) {
  #service.geological-survey .introduction_wrap .inner .section.field-investigation .contents .item:nth-child(4), #service.geological-survey .introduction_wrap .inner .section.field-investigation .contents .item:nth-child(5), #service.geological-survey .introduction_wrap .inner .section.field-investigation .contents .item:nth-child(6) {
    margin-bottom: 0;
  }
}
#service.geological-survey .introduction_wrap .inner .section.field-investigation .contents .item .item_title {
  margin-bottom: 4.5333333333vw;
  padding: 2.1333333333vw;
  font-size: 4.5333333333vw;
  line-height: 1;
  text-align: center;
  background: #fff;
  border: 1px solid #0036B6;
  border-radius: 0.8vw;
}
@media screen and (min-width: 960px) {
  #service.geological-survey .introduction_wrap .inner .section.field-investigation .contents .item .item_title {
    margin-bottom: 2.3611111111vw;
    padding: 0.8333333333vw 0;
    font-size: 2.0833333333vw;
    border-radius: 0.2777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.geological-survey .introduction_wrap .inner .section.field-investigation .contents .item .item_title {
    margin-bottom: 34px;
    padding: 12px 0;
    font-size: 30px;
    border-radius: 4px;
  }
}
#service.geological-survey .introduction_wrap .inner .section.field-investigation .contents .item ul li, #service.geological-survey .introduction_wrap .inner .section.field-investigation .contents .item ul .big {
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 960px) {
  #service.geological-survey .introduction_wrap .inner .section.field-investigation .contents .item ul li, #service.geological-survey .introduction_wrap .inner .section.field-investigation .contents .item ul .big {
    font-size: 1.6666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.geological-survey .introduction_wrap .inner .section.field-investigation .contents .item ul li, #service.geological-survey .introduction_wrap .inner .section.field-investigation .contents .item ul .big {
    font-size: 24px;
  }
}
#service.geological-survey .introduction_wrap .inner .section.field-investigation .contents .item ul li {
  display: flex;
  flex-direction: column;
  margin-bottom: 2.6666666667vw;
  padding-left: 1.4em;
}
@media screen and (min-width: 960px) {
  #service.geological-survey .introduction_wrap .inner .section.field-investigation .contents .item ul li {
    margin-bottom: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.geological-survey .introduction_wrap .inner .section.field-investigation .contents .item ul li {
    margin-bottom: 20px;
  }
}
#service.geological-survey .introduction_wrap .inner .section.field-investigation .contents .item ul li:last-child {
  margin-bottom: 0;
}
#service.geological-survey .introduction_wrap .inner .section.field-investigation .contents .item ul li span {
  display: inline-block;
}
#service.geological-survey .introduction_wrap .inner .section.field-investigation .contents .item ul li span.big {
  position: relative;
}
#service.geological-survey .introduction_wrap .inner .section.field-investigation .contents .item ul li span.big:before {
  content: "●";
  font-size: 2.9333333333vw;
  position: absolute;
  top: 50%;
  left: -1.4em;
  transform: translateY(-50%);
}
@media screen and (min-width: 960px) {
  #service.geological-survey .introduction_wrap .inner .section.field-investigation .contents .item ul li span.big:before {
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.geological-survey .introduction_wrap .inner .section.field-investigation .contents .item ul li span.big:before {
    font-size: 16px;
  }
}
#service.geological-survey .introduction_wrap .inner .section.field-investigation .contents .item ul li span.small {
  font-size: 2.6666666667vw;
}
@media screen and (min-width: 960px) {
  #service.geological-survey .introduction_wrap .inner .section.field-investigation .contents .item ul li span.small {
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.geological-survey .introduction_wrap .inner .section.field-investigation .contents .item ul li span.small {
    font-size: 16px;
  }
}
@media screen and (min-width: 960px) {
  #service.geological-survey .introduction_wrap .inner .section.field-investigation .bottom_image_wrap {
    display: flex;
    justify-content: space-between;
    width: 82.7777777778vw;
    max-width: 1192px;
    margin: 0 auto;
  }
}
#service.geological-survey .introduction_wrap .inner .section.field-investigation .bottom_image_wrap .image {
  margin-bottom: 2.6666666667vw;
  border-radius: 0.8vw;
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  #service.geological-survey .introduction_wrap .inner .section.field-investigation .bottom_image_wrap .image {
    width: 48%;
    margin-bottom: 0;
    border-radius: 0.2777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.geological-survey .introduction_wrap .inner .section.field-investigation .bottom_image_wrap .image {
    border-radius: 4px;
  }
}
@media screen and (min-width: 960px) {
  #service.geological-survey .introduction_wrap .inner .section.support .contents .item {
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
}
#service.geological-survey .introduction_wrap .inner .section.support .contents .item .image {
  margin-bottom: 4.5333333333vw;
  border-radius: 0.8vw;
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  #service.geological-survey .introduction_wrap .inner .section.support .contents .item .image {
    width: 39.3055555556vw;
    max-width: 566px;
    margin-bottom: 0;
    border-radius: 0.2777777778vw;
    order: 2;
  }
}
@media screen and (min-width: 1440px) {
  #service.geological-survey .introduction_wrap .inner .section.support .contents .item .image {
    border-radius: 4px;
  }
}
@media screen and (min-width: 960px) {
  #service.geological-survey .introduction_wrap .inner .section.support .contents .item .text_wrap {
    min-width: 400px;
    margin-right: 3.8888888889vw;
    order: 1;
  }
}
@media screen and (min-width: 1440px) {
  #service.geological-survey .introduction_wrap .inner .section.support .contents .item .text_wrap {
    margin-right: 56px;
  }
}
#service.geological-survey .introduction_wrap .inner .section.support .contents .item .text_wrap .item_title {
  margin-bottom: 4.5333333333vw;
  padding: 2.1333333333vw;
  font-size: 4.5333333333vw;
  line-height: 1;
  text-align: center;
  background: #fff;
  border: 1px solid #0036B6;
  border-radius: 0.8vw;
}
@media screen and (min-width: 960px) {
  #service.geological-survey .introduction_wrap .inner .section.support .contents .item .text_wrap .item_title {
    margin-bottom: 2.3611111111vw;
    padding: 0.8333333333vw 0;
    font-size: 2.0833333333vw;
    border-radius: 0.2777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.geological-survey .introduction_wrap .inner .section.support .contents .item .text_wrap .item_title {
    margin-bottom: 34px;
    padding: 12px 0;
    font-size: 30px;
    border-radius: 4px;
  }
}
#service.geological-survey .introduction_wrap .inner .section.support .contents .item .text_wrap ul li, #service.geological-survey .introduction_wrap .inner .section.support .contents .item .text_wrap ul .big {
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 960px) {
  #service.geological-survey .introduction_wrap .inner .section.support .contents .item .text_wrap ul li, #service.geological-survey .introduction_wrap .inner .section.support .contents .item .text_wrap ul .big {
    font-size: 1.6666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.geological-survey .introduction_wrap .inner .section.support .contents .item .text_wrap ul li, #service.geological-survey .introduction_wrap .inner .section.support .contents .item .text_wrap ul .big {
    font-size: 24px;
  }
}
#service.geological-survey .introduction_wrap .inner .section.support .contents .item .text_wrap ul li {
  display: flex;
  flex-direction: column;
  margin-bottom: 2.6666666667vw;
  padding-left: 1.4em;
}
@media screen and (min-width: 960px) {
  #service.geological-survey .introduction_wrap .inner .section.support .contents .item .text_wrap ul li {
    margin-bottom: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.geological-survey .introduction_wrap .inner .section.support .contents .item .text_wrap ul li {
    margin-bottom: 20px;
  }
}
#service.geological-survey .introduction_wrap .inner .section.support .contents .item .text_wrap ul li:last-child {
  margin-bottom: 0;
}
#service.geological-survey .introduction_wrap .inner .section.support .contents .item .text_wrap ul li span {
  display: inline-block;
}
#service.geological-survey .introduction_wrap .inner .section.support .contents .item .text_wrap ul li span.big {
  position: relative;
}
#service.geological-survey .introduction_wrap .inner .section.support .contents .item .text_wrap ul li span.big:before {
  content: "●";
  font-size: 2.9333333333vw;
  position: absolute;
  top: 50%;
  left: -1.4em;
  transform: translateY(-50%);
}
@media screen and (min-width: 960px) {
  #service.geological-survey .introduction_wrap .inner .section.support .contents .item .text_wrap ul li span.big:before {
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.geological-survey .introduction_wrap .inner .section.support .contents .item .text_wrap ul li span.big:before {
    font-size: 16px;
  }
}
#service.geological-survey .introduction_wrap .inner .section.support .contents .item .text_wrap ul li span.small {
  font-size: 2.6666666667vw;
}
@media screen and (min-width: 960px) {
  #service.geological-survey .introduction_wrap .inner .section.support .contents .item .text_wrap ul li span.small {
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.geological-survey .introduction_wrap .inner .section.support .contents .item .text_wrap ul li span.small {
    font-size: 16px;
  }
}
@media screen and (min-width: 960px) {
  #service.client-support .introduction_wrap .inner {
    width: 90.2777777778vw;
    max-width: 1300px;
    margin: 0 auto;
  }
}
#service.client-support .introduction_wrap .inner .section_title_wrap {
  margin-bottom: 10.6666666667vw;
  position: relative;
}
@media screen and (min-width: 960px) {
  #service.client-support .introduction_wrap .inner .section_title_wrap {
    width: 90.2777777778vw;
    max-width: 1300px;
    margin: 0 auto 5.4166666667vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.client-support .introduction_wrap .inner .section_title_wrap {
    margin-bottom: 78px;
  }
}
#service.client-support .introduction_wrap .inner .section_title_wrap:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #0036B6;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 0;
}
#service.client-support .introduction_wrap .inner .section_title_wrap .title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60vw;
  margin: 0 auto;
  background: #fff;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 960px) {
  #service.client-support .introduction_wrap .inner .section_title_wrap .title {
    width: 31.8055555556vw;
    max-width: 458px;
  }
}
#service.client-support .introduction_wrap .inner .section_title_wrap .title * {
  line-height: 1;
}
#service.client-support .introduction_wrap .inner .section_title_wrap .title .ja {
  margin-right: 2.6666666667vw;
  font-size: 4.8vw;
}
@media screen and (min-width: 960px) {
  #service.client-support .introduction_wrap .inner .section_title_wrap .title .ja {
    margin-right: 1.1111111111vw;
    font-size: 2.2222222222vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.client-support .introduction_wrap .inner .section_title_wrap .title .ja {
    margin-right: 16px;
    font-size: 32px;
  }
}
#service.client-support .introduction_wrap .inner .section_title_wrap .title .en {
  font-size: 4vw;
}
@media screen and (min-width: 960px) {
  #service.client-support .introduction_wrap .inner .section_title_wrap .title .en {
    font-size: 1.6666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.client-support .introduction_wrap .inner .section_title_wrap .title .en {
    font-size: 24px;
  }
}
#service.client-support .introduction_wrap .inner .contents {
  margin-bottom: 13.3333333333vw;
}
@media screen and (min-width: 960px) {
  #service.client-support .introduction_wrap .inner .contents {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 6.9444444444vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.client-support .introduction_wrap .inner .contents {
    margin-bottom: 100px;
  }
}
#service.client-support .introduction_wrap .inner .contents .item {
  margin-bottom: 13.3333333333vw;
}
@media screen and (min-width: 960px) {
  #service.client-support .introduction_wrap .inner .contents .item {
    width: 27.7777777778vw;
    max-width: 400px;
    margin-bottom: 0;
    margin-right: 2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.client-support .introduction_wrap .inner .contents .item {
    margin-right: 40px;
  }
}
@media screen and (min-width: 960px) {
  #service.client-support .introduction_wrap .inner .contents .item:nth-child(2) {
    width: 41.6666666667vw;
    max-width: 600px;
  }
}
#service.client-support .introduction_wrap .inner .contents .item:last-child {
  margin-bottom: 0;
  margin-right: 0;
}
#service.client-support .introduction_wrap .inner .contents .item .item_title {
  margin-bottom: 4.5333333333vw;
  padding: 2.1333333333vw;
  font-size: 4.5333333333vw;
  line-height: 1;
  text-align: center;
  background: #fff;
  border: 1px solid #0036B6;
  border-radius: 0.8vw;
}
@media screen and (min-width: 960px) {
  #service.client-support .introduction_wrap .inner .contents .item .item_title {
    margin-bottom: 2.3611111111vw;
    padding: 0.8333333333vw 0;
    font-size: 2.0833333333vw;
    border-radius: 0.2777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.client-support .introduction_wrap .inner .contents .item .item_title {
    margin-bottom: 34px;
    padding: 12px 0;
    font-size: 30px;
    border-radius: 4px;
  }
}
#service.client-support .introduction_wrap .inner .contents .item ul li, #service.client-support .introduction_wrap .inner .contents .item ul .big {
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 960px) {
  #service.client-support .introduction_wrap .inner .contents .item ul li, #service.client-support .introduction_wrap .inner .contents .item ul .big {
    font-size: 1.6666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.client-support .introduction_wrap .inner .contents .item ul li, #service.client-support .introduction_wrap .inner .contents .item ul .big {
    font-size: 24px;
  }
}
#service.client-support .introduction_wrap .inner .contents .item ul li {
  display: flex;
  flex-direction: column;
  margin-bottom: 2.6666666667vw;
  padding-left: 1.4em;
}
@media screen and (min-width: 960px) {
  #service.client-support .introduction_wrap .inner .contents .item ul li {
    margin-bottom: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.client-support .introduction_wrap .inner .contents .item ul li {
    margin-bottom: 20px;
  }
}
#service.client-support .introduction_wrap .inner .contents .item ul li:last-child {
  margin-bottom: 0;
}
#service.client-support .introduction_wrap .inner .contents .item ul li span {
  display: inline-block;
}
#service.client-support .introduction_wrap .inner .contents .item ul li span.big {
  position: relative;
}
#service.client-support .introduction_wrap .inner .contents .item ul li span.big:before {
  content: "●";
  font-size: 2.9333333333vw;
  position: absolute;
  top: 50%;
  left: -1.4em;
  transform: translateY(-50%);
}
@media screen and (min-width: 960px) {
  #service.client-support .introduction_wrap .inner .contents .item ul li span.big:before {
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.client-support .introduction_wrap .inner .contents .item ul li span.big:before {
    font-size: 16px;
  }
}
#service.client-support .introduction_wrap .inner .contents .item ul li span.small {
  font-size: 2.6666666667vw;
}
@media screen and (min-width: 960px) {
  #service.client-support .introduction_wrap .inner .contents .item ul li span.small {
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.client-support .introduction_wrap .inner .contents .item ul li span.small {
    font-size: 16px;
  }
}
#service.client-support .introduction_wrap .inner .contents .item .text {
  font-size: 3.7333333333vw;
  line-height: 1.5;
}
@media screen and (min-width: 960px) {
  #service.client-support .introduction_wrap .inner .contents .item .text {
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.client-support .introduction_wrap .inner .contents .item .text {
    font-size: 16px;
  }
}
#service.client-support .introduction_wrap .inner .bottom_image {
  border-radius: 0.8vw;
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  #service.client-support .introduction_wrap .inner .bottom_image {
    width: 38.6111111111vw;
    max-width: 556px;
    margin: 0 auto;
    border-radius: 0.2777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  #service.client-support .introduction_wrap .inner .bottom_image {
    border-radius: 4px;
  }
}

/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

  internal-initiatives

----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/
#internal-initiatives {
  /*================================
  service
  =================================*/
  /*||||||||||||||||||||||||||||||||||||||||||||||||||
  ----------------------------------------------------

  	sustainability

  ----------------------------------------------------
  ||||||||||||||||||||||||||||||||||||||||||||||||||||*/
  /*||||||||||||||||||||||||||||||||||||||||||||||||||
  ----------------------------------------------------

  	event

  ----------------------------------------------------
  ||||||||||||||||||||||||||||||||||||||||||||||||||||*/
  /*||||||||||||||||||||||||||||||||||||||||||||||||||
  ----------------------------------------------------

  	activities

  ----------------------------------------------------
  ||||||||||||||||||||||||||||||||||||||||||||||||||||*/
}
@media screen and (min-width: 960px) {
  #internal-initiatives .parent_wrap .contents .item__001, #internal-initiatives .parent_wrap .contents .item__002 {
    margin-right: 3.1944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  #internal-initiatives .parent_wrap .contents .item__001, #internal-initiatives .parent_wrap .contents .item__002 {
    margin-right: 46px;
  }
}
@media screen and (min-width: 960px) {
  #internal-initiatives .parent_wrap .contents .item {
    margin-bottom: 0;
  }
}
#internal-initiatives.sustainability {
  /*================================
  introduction
  =================================*/
  /*================================
  attempt
  =================================*/
}
#internal-initiatives.sustainability .introduction_wrap {
  margin-bottom: 16vw;
}
@media screen and (min-width: 960px) {
  #internal-initiatives.sustainability .introduction_wrap {
    margin-bottom: 6.9444444444vw;
  }
}
@media screen and (min-width: 1440px) {
  #internal-initiatives.sustainability .introduction_wrap {
    margin-bottom: 100px;
  }
}
#internal-initiatives.sustainability .introduction_wrap .inner {
  padding: 0 6vw;
}
@media screen and (min-width: 960px) {
  #internal-initiatives.sustainability .introduction_wrap .inner {
    width: 90.2777777778vw;
    max-width: 1300px;
    margin: 0 auto 13.8888888889vw;
    padding: 0;
  }
}
#internal-initiatives.sustainability .introduction_wrap .inner .contents .item {
  margin-bottom: 10.6666666667vw;
}
@media screen and (min-width: 960px) {
  #internal-initiatives.sustainability .introduction_wrap .inner .contents .item {
    margin-bottom: 4.1666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  #internal-initiatives.sustainability .introduction_wrap .inner .contents .item {
    margin-bottom: 60px;
  }
}
#internal-initiatives.sustainability .introduction_wrap .inner .contents .item:last-child {
  margin-bottom: 0;
}
#internal-initiatives.sustainability .introduction_wrap .inner .contents .item .item_title {
  margin-bottom: 5.3333333333vw;
  padding-bottom: 2.6666666667vw;
  border-bottom: 1px solid #0036B6;
  font-size: 5.0666666667vw;
}
@media screen and (min-width: 960px) {
  #internal-initiatives.sustainability .introduction_wrap .inner .contents .item .item_title {
    margin-bottom: 2.3611111111vw;
    padding-bottom: 0.6944444444vw;
    font-size: 1.9444444444vw;
  }
}
@media screen and (min-width: 1440px) {
  #internal-initiatives.sustainability .introduction_wrap .inner .contents .item .item_title {
    margin-bottom: 34px;
    padding-bottom: 10px;
    font-size: 28px;
  }
}
#internal-initiatives.sustainability .introduction_wrap .inner .contents .item .text, #internal-initiatives.sustainability .introduction_wrap .inner .contents .item ul li dl dd {
  font-weight: 400;
  line-height: 1.75;
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 960px) {
  #internal-initiatives.sustainability .introduction_wrap .inner .contents .item .text, #internal-initiatives.sustainability .introduction_wrap .inner .contents .item ul li dl dd {
    margin-right: 0;
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  #internal-initiatives.sustainability .introduction_wrap .inner .contents .item .text, #internal-initiatives.sustainability .introduction_wrap .inner .contents .item ul li dl dd {
    font-size: 16px;
  }
}
#internal-initiatives.sustainability .introduction_wrap .inner .contents .item ul li {
  margin-bottom: 8vw;
}
@media screen and (min-width: 960px) {
  #internal-initiatives.sustainability .introduction_wrap .inner .contents .item ul li {
    margin-bottom: 2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  #internal-initiatives.sustainability .introduction_wrap .inner .contents .item ul li {
    margin-bottom: 40px;
  }
}
#internal-initiatives.sustainability .introduction_wrap .inner .contents .item ul li:last-child {
  margin-bottom: 0;
}
#internal-initiatives.sustainability .introduction_wrap .inner .contents .item ul li dl dt {
  margin-bottom: 2.6666666667vw;
  font-size: 4.2666666667vw;
}
@media screen and (min-width: 960px) {
  #internal-initiatives.sustainability .introduction_wrap .inner .contents .item ul li dl dt {
    margin-bottom: 1.1111111111vw;
    font-size: 1.5277777778vw;
  }
}
@media screen and (min-width: 1440px) {
  #internal-initiatives.sustainability .introduction_wrap .inner .contents .item ul li dl dt {
    margin-bottom: 16px;
    font-size: 22px;
  }
}
#internal-initiatives.sustainability .introduction_wrap .inner .contents .item ul li dl dt:before {
  content: "●";
}
#internal-initiatives.sustainability .introduction_wrap .inner .contents .item:nth-child(1) {
  position: relative;
}
#internal-initiatives.sustainability .introduction_wrap .inner .contents .item:nth-child(1) .image_wrap {
  width: 100%;
  height: 69.4666666667vw;
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 960px) {
  #internal-initiatives.sustainability .introduction_wrap .inner .contents .item:nth-child(1) .image_wrap {
    width: 25vw;
    max-width: 360px;
    height: 19.7916666667vw;
    max-height: 285px;
    margin-bottom: 0;
    position: absolute;
    top: 15.9722222222vw;
    right: 0;
  }
}
@media screen and (min-width: 1440px) {
  #internal-initiatives.sustainability .introduction_wrap .inner .contents .item:nth-child(1) .image_wrap {
    top: 230px;
  }
}
#internal-initiatives.sustainability .introduction_wrap .inner .contents .item:nth-child(1) .image_wrap .image {
  clip-path: url(#sustainability_path);
}
#internal-initiatives.sustainability .introduction_wrap .inner .contents .item:nth-child(1) .image_wrap .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#internal-initiatives.sustainability .attempt_wrap {
  margin-bottom: 26.6666666667vw;
}
@media screen and (min-width: 960px) {
  #internal-initiatives.sustainability .attempt_wrap {
    margin-bottom: 12.5vw;
  }
}
@media screen and (min-width: 1440px) {
  #internal-initiatives.sustainability .attempt_wrap {
    margin-bottom: 180px;
  }
}
#internal-initiatives.sustainability .attempt_wrap .inner {
  padding: 0 6vw;
}
@media screen and (min-width: 960px) {
  #internal-initiatives.sustainability .attempt_wrap .inner {
    width: 90.2777777778vw;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0;
  }
}
#internal-initiatives.sustainability .attempt_wrap .inner .contents_title {
  margin-bottom: 8vw;
  padding: 3.2vw 0;
  text-align: center;
  background: linear-gradient(45deg, #0037B0 0%, #2861DC 51.5%, #00A6DB 100%);
}
@media screen and (min-width: 960px) {
  #internal-initiatives.sustainability .attempt_wrap .inner .contents_title {
    margin-bottom: 3.3333333333vw;
    padding: 1.25vw 0;
  }
}
@media screen and (min-width: 1440px) {
  #internal-initiatives.sustainability .attempt_wrap .inner .contents_title {
    margin-bottom: 48px;
    padding: 18px 0;
  }
}
#internal-initiatives.sustainability .attempt_wrap .inner .contents_title span {
  font-size: 5.0666666667vw;
  line-height: 1;
  color: #fff;
}
@media screen and (min-width: 960px) {
  #internal-initiatives.sustainability .attempt_wrap .inner .contents_title span {
    font-size: 2.2222222222vw;
  }
}
@media screen and (min-width: 1440px) {
  #internal-initiatives.sustainability .attempt_wrap .inner .contents_title span {
    font-size: 32px;
  }
}
#internal-initiatives.sustainability .attempt_wrap .inner .top_text {
  margin-bottom: 10.6666666667vw;
  font-size: 4.2666666667vw;
  font-weight: 500;
  line-height: 1.75;
  text-align: center;
}
@media screen and (min-width: 960px) {
  #internal-initiatives.sustainability .attempt_wrap .inner .top_text {
    margin-bottom: 4.1666666667vw;
    font-size: 1.6666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  #internal-initiatives.sustainability .attempt_wrap .inner .top_text {
    margin-bottom: 60px;
    font-size: 24px;
  }
}
#internal-initiatives.sustainability .attempt_wrap .inner .contents {
  margin-bottom: 16vw;
}
@media screen and (min-width: 960px) {
  #internal-initiatives.sustainability .attempt_wrap .inner .contents {
    margin-bottom: 8.3333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  #internal-initiatives.sustainability .attempt_wrap .inner .contents {
    margin-bottom: 120px;
  }
}
#internal-initiatives.sustainability .attempt_wrap .inner .contents .image {
  margin-bottom: 8vw;
}
@media screen and (min-width: 960px) {
  #internal-initiatives.sustainability .attempt_wrap .inner .contents .image {
    width: 27.7777777778vw;
    margin: 0 auto 2.0833333333vw;
  }
}
@media screen and (min-width: 1440px) {
  #internal-initiatives.sustainability .attempt_wrap .inner .contents .image {
    margin-bottom: 30px;
  }
}
#internal-initiatives.sustainability .attempt_wrap .inner .contents .image a {
  border: 1px solid #0036B6;
}
@media screen and (min-width: 960px) {
  #internal-initiatives.sustainability .attempt_wrap .inner .contents .image a:hover {
    opacity: 0.6;
  }
}
#internal-initiatives.sustainability .attempt_wrap .inner .contents .link_btn {
  margin: 0 auto;
}
#internal-initiatives.sustainability .attempt_wrap .inner .bottom_logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
#internal-initiatives.sustainability .attempt_wrap .inner .bottom_logo .logo:nth-child(1) {
  margin-right: 5.3333333333vw;
}
@media screen and (min-width: 960px) {
  #internal-initiatives.sustainability .attempt_wrap .inner .bottom_logo .logo:nth-child(1) {
    width: 16.1111111111vw;
    max-width: 232px;
    margin-right: 5.5555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  #internal-initiatives.sustainability .attempt_wrap .inner .bottom_logo .logo:nth-child(1) {
    margin-right: 80px;
  }
}
@media screen and (min-width: 960px) {
  #internal-initiatives.sustainability .attempt_wrap .inner .bottom_logo .logo:nth-child(2) {
    width: 12.9861111111vw;
    max-width: 187px;
  }
}
#internal-initiatives.sustainability .attempt_wrap .inner .bottom_logo .logo a {
  width: 100%;
}
@media screen and (min-width: 960px) {
  #internal-initiatives.sustainability .attempt_wrap .inner .bottom_logo .logo a:hover {
    opacity: 0.6;
  }
}
#internal-initiatives.event {
  /*================================
  introduction
  =================================*/
}
#internal-initiatives.event .introduction_wrap {
  margin-bottom: 26.6666666667vw;
}
@media screen and (min-width: 960px) {
  #internal-initiatives.event .introduction_wrap {
    margin-bottom: 12.5vw;
  }
}
@media screen and (min-width: 1440px) {
  #internal-initiatives.event .introduction_wrap {
    margin-bottom: 180px;
  }
}
#internal-initiatives.event .introduction_wrap .inner {
  padding: 0 6vw;
}
@media screen and (min-width: 960px) {
  #internal-initiatives.event .introduction_wrap .inner {
    width: 90.2777777778vw;
    max-width: 1300px;
    margin: 0 auto 13.8888888889vw;
    padding: 0;
  }
}
@media screen and (min-width: 1440px) {
  #internal-initiatives.event .introduction_wrap .inner {
    margin-bottom: 200px;
  }
}
#internal-initiatives.event .introduction_wrap .inner .contents .item {
  margin-bottom: 16vw;
  position: relative;
}
@media screen and (min-width: 960px) {
  #internal-initiatives.event .introduction_wrap .inner .contents .item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2.5vw;
  }
}
@media screen and (min-width: 1440px) {
  #internal-initiatives.event .introduction_wrap .inner .contents .item {
    margin-bottom: 36px;
  }
}
#internal-initiatives.event .introduction_wrap .inner .contents .item:last-child {
  margin-bottom: 0;
}
#internal-initiatives.event .introduction_wrap .inner .contents .item .image_wrap {
  width: 100%;
  height: 69.4666666667vw;
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 960px) {
  #internal-initiatives.event .introduction_wrap .inner .contents .item .image_wrap {
    width: 25vw;
    max-width: 360px;
    height: 19.7916666667vw;
    max-height: 285px;
    margin-bottom: 0;
    margin-left: auto;
    position: relative;
    z-index: 1;
  }
}
#internal-initiatives.event .introduction_wrap .inner .contents .item .image_wrap .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 960px) {
  #internal-initiatives.event .introduction_wrap .inner .contents .item .text_wrap {
    width: 67.7777777778vw;
    max-width: 976px;
    position: absolute;
    top: 2.0833333333vw;
    left: 0;
    z-index: 0;
  }
}
@media screen and (min-width: 1440px) {
  #internal-initiatives.event .introduction_wrap .inner .contents .item .text_wrap {
    top: 30px;
  }
}
#internal-initiatives.event .introduction_wrap .inner .contents .item .text_wrap .item_title {
  margin-bottom: 5.3333333333vw;
  padding-bottom: 2.6666666667vw;
  border-bottom: 1px solid #0036B6;
  font-size: 5.0666666667vw;
}
@media screen and (min-width: 960px) {
  #internal-initiatives.event .introduction_wrap .inner .contents .item .text_wrap .item_title {
    margin-bottom: 2.3611111111vw;
    padding-bottom: 0.6944444444vw;
    font-size: 1.9444444444vw;
  }
}
@media screen and (min-width: 1440px) {
  #internal-initiatives.event .introduction_wrap .inner .contents .item .text_wrap .item_title {
    margin-bottom: 34px;
    padding-bottom: 10px;
    font-size: 28px;
  }
}
#internal-initiatives.event .introduction_wrap .inner .contents .item .text_wrap .text {
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 960px) {
  #internal-initiatives.event .introduction_wrap .inner .contents .item .text_wrap .text {
    width: 60vw;
    max-width: 864px;
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  #internal-initiatives.event .introduction_wrap .inner .contents .item .text_wrap .text {
    font-size: 16px;
  }
}
#internal-initiatives.event .introduction_wrap .inner .contents .item:nth-child(1) .image_wrap .image {
  clip-path: url(#event_path001);
}
@media screen and (min-width: 960px) {
  #internal-initiatives.event .introduction_wrap .inner .contents .item:nth-child(1) .text_wrap .text {
    line-height: 1.75;
  }
}
#internal-initiatives.event .introduction_wrap .inner .contents .item:nth-child(2) .image_wrap .image {
  clip-path: url(#event_path002);
}
#internal-initiatives.event .introduction_wrap .inner .contents .item:nth-child(3) .image_wrap .image {
  clip-path: url(#event_path003);
}
#internal-initiatives.event .introduction_wrap .inner .contents .item:nth-child(4) .image_wrap .image {
  clip-path: url(#event_path004);
}
#internal-initiatives.event .introduction_wrap .inner .contents .item:nth-child(5) .image_wrap .image {
  clip-path: url(#event_path005);
}
#internal-initiatives.activities {
  /*================================
  introduction
  =================================*/
  /*================================
  thesis
  =================================*/
}
#internal-initiatives.activities .introduction_wrap {
  margin-bottom: 13.3333333333vw;
}
@media screen and (min-width: 960px) {
  #internal-initiatives.activities .introduction_wrap {
    margin-bottom: 5.9722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  #internal-initiatives.activities .introduction_wrap {
    margin-bottom: 86px;
  }
}
#internal-initiatives.activities .introduction_wrap .inner {
  padding: 0 6vw;
}
@media screen and (min-width: 960px) {
  #internal-initiatives.activities .introduction_wrap .inner {
    width: 90.2777777778vw;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0;
  }
}
#internal-initiatives.activities .introduction_wrap .inner .top_text {
  margin-bottom: 13.3333333333vw;
  font-size: 5.0666666667vw;
  line-height: 1.75;
  text-align: center;
}
@media screen and (min-width: 960px) {
  #internal-initiatives.activities .introduction_wrap .inner .top_text {
    margin-bottom: 4.8611111111vw;
    font-size: 1.6666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  #internal-initiatives.activities .introduction_wrap .inner .top_text {
    margin-bottom: 70px;
    font-size: 24px;
  }
}
#internal-initiatives.activities .introduction_wrap .inner .contents .item {
  margin-bottom: 16vw;
  position: relative;
}
@media screen and (min-width: 960px) {
  #internal-initiatives.activities .introduction_wrap .inner .contents .item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2.5vw;
  }
}
@media screen and (min-width: 1440px) {
  #internal-initiatives.activities .introduction_wrap .inner .contents .item {
    margin-bottom: 36px;
  }
}
#internal-initiatives.activities .introduction_wrap .inner .contents .item:last-child {
  margin-bottom: 0;
}
#internal-initiatives.activities .introduction_wrap .inner .contents .item .image_wrap {
  width: 100%;
  height: 69.4666666667vw;
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 960px) {
  #internal-initiatives.activities .introduction_wrap .inner .contents .item .image_wrap {
    width: 25vw;
    max-width: 360px;
    height: 19.7916666667vw;
    max-height: 285px;
    margin-bottom: 0;
    margin-left: auto;
    position: relative;
    z-index: 1;
  }
}
#internal-initiatives.activities .introduction_wrap .inner .contents .item .image_wrap .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 960px) {
  #internal-initiatives.activities .introduction_wrap .inner .contents .item .text_wrap {
    width: 67.7777777778vw;
    max-width: 976px;
    position: absolute;
    top: 2.0833333333vw;
    left: 0;
    z-index: 0;
  }
}
@media screen and (min-width: 1440px) {
  #internal-initiatives.activities .introduction_wrap .inner .contents .item .text_wrap {
    top: 30px;
  }
}
#internal-initiatives.activities .introduction_wrap .inner .contents .item .text_wrap .item_title {
  margin-bottom: 5.3333333333vw;
  padding-bottom: 2.6666666667vw;
  border-bottom: 1px solid #0036B6;
  font-size: 5.0666666667vw;
}
@media screen and (min-width: 960px) {
  #internal-initiatives.activities .introduction_wrap .inner .contents .item .text_wrap .item_title {
    margin-bottom: 2.3611111111vw;
    padding-bottom: 0.6944444444vw;
    font-size: 1.9444444444vw;
  }
}
@media screen and (min-width: 1440px) {
  #internal-initiatives.activities .introduction_wrap .inner .contents .item .text_wrap .item_title {
    margin-bottom: 34px;
    padding-bottom: 10px;
    font-size: 28px;
  }
}
#internal-initiatives.activities .introduction_wrap .inner .contents .item .text_wrap .text {
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 960px) {
  #internal-initiatives.activities .introduction_wrap .inner .contents .item .text_wrap .text {
    width: 60vw;
    max-width: 864px;
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  #internal-initiatives.activities .introduction_wrap .inner .contents .item .text_wrap .text {
    font-size: 16px;
  }
}
#internal-initiatives.activities .introduction_wrap .inner .contents .item:nth-child(1) .image_wrap .image {
  clip-path: url(#activities_path001);
}
@media screen and (min-width: 960px) {
  #internal-initiatives.activities .introduction_wrap .inner .contents .item:nth-child(1) .text_wrap .text {
    line-height: 1.75;
  }
}
#internal-initiatives.activities .introduction_wrap .inner .contents .item:nth-child(2) .image_wrap .image {
  clip-path: url(#activities_path002);
}
#internal-initiatives.activities .thesis_wrap {
  margin-bottom: 33.3333333333vw;
}
@media screen and (min-width: 960px) {
  #internal-initiatives.activities .thesis_wrap {
    margin-bottom: 20.8333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  #internal-initiatives.activities .thesis_wrap {
    margin-bottom: 300px;
  }
}
#internal-initiatives.activities .thesis_wrap .inner {
  padding: 0 6vw;
}
@media screen and (min-width: 960px) {
  #internal-initiatives.activities .thesis_wrap .inner {
    width: 90.2777777778vw;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0;
  }
}
#internal-initiatives.activities .thesis_wrap .inner .scroll_area {
  width: 100%;
  height: 146.6666666667vw;
}
@media screen and (min-width: 960px) {
  #internal-initiatives.activities .thesis_wrap .inner .scroll_area {
    height: 55.5555555556vw;
    max-height: 800px;
  }
}
#internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-track:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
}
@media screen and (min-width: 960px) {
  #internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-track:before {
    border-radius: 0 0.2777777778vw 0.2777777778vw 0;
  }
}
@media screen and (min-width: 1440px) {
  #internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-track:before {
    border-radius: 0 4px 4px 0;
  }
}
#internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-track .simplebar-scrollbar:before {
  border: 1px solid #fff;
  border-radius: 2.6666666667vw;
  top: 0;
  left: 0;
  opacity: 1;
}
@media screen and (min-width: 960px) {
  #internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-track .simplebar-scrollbar:before {
    border-radius: 2.0833333333vw;
  }
}
@media screen and (min-width: 1440px) {
  #internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-track .simplebar-scrollbar:before {
    border-radius: 30px;
  }
}
#internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-track.simplebar-vertical {
  width: 4vw;
  height: calc(100% - 4vw);
}
@media screen and (min-width: 960px) {
  #internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-track.simplebar-vertical {
    width: 2.0833333333vw;
    max-width: 30px;
    height: 100%;
  }
}
#internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-track.simplebar-vertical:before {
  width: 100%;
  height: calc(100% - 2px);
  background: linear-gradient(0deg, #0037B0 0%, #2861DC 51.5%, #00A6DB 100%);
  border-top: 1px solid #0036B6;
  border-bottom: 1px solid #0036B6;
  border-right: 1px solid #0036B6;
  border-radius: 0 0.8vw 0.8vw 0;
}
@media screen and (min-width: 960px) {
  #internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-track.simplebar-vertical:before {
    border-radius: 0 0.2777777778vw 0.2777777778vw 0;
  }
}
@media screen and (min-width: 1440px) {
  #internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-track.simplebar-vertical:before {
    border-radius: 0 4px 4px 0;
  }
}
#internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-track.simplebar-vertical .simplebar-scrollbar {
  width: calc(100% - 2px);
}
#internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
  width: 100%;
  background: linear-gradient(0deg, #34A8E9 0%, #72BBD7 51.5%, #B0DAF2 100%);
}
#internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-track.simplebar-horizontal {
  width: calc(100% - 4vw);
  height: 4vw;
}
@media screen and (min-width: 960px) {
  #internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-track.simplebar-horizontal {
    width: 100%;
    height: 2.0833333333vw;
    max-height: 30px;
  }
}
#internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-track.simplebar-horizontal:before {
  width: calc(100% - 2px);
  height: 100%;
  background: linear-gradient(-45deg, #0037B0 0%, #2861DC 51.5%, #00A6DB 100%);
  border-bottom: 1px solid #0036B6;
  border-right: 1px solid #0036B6;
  border-left: 1px solid #0036B6;
  border-radius: 0 0 0.8vw 0.8vw;
}
@media screen and (min-width: 960px) {
  #internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-track.simplebar-horizontal:before {
    border-radius: 0 0 0.2777777778vw 0.2777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  #internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-track.simplebar-horizontal:before {
    border-radius: 0 0 4px 4px;
  }
}
#internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  height: calc(100% - 2px);
}
#internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-track.simplebar-horizontal .simplebar-scrollbar:before {
  height: 100%;
  background: linear-gradient(-45deg, #34A8E9 0%, #72BBD7 51.5%, #B0DAF2 100%);
}
#internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper {
  margin-right: 2.6666666667vw;
  border-top: 1px solid #0036B6;
  border-left: 1px solid #0036B6;
  border-radius: 0.8vw 0 0 0.8vw;
}
@media screen and (min-width: 960px) {
  #internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper {
    margin-right: 2.0833333333vw;
    border-bottom: 1px solid #0036B6;
    border-radius: 0.2777777778vw 0 0 0.2777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  #internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper {
    margin-right: 30px;
    border-radius: 4px 0 0 4px;
  }
}
#internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper .contents {
  width: 266.6666666667vw;
  padding: 5.3333333333vw;
}
@media screen and (min-width: 960px) {
  #internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper .contents {
    width: 100%;
    padding: 4.1666666667vw 2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  #internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper .contents {
    padding: 60px 40px;
  }
}
#internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper .contents .thesis_title {
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 960px) {
  #internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper .contents .thesis_title {
    margin-bottom: 2.7777777778vw;
    text-align: center;
  }
}
@media screen and (min-width: 1440px) {
  #internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper .contents .thesis_title {
    margin-bottom: 40px;
  }
}
#internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper .contents .thesis_title span {
  display: inline-block;
  padding-left: 1em;
  font-size: 4.8vw;
  position: relative;
}
@media screen and (min-width: 960px) {
  #internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper .contents .thesis_title span {
    font-size: 1.5277777778vw;
  }
}
@media screen and (min-width: 1440px) {
  #internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper .contents .thesis_title span {
    font-size: 22px;
  }
}
#internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper .contents .thesis_title span:before {
  content: "●";
  font-size: 2.9333333333vw;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 960px) {
  #internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper .contents .thesis_title span:before {
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  #internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper .contents .thesis_title span:before {
    font-size: 16px;
  }
}
#internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper .contents table {
  width: 100%;
}
#internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper .contents table th, #internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper .contents table td {
  vertical-align: middle;
  position: relative;
}
#internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper .contents table th:before, #internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper .contents table td:before {
  content: "";
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, #D1D1D1 50%, transparent 50%) repeat-y center center;
  background-size: 0.5333333333vw 1.0666666667vw;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (min-width: 960px) {
  #internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper .contents table th:before, #internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper .contents table td:before {
    background-size: 0.5333333333vw 1.0666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  #internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper .contents table th:before, #internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper .contents table td:before {
    background-size: 4px 8px;
  }
}
#internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper .contents table th:last-child:before, #internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper .contents table td:last-child:before {
  content: none;
}
#internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper .contents table th:nth-child(1), #internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper .contents table td:nth-child(1) {
  width: 3.2%;
}
#internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper .contents table th:nth-child(2), #internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper .contents table td:nth-child(2) {
  width: 22.29%;
}
#internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper .contents table th:nth-child(3), #internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper .contents table td:nth-child(3) {
  width: 17.25%;
}
#internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper .contents table th:nth-child(4), #internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper .contents table td:nth-child(4) {
  width: 21.19%;
}
#internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper .contents table th:nth-child(5), #internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper .contents table td:nth-child(5) {
  width: 12.2%;
}
#internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper .contents table th:nth-child(6), #internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper .contents table td:nth-child(6) {
  width: 12.95%;
}
#internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper .contents table th:nth-child(7), #internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper .contents table td:nth-child(7) {
  width: 10.94%;
}
#internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper .contents table thead {
  background: linear-gradient(45deg, #0037B0 0%, #2861DC 51.5%, #00A6DB 100%);
}
#internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper .contents table thead tr th {
  padding: 2.6666666667vw 0;
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 960px) {
  #internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper .contents table thead tr th {
    padding: 0.6944444444vw 0;
  }
}
@media screen and (min-width: 1440px) {
  #internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper .contents table thead tr th {
    padding: 10px 0;
  }
}
#internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper .contents table tbody tr:nth-child(2n) td {
  background: #F8F8F8;
}
#internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper .contents table tbody tr td, #internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper .contents table tbody tr td .inText {
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 960px) {
  #internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper .contents table tbody tr td, #internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper .contents table tbody tr td .inText {
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  #internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper .contents table tbody tr td, #internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper .contents table tbody tr td .inText {
    font-size: 16px;
  }
}
#internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper .contents table tbody tr td {
  padding-top: 2.6666666667vw;
  padding-bottom: 2.6666666667vw;
  text-align: center;
}
@media screen and (min-width: 960px) {
  #internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper .contents table tbody tr td {
    padding-top: 1.6666666667vw;
    padding-bottom: 1.6666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  #internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper .contents table tbody tr td {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
#internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper .contents table tbody tr td:nth-child(3) {
  padding-left: 2.6666666667vw;
  padding-right: 2.6666666667vw;
}
@media screen and (min-width: 960px) {
  #internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper .contents table tbody tr td:nth-child(3) {
    padding-left: 0.6944444444vw;
    padding-right: 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  #internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper .contents table tbody tr td:nth-child(3) {
    padding-left: 10px;
    padding-right: 10px;
  }
}
#internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper .contents table tbody tr td:nth-child(5) {
  padding-left: 4.8vw;
  padding-right: 4.8vw;
}
@media screen and (min-width: 960px) {
  #internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper .contents table tbody tr td:nth-child(5) {
    padding-left: 1.9444444444vw;
    padding-right: 1.9444444444vw;
  }
}
@media screen and (min-width: 1440px) {
  #internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper .contents table tbody tr td:nth-child(5) {
    padding-left: 28px;
    padding-right: 28px;
  }
}
#internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper .contents table tbody tr td .small {
  font-size: 3.2vw;
}
@media screen and (min-width: 960px) {
  #internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper .contents table tbody tr td .small {
    font-size: 0.9722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  #internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper .contents table tbody tr td .small {
    font-size: 14px;
  }
}
#internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper .contents table tbody tr td .no_line {
  display: block;
  text-align: center;
}
#internal-initiatives.activities .thesis_wrap .inner .scroll_area .simplebar-content-wrapper .contents table tbody tr td .inText {
  display: inline-block;
  text-align: left;
}

/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

		back number

----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/
#back-number {
  /*================================
  catalog
  =================================*/
}
#back-number .catalog_wrap {
  margin-bottom: 20vw;
}
@media screen and (min-width: 960px) {
  #back-number .catalog_wrap {
    margin-bottom: 8.3333333333vw;
  }
}
@media screen and (min-width: 960px) {
  #back-number .catalog_wrap {
    margin-bottom: 120px;
  }
}
#back-number .catalog_wrap .inner {
  padding: 0 6vw;
}
@media screen and (min-width: 960px) {
  #back-number .catalog_wrap .inner {
    width: 90.2777777778vw;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0;
  }
}
#back-number .catalog_wrap .inner .contents {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (min-width: 960px) {
  #back-number .catalog_wrap .inner .contents:before, #back-number .catalog_wrap .inner .contents:after {
    content: "";
    width: 20.5%;
  }
}
@media screen and (min-width: 960px) {
  #back-number .catalog_wrap .inner .contents:before {
    order: 1;
  }
}
#back-number .catalog_wrap .inner .contents .item {
  width: 48%;
  margin-bottom: 13.3333333333vw;
}
@media screen and (min-width: 960px) {
  #back-number .catalog_wrap .inner .contents .item {
    width: 20.5%;
    margin-bottom: 5.9027777778vw;
  }
}
@media screen and (min-width: 960px) {
  #back-number .catalog_wrap .inner .contents .item {
    margin-bottom: 85px;
  }
}
#back-number .catalog_wrap .inner .contents .item a {
  width: 100%;
}
#back-number .catalog_wrap .inner .contents .item .image {
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 960px) {
  #back-number .catalog_wrap .inner .contents .item .image {
    margin-bottom: 1.3888888889vw;
  }
}
@media screen and (min-width: 960px) {
  #back-number .catalog_wrap .inner .contents .item .image {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 960px) {
  #back-number .catalog_wrap .inner .contents .item .image a:hover {
    opacity: 0.6;
  }
}
#back-number .catalog_wrap .inner .contents .item .read_btn {
  width: 100%;
  margin: 0 auto 2.6666666667vw;
  text-align: center;
}
@media screen and (min-width: 960px) {
  #back-number .catalog_wrap .inner .contents .item .read_btn {
    width: 9.7916666667vw;
    max-width: 141px;
    margin-bottom: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  #back-number .catalog_wrap .inner .contents .item .read_btn {
    margin-bottom: 16px;
  }
}
#back-number .catalog_wrap .inner .contents .item .read_btn a {
  display: block;
  width: 100%;
  padding: 2.4vw 0;
  line-height: 1;
  color: #0036B6;
  background: #fff;
  border: 1px solid #0036B6;
  border-radius: 0.5333333333vw;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  #back-number .catalog_wrap .inner .contents .item .read_btn a {
    padding: 0.5555555556vw 0;
    border-radius: 0.2777777778vw;
    transition: all 0.3s;
  }
}
@media screen and (min-width: 1440px) {
  #back-number .catalog_wrap .inner .contents .item .read_btn a {
    padding: 8px 0;
    border-radius: 4px;
  }
}
@media screen and (min-width: 960px) {
  #back-number .catalog_wrap .inner .contents .item .read_btn a:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #0036B6;
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: right top;
    transform: scale(0, 1);
    transition: transform 0.3s;
  }
}
#back-number .catalog_wrap .inner .contents .item .read_btn a span {
  display: block;
  font-size: 4.2666666667vw;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 960px) {
  #back-number .catalog_wrap .inner .contents .item .read_btn a span {
    font-size: 1.1111111111vw;
    transition: all 0.3s;
  }
}
@media screen and (min-width: 1440px) {
  #back-number .catalog_wrap .inner .contents .item .read_btn a span {
    font-size: 16px;
  }
}
@media screen and (min-width: 960px) {
  #back-number .catalog_wrap .inner .contents .item .read_btn a:hover {
    background: #0036B6;
  }
  #back-number .catalog_wrap .inner .contents .item .read_btn a:hover:before {
    transform-origin: left top;
    transform: scale(1, 1);
  }
  #back-number .catalog_wrap .inner .contents .item .read_btn a:hover span {
    color: #fff;
  }
}
#back-number .catalog_wrap .inner .contents .item .vol {
  font-size: 3.7333333333vw;
  text-align: center;
}
@media screen and (min-width: 960px) {
  #back-number .catalog_wrap .inner .contents .item .vol {
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  #back-number .catalog_wrap .inner .contents .item .vol {
    font-size: 16px;
  }
}/*# sourceMappingURL=style.css.map */