@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
button,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 1em;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

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

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

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

a {
  text-decoration: none;
  color: inherit;
}

img {
  height: auto;
  display: block;
  max-width: 100%;
}

svg {
  max-width: 100%;
  height: unset;
}

.page_animation::before {
  content: "";
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #F7FCFF;
  z-index: 999;
  pointer-events: none;
  left: 0%;
  will-change: left;
  -webkit-transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.page_animation.moved::before {
  left: 100%;
}

.page_animation::after {
  content: "";
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #F7FCFF;
  z-index: 999;
  pointer-events: none;
  right: 100%;
  will-change: right;
  -webkit-transition: right 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition: right 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.page_animation.moveing::after {
  right: 0;
}

.page_animation.first_view::before {
  display: none;
}

.fx_box {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.fx_box img {
  position: relative;
  width: 100%;
  left: -100%;
  z-index: 10;
  will-change: left;
}

.fx_box::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1;
  position: absolute;
  top: 50%;
  left: -50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #F7FCFF;
  will-change: left;
  -webkit-transition: left 1s ease-in-out;
  transition: left 1s ease-in-out;
}

.fx_box.trigger::after {
  left: 50%;
}

.fx_box.trigger img {
  left: 0;
  -webkit-transition: all 1.25s 0.5s ease-in-out;
  transition: all 1.25s 0.5s ease-in-out;
}

.fx_box.fx_gold::after {
  background-color: #0092D8;
}

.fx_box.fx_rev img {
  left: 100%;
}

.fx_box.fx_rev::after {
  left: 150%;
}

.fx_box.fx_rev.trigger::after {
  left: 50%;
}

.fx_box.fx_rev.trigger img {
  left: 0;
  -webkit-transition: all 0.75s 0.5s;
  transition: all 0.75s 0.5s;
}

.fadeIn {
  opacity: 0;
}

.fadeIn.trigger {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fadeUp {
  opacity: 0;
  will-change: transform, opacity;
}

.fadeUp.trigger {
  -webkit-animation-name: fadeUp;
          animation-name: fadeUp;
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
}

.fadeUpList > * {
  opacity: 0;
  will-change: transform, opacity;
}

.fadeUpList.trigger > * {
  -webkit-animation-name: fadeUp;
          animation-name: fadeUp;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
}

@-webkit-keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(25%);
            transform: translateY(25%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(25%);
            transform: translateY(25%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

.slideLeft {
  will-change: transform, opacity;
  -webkit-transform: translateX(-200%);
          transform: translateX(-200%);
  opacity: 0;
}

.slideLeft.trigger {
  -webkit-animation-name: slideLeft;
          animation-name: slideLeft;
  -webkit-animation-duration: 1.75s;
          animation-duration: 1.75s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
}

@-webkit-keyframes slideLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
  25% {
    opacity: 0;
  }
  75% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
  25% {
    opacity: 0;
  }
  75% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.slideRight {
  will-change: transform, opacity;
  -webkit-transform: translateX(200%);
          transform: translateX(200%);
  opacity: 0;
}

.slideRight.trigger {
  -webkit-animation-name: slideRight;
          animation-name: slideRight;
  -webkit-animation-duration: 1.75s;
          animation-duration: 1.75s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
}

@-webkit-keyframes slideRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(200%);
            transform: translateX(200%);
  }
  25% {
    opacity: 0;
  }
  75% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(200%);
            transform: translateX(200%);
  }
  25% {
    opacity: 0;
  }
  75% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

#index_intro_svg {
  opacity: 0;
}

#index_intro_svg.trigger {
  opacity: 1;
}

@-webkit-keyframes index_intro_stroke_1 {
  0% {
    stroke-dashoffset: 214.4803924560547px;
    stroke-dasharray: 214.4803924560547px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 214.4803924560547px;
  }
}

@keyframes index_intro_stroke_1 {
  0% {
    stroke-dashoffset: 214.4803924560547px;
    stroke-dasharray: 214.4803924560547px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 214.4803924560547px;
  }
}

@-webkit-keyframes index_intro_fill_1 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #96999c;
  }
}

@keyframes index_intro_fill_1 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #96999c;
  }
}

#index_intro_svg.trigger .index_intro_1 {
  will-change: stroke-dashoffset, stroke-dasharray, fill;
  -webkit-animation: index_intro_stroke_1 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s both, index_intro_fill_1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s both;
          animation: index_intro_stroke_1 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s both, index_intro_fill_1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s both;
}

@-webkit-keyframes index_intro_stroke_2 {
  0% {
    stroke-dashoffset: 198.1442108154297px;
    stroke-dasharray: 198.1442108154297px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 198.1442108154297px;
  }
}

@keyframes index_intro_stroke_2 {
  0% {
    stroke-dashoffset: 198.1442108154297px;
    stroke-dasharray: 198.1442108154297px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 198.1442108154297px;
  }
}

@-webkit-keyframes index_intro_fill_2 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #96999c;
  }
}

@keyframes index_intro_fill_2 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #96999c;
  }
}

#index_intro_svg.trigger .index_intro_2 {
  will-change: stroke-dashoffset, stroke-dasharray, fill;
  -webkit-animation: index_intro_stroke_2 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s both, index_intro_fill_2 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s both;
          animation: index_intro_stroke_2 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s both, index_intro_fill_2 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s both;
}

@-webkit-keyframes index_intro_stroke_3 {
  0% {
    stroke-dashoffset: 75.58599853515625px;
    stroke-dasharray: 75.58599853515625px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 75.58599853515625px;
  }
}

@keyframes index_intro_stroke_3 {
  0% {
    stroke-dashoffset: 75.58599853515625px;
    stroke-dasharray: 75.58599853515625px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 75.58599853515625px;
  }
}

@-webkit-keyframes index_intro_fill_3 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #96999c;
  }
}

@keyframes index_intro_fill_3 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #96999c;
  }
}

#index_intro_svg.trigger .index_intro_3 {
  will-change: stroke-dashoffset, stroke-dasharray, fill;
  -webkit-animation: index_intro_stroke_3 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s both, index_intro_fill_3 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both;
          animation: index_intro_stroke_3 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s both, index_intro_fill_3 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both;
}

@-webkit-keyframes index_intro_stroke_4 {
  0% {
    stroke-dashoffset: 326.36541748046875px;
    stroke-dasharray: 326.36541748046875px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 326.36541748046875px;
  }
}

@keyframes index_intro_stroke_4 {
  0% {
    stroke-dashoffset: 326.36541748046875px;
    stroke-dasharray: 326.36541748046875px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 326.36541748046875px;
  }
}

@-webkit-keyframes index_intro_fill_4 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #0092D8;
  }
}

@keyframes index_intro_fill_4 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #0092D8;
  }
}

#index_intro_svg.trigger .index_intro_4 {
  will-change: stroke-dashoffset, stroke-dasharray, fill;
  -webkit-animation: index_intro_stroke_4 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.36s both, index_intro_fill_4 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s both;
          animation: index_intro_stroke_4 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.36s both, index_intro_fill_4 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s both;
}

@-webkit-keyframes index_intro_stroke_5 {
  0% {
    stroke-dashoffset: 185.70069885253906px;
    stroke-dasharray: 185.70069885253906px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 185.70069885253906px;
  }
}

@keyframes index_intro_stroke_5 {
  0% {
    stroke-dashoffset: 185.70069885253906px;
    stroke-dasharray: 185.70069885253906px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 185.70069885253906px;
  }
}

@-webkit-keyframes index_intro_fill_5 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #96999c;
  }
}

@keyframes index_intro_fill_5 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #96999c;
  }
}

#index_intro_svg.trigger .index_intro_5 {
  will-change: stroke-dashoffset, stroke-dasharray, fill;
  -webkit-animation: index_intro_stroke_5 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.48s both, index_intro_fill_5 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s both;
          animation: index_intro_stroke_5 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.48s both, index_intro_fill_5 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s both;
}

@-webkit-keyframes index_intro_stroke_6 {
  0% {
    stroke-dashoffset: 86.01799011230469px;
    stroke-dasharray: 86.01799011230469px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 86.01799011230469px;
  }
}

@keyframes index_intro_stroke_6 {
  0% {
    stroke-dashoffset: 86.01799011230469px;
    stroke-dasharray: 86.01799011230469px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 86.01799011230469px;
  }
}

@-webkit-keyframes index_intro_fill_6 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #96999c;
  }
}

@keyframes index_intro_fill_6 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #96999c;
  }
}

#index_intro_svg.trigger .index_intro_6 {
  will-change: stroke-dashoffset, stroke-dasharray, fill;
  -webkit-animation: index_intro_stroke_6 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s both, index_intro_fill_6 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s both;
          animation: index_intro_stroke_6 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s both, index_intro_fill_6 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s both;
}

@-webkit-keyframes index_intro_stroke_7 {
  0% {
    stroke-dashoffset: 94.20999908447266px;
    stroke-dasharray: 94.20999908447266px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 94.20999908447266px;
  }
}

@keyframes index_intro_stroke_7 {
  0% {
    stroke-dashoffset: 94.20999908447266px;
    stroke-dasharray: 94.20999908447266px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 94.20999908447266px;
  }
}

@-webkit-keyframes index_intro_fill_7 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #0092D8;
  }
}

@keyframes index_intro_fill_7 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #0092D8;
  }
}

#index_intro_svg.trigger .index_intro_7 {
  will-change: stroke-dashoffset, stroke-dasharray, fill;
  -webkit-animation: index_intro_stroke_7 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.72s both, index_intro_fill_7 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4s both;
          animation: index_intro_stroke_7 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.72s both, index_intro_fill_7 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4s both;
}

@-webkit-keyframes index_intro_stroke_8 {
  0% {
    stroke-dashoffset: 86.12239074707031px;
    stroke-dasharray: 86.12239074707031px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 86.12239074707031px;
  }
}

@keyframes index_intro_stroke_8 {
  0% {
    stroke-dashoffset: 86.12239074707031px;
    stroke-dasharray: 86.12239074707031px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 86.12239074707031px;
  }
}

@-webkit-keyframes index_intro_fill_8 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #0092D8;
  }
}

@keyframes index_intro_fill_8 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #0092D8;
  }
}

#index_intro_svg.trigger .index_intro_8 {
  will-change: stroke-dashoffset, stroke-dasharray, fill;
  -webkit-animation: index_intro_stroke_8 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.84s both, index_intro_fill_8 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s both;
          animation: index_intro_stroke_8 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.84s both, index_intro_fill_8 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s both;
}

@-webkit-keyframes index_intro_stroke_9 {
  0% {
    stroke-dashoffset: 82.93848419189453px;
    stroke-dasharray: 82.93848419189453px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 82.93848419189453px;
  }
}

@keyframes index_intro_stroke_9 {
  0% {
    stroke-dashoffset: 82.93848419189453px;
    stroke-dasharray: 82.93848419189453px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 82.93848419189453px;
  }
}

@-webkit-keyframes index_intro_fill_9 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #0092D8;
  }
}

@keyframes index_intro_fill_9 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #0092D8;
  }
}

#index_intro_svg.trigger .index_intro_9 {
  will-change: stroke-dashoffset, stroke-dasharray, fill;
  -webkit-animation: index_intro_stroke_9 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.96s both, index_intro_fill_9 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s both;
          animation: index_intro_stroke_9 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.96s both, index_intro_fill_9 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s both;
}

@-webkit-keyframes index_intro_stroke_10 {
  0% {
    stroke-dashoffset: 47.854000091552734px;
    stroke-dasharray: 47.854000091552734px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 47.854000091552734px;
  }
}

@keyframes index_intro_stroke_10 {
  0% {
    stroke-dashoffset: 47.854000091552734px;
    stroke-dasharray: 47.854000091552734px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 47.854000091552734px;
  }
}

@-webkit-keyframes index_intro_fill_10 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #0092D8;
  }
}

@keyframes index_intro_fill_10 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #0092D8;
  }
}

#index_intro_svg.trigger .index_intro_10 {
  will-change: stroke-dashoffset, stroke-dasharray, fill;
  -webkit-animation: index_intro_stroke_10 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.08s both, index_intro_fill_10 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7s both;
          animation: index_intro_stroke_10 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.08s both, index_intro_fill_10 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7s both;
}

@-webkit-keyframes index_intro_stroke_11 {
  0% {
    stroke-dashoffset: 136.04917907714844px;
    stroke-dasharray: 136.04917907714844px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 136.04917907714844px;
  }
}

@keyframes index_intro_stroke_11 {
  0% {
    stroke-dashoffset: 136.04917907714844px;
    stroke-dasharray: 136.04917907714844px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 136.04917907714844px;
  }
}

@-webkit-keyframes index_intro_fill_11 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #0092D8;
  }
}

@keyframes index_intro_fill_11 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #0092D8;
  }
}

#index_intro_svg.trigger .index_intro_11 {
  will-change: stroke-dashoffset, stroke-dasharray, fill;
  -webkit-animation: index_intro_stroke_11 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s both, index_intro_fill_11 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.8s both;
          animation: index_intro_stroke_11 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s both, index_intro_fill_11 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.8s both;
}

@-webkit-keyframes index_intro_stroke_12 {
  0% {
    stroke-dashoffset: 193.05616760253906px;
    stroke-dasharray: 193.05616760253906px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 193.05616760253906px;
  }
}

@keyframes index_intro_stroke_12 {
  0% {
    stroke-dashoffset: 193.05616760253906px;
    stroke-dasharray: 193.05616760253906px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 193.05616760253906px;
  }
}

@-webkit-keyframes index_intro_fill_12 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #0092D8;
  }
}

@keyframes index_intro_fill_12 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #0092D8;
  }
}

#index_intro_svg.trigger .index_intro_12 {
  will-change: stroke-dashoffset, stroke-dasharray, fill;
  -webkit-animation: index_intro_stroke_12 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.32s both, index_intro_fill_12 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.9s both;
          animation: index_intro_stroke_12 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.32s both, index_intro_fill_12 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.9s both;
}

@-webkit-keyframes index_intro_stroke_13 {
  0% {
    stroke-dashoffset: 2415.9677734375px;
    stroke-dasharray: 2415.9677734375px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 2415.9677734375px;
  }
}

@keyframes index_intro_stroke_13 {
  0% {
    stroke-dashoffset: 2415.9677734375px;
    stroke-dasharray: 2415.9677734375px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 2415.9677734375px;
  }
}

@-webkit-keyframes index_intro_fill_13 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #0092D8;
  }
}

@keyframes index_intro_fill_13 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #0092D8;
  }
}

#index_intro_svg.trigger .index_intro_13 {
  will-change: stroke-dashoffset, stroke-dasharray, fill;
  -webkit-animation: index_intro_stroke_13 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.44s both, index_intro_fill_13 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
          animation: index_intro_stroke_13 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.44s both, index_intro_fill_13 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}

@media screen and (max-width: 1023px) {
  #index_intro_svg.trigger .index_intro_13 {
    -webkit-animation: index_intro_stroke_13 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s both, index_intro_fill_13 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s both;
            animation: index_intro_stroke_13 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s both, index_intro_fill_13 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s both;
  }
}

@-webkit-keyframes index_intro_stroke_14 {
  0% {
    stroke-dashoffset: 2px;
    stroke-dasharray: 2px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 2px;
  }
}

@keyframes index_intro_stroke_14 {
  0% {
    stroke-dashoffset: 2px;
    stroke-dasharray: 2px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 2px;
  }
}

@-webkit-keyframes index_intro_fill_14 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #0092D8;
  }
}

@keyframes index_intro_fill_14 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #0092D8;
  }
}

#index_intro_svg.trigger .index_intro_14 {
  will-change: stroke-dashoffset, stroke-dasharray, fill;
  -webkit-animation: index_intro_stroke_14 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.56s both, index_intro_fill_14 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.1s both;
          animation: index_intro_stroke_14 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.56s both, index_intro_fill_14 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.1s both;
}

@media screen and (max-width: 1023px) {
  #index_intro_svg.trigger .index_intro_14 {
    -webkit-animation: index_intro_stroke_14 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s both, index_intro_fill_14 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s both;
            animation: index_intro_stroke_14 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s both, index_intro_fill_14 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s both;
  }
}

@-webkit-keyframes index_intro_stroke_15 {
  0% {
    stroke-dashoffset: 4273.05908203125px;
    stroke-dasharray: 4273.05908203125px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4273.05908203125px;
  }
}

@keyframes index_intro_stroke_15 {
  0% {
    stroke-dashoffset: 4273.05908203125px;
    stroke-dasharray: 4273.05908203125px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4273.05908203125px;
  }
}

@-webkit-keyframes index_intro_fill_15 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #0092D8;
  }
}

@keyframes index_intro_fill_15 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #0092D8;
  }
}

#index_intro_svg.trigger .index_intro_15 {
  will-change: stroke-dashoffset, stroke-dasharray, fill;
  -webkit-animation: index_intro_stroke_15 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.68s both, index_intro_fill_15 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.2s both;
          animation: index_intro_stroke_15 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.68s both, index_intro_fill_15 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.2s both;
}

@media screen and (max-width: 1023px) {
  #index_intro_svg.trigger .index_intro_15 {
    -webkit-animation: index_intro_stroke_15 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s both, index_intro_fill_15 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s both;
            animation: index_intro_stroke_15 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s both, index_intro_fill_15 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s both;
  }
}

@-webkit-keyframes index_intro_stroke_16 {
  0% {
    stroke-dashoffset: 2479.467529296875px;
    stroke-dasharray: 2479.467529296875px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 2479.467529296875px;
  }
}

@keyframes index_intro_stroke_16 {
  0% {
    stroke-dashoffset: 2479.467529296875px;
    stroke-dasharray: 2479.467529296875px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 2479.467529296875px;
  }
}

@-webkit-keyframes index_intro_fill_16 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #0092D8;
  }
}

@keyframes index_intro_fill_16 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #0092D8;
  }
}

#index_intro_svg.trigger .index_intro_16 {
  will-change: stroke-dashoffset, stroke-dasharray, fill;
  -webkit-animation: index_intro_stroke_16 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.8s both, index_intro_fill_16 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.3s both;
          animation: index_intro_stroke_16 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.8s both, index_intro_fill_16 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.3s both;
}

@media screen and (max-width: 1023px) {
  #index_intro_svg.trigger .index_intro_16 {
    -webkit-animation: index_intro_stroke_16 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s both, index_intro_fill_16 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s both;
            animation: index_intro_stroke_16 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s both, index_intro_fill_16 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s both;
  }
}

@-webkit-keyframes index_intro_stroke_17 {
  0% {
    stroke-dashoffset: 33.70439529418945px;
    stroke-dasharray: 33.70439529418945px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 33.70439529418945px;
  }
}

@keyframes index_intro_stroke_17 {
  0% {
    stroke-dashoffset: 33.70439529418945px;
    stroke-dasharray: 33.70439529418945px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 33.70439529418945px;
  }
}

#index_intro_svg.trigger .index_intro_17 {
  will-change: stroke-dashoffset, stroke-dasharray, fill;
  -webkit-animation: index_intro_stroke_17 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.92s both, index_intro_fill_17 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.4s both;
          animation: index_intro_stroke_17 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.92s both, index_intro_fill_17 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.4s both;
}

@media screen and (max-width: 1023px) {
  #index_intro_svg.trigger .index_intro_17 {
    -webkit-animation: index_intro_stroke_17 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s both, index_intro_fill_17 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s both;
            animation: index_intro_stroke_17 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s both, index_intro_fill_17 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s both;
  }
}

@-webkit-keyframes index_intro_stroke_18 {
  0% {
    stroke-dashoffset: 67.9433822631836px;
    stroke-dasharray: 67.9433822631836px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 67.9433822631836px;
  }
}

@keyframes index_intro_stroke_18 {
  0% {
    stroke-dashoffset: 67.9433822631836px;
    stroke-dasharray: 67.9433822631836px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 67.9433822631836px;
  }
}

#index_intro_svg.trigger .index_intro_18 {
  will-change: stroke-dashoffset, stroke-dasharray, fill;
  -webkit-animation: index_intro_stroke_18 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.04s both, index_intro_fill_18 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.5s both;
          animation: index_intro_stroke_18 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.04s both, index_intro_fill_18 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.5s both;
}

@media screen and (max-width: 1023px) {
  #index_intro_svg.trigger .index_intro_18 {
    -webkit-animation: index_intro_stroke_18 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s both, index_intro_fill_18 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s both;
            animation: index_intro_stroke_18 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s both, index_intro_fill_18 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s both;
  }
}

#index_business_svg {
  opacity: 0;
}

#index_business_svg.trigger {
  font-weight: 500;
  opacity: 1;
}

@-webkit-keyframes index_business_opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes index_business_opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

#index_business_svg.trigger .index_business_1 {
  opacity: 0;
  -webkit-animation: index_business_opacity 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s both;
          animation: index_business_opacity 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s both;
}

#index_business_svg.trigger .index_business_opacity_01,
#index_business_svg.trigger .index_business_3 {
  will-change: opacity;
  opacity: 0;
  -webkit-animation: index_business_opacity 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s both;
          animation: index_business_opacity 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s both;
}

#index_business_svg.trigger .index_business_opacity_02,
#index_business_svg.trigger .index_business_5 {
  opacity: 0;
  -webkit-animation: index_business_opacity 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.48s both;
          animation: index_business_opacity 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.48s both;
}

#index_business_svg.trigger .index_business_opacity_03,
#index_business_svg.trigger .index_business_7 {
  opacity: 0;
  -webkit-animation: index_business_opacity 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.72s both;
          animation: index_business_opacity 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.72s both;
}

#index_business_svg.trigger .index_business_opacity_04,
#index_business_svg.trigger .index_business_9 {
  opacity: 0;
  -webkit-animation: index_business_opacity 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.96s both;
          animation: index_business_opacity 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.96s both;
}

#index_business_svg.trigger .index_business_opacity_05,
#index_business_svg.trigger .index_business_11 {
  opacity: 0;
  -webkit-animation: index_business_opacity 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s both;
          animation: index_business_opacity 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s both;
}

#index_business_svg.trigger .index_business_opacity_06,
#index_business_svg.trigger .index_business_13 {
  opacity: 0;
  -webkit-animation: index_business_opacity 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 1.44s both;
          animation: index_business_opacity 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 1.44s both;
}

#index_business_svg.trigger .index_business_opacity_07,
#index_business_svg.trigger .index_business_15 {
  opacity: 0;
  -webkit-animation: index_business_opacity 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 1.68s both;
          animation: index_business_opacity 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 1.68s both;
}

#index_business_svg.trigger .index_business_opacity_08,
#index_business_svg.trigger .index_business_17 {
  opacity: 0;
  -webkit-animation: index_business_opacity 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 1.92s both;
          animation: index_business_opacity 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 1.92s both;
}

#index_business_svg.trigger .index_business_opacity_09,
#index_business_svg.trigger .index_business_19 {
  opacity: 0;
  -webkit-animation: index_business_opacity 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 2.16s both;
          animation: index_business_opacity 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 2.16s both;
}

#index_business_svg.trigger .index_business_opacity_10,
#index_business_svg.trigger .index_business_21 {
  opacity: 0;
  -webkit-animation: index_business_opacity 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 2.4s both;
          animation: index_business_opacity 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 2.4s both;
}

#index_area_svg {
  opacity: 0;
}

#index_area_svg.trigger {
  opacity: 1;
}

#index_area_svg.trigger #pointer {
  will-change: transform;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation-name: pointer_zoom;
          animation-name: pointer_zoom;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
}

@-webkit-keyframes pointer_zoom {
  0% {
    -webkit-transform: translate(23.5%, 13%) scale(1);
            transform: translate(23.5%, 13%) scale(1);
  }
  100% {
    -webkit-transform: translate(17.85%, 5.625%) scale(0.75);
            transform: translate(17.85%, 5.625%) scale(0.75);
  }
}

@keyframes pointer_zoom {
  0% {
    -webkit-transform: translate(23.5%, 13%) scale(1);
            transform: translate(23.5%, 13%) scale(1);
  }
  100% {
    -webkit-transform: translate(17.85%, 5.625%) scale(0.75);
            transform: translate(17.85%, 5.625%) scale(0.75);
  }
}

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

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  font-size: 16px;
  line-height: 1.5;
  width: 100%;
}

@media screen and (max-width: 1184px) {
  body {
    font-size: 14px;
  }
}

.body_wrap {
  overflow: hidden;
  margin-top: 96px;
}

@media screen and (max-width: 1023px) {
  .body_wrap {
    margin-top: 0px;
  }
}

.container {
  width: 100%;
  max-width: calc(1400px + 24px * 2);
  padding: 0px 24px;
  margin: 0 auto;
  position: relative;
}

.container_02 {
  width: 100%;
  max-width: calc(1280px + 24px * 2);
  padding: 0px 24px;
  margin: 0 auto;
  position: relative;
}

.inner {
  width: 100%;
  max-width: calc(1100px + 24px * 2);
  padding-left: 24px;
  padding-right: 24px;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 1023px) {
  .inner {
    max-width: 80%;
    padding-left: 0;
    padding-right: 0;
  }
}

.bold {
  font-weight: 700;
}

.medium {
  font-weight: 500;
}

.text_center {
  text-align: center;
}

.block_center {
  margin: 0 auto;
}

.relative_box {
  position: relative;
}

.sp_only {
  display: none;
}

@media screen and (max-width: 1023px) {
  .sp_only {
    display: block;
  }
}

.pc_only {
  display: block;
}

@media screen and (max-width: 1023px) {
  .pc_only {
    display: none;
  }

  .pc_only_abs {
    display: none!important;
  }
}

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

p + p {
  margin-top: 1.5em;
}

.gold {
  color: #0092D8;
}

.url_link {
  color: #0092D8;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
}

.url_link:hover {
  opacity: 0.5;
}

.en {
  font-family: "Chakra Petch", sans-serif;
}

.post_content {
  /* reset.cssã§ãƒªã‚»ãƒ?ãƒˆã—ãŸã‚¿ã‚°ã®å†å®šç¾© */
}

.post_content h1 {
  font-size: 2em;
}

.post_content h2 {
  font-size: 1.8em;
}

.post_content h3 {
  font-size: 1.6em;
}

.post_content h4 {
  font-size: 1.4em;
}

.post_content h5 {
  font-size: 1.2em;
}

.post_content h6 {
  font-size: 1em;
}

.post_content p + p {
  margin-top: 0em;
}

.post_content strong {
  font-weight: bold;
}

.post_content em {
  font-style: italic;
}

.post_content blockquote {
  margin: 1.5em 0;
  border-left: 5px solid #ddd;
  padding: 1em 0 1em 10px;
  color: #777;
}

.post_content blockquote p + p {
  margin-top: 0.5em;
}

.post_content ul {
  list-style-type: disc;
}

.post_content ol {
  list-style-type: decimal;
}

.post_content li {
  margin-left: 1.5em;
}

.post_content a {
  text-decoration: underline;
}

.post_content .wp-block-image::after {
  content: "";
  display: block;
  clear: both;
}

.post_content .aligncenter img {
  display: block;
  margin: 0 auto;
}

.post_content .wp-caption {
  max-width: 100%;
  border: 1px solid #ddd;
  text-align: left;
  background-color: #f3f3f3;
  padding: 5px;
  border-radius: 3px;
}

.post_content .wp-caption img {
  margin: 0;
  padding: 0;
  border: 0 none;
}

.post_content .wp-caption p.wp-caption-text {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}

/*==========
æ±Žç”¨ãƒ¬ã‚¤ã‚¢ã‚¦ãƒ?
==========*/
.layout_list > * {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  padding-bottom: 70px;
}

.layout_list.align_center {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.layout_list.align_center > * {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.layout_list.fifty_fifty > *:nth-of-type(odd) > *:nth-of-type(odd) {
  width: 50%;
}

.layout_list.fifty_fifty > *:nth-of-type(odd) > *:nth-of-type(even) {
  width: calc(50% - 40px);
  margin-left: 40px;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}

.layout_list.fifty_fifty > *:nth-of-type(even) > *:nth-of-type(odd) {
  width: 50%;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}

.layout_list.fifty_fifty > *:nth-of-type(even) > *:nth-of-type(even) {
  width: calc(50% - 40px);
  margin-right: 40px;
}

@media screen and (max-width: 1023px) {
  .layout_list.fifty_fifty > *:nth-of-type(odd) > *:nth-of-type(odd) {
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .layout_list.fifty_fifty > *:nth-of-type(odd) > *:nth-of-type(even) {
    width: 100%;
    margin-left: 0px;
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
        -ms-flex-order: 0;
            order: 0;
  }
  .layout_list.fifty_fifty > *:nth-of-type(even) > *:nth-of-type(odd) {
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .layout_list.fifty_fifty > *:nth-of-type(even) > *:nth-of-type(even) {
    width: 100%;
    margin-right: 0px;
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
        -ms-flex-order: 0;
            order: 0;
  }
}

.layout_list.sixty_fourty > * > *:nth-of-type(odd) {
  width: calc(60% - 40px);
}

.layout_list.sixty_fourty > * > *:nth-of-type(even) {
  width: 40%;
}

.layout_list.sixty_fourty > *:nth-of-type(odd) > *:nth-of-type(odd) {
  margin-right: 40px;
}

.layout_list.sixty_fourty > *:nth-of-type(even) > *:nth-of-type(odd) {
  margin-left: 40px;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}

@media screen and (max-width: 1023px) {
  .layout_list.sixty_fourty > * > *:nth-of-type(odd) {
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .layout_list.sixty_fourty > * > *:nth-of-type(even) {
    width: 100%;
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
        -ms-flex-order: 0;
            order: 0;
  }
  .layout_list.sixty_fourty > *:nth-of-type(odd) > *:nth-of-type(odd) {
    margin-right: 0px;
  }
  .layout_list.sixty_fourty > *:nth-of-type(even) > *:nth-of-type(odd) {
    margin-left: 0px;
  }
}

.layout_list.sixty_fourty.overhang .img_sec {
  width: 100vw;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.layout_list.sixty_fourty.overhang .img_sec img {
  width: 100%;
}

.layout_list.sixty_fourty.overhang > *:nth-of-type(odd) .img_sec {
  margin-left: calc(50% - 50vw);
}

.layout_list.sixty_fourty.overhang > *:nth-of-type(even) .img_sec {
  margin-right: calc(50% - 50vw);
}

.layout_list.fourty_sixty > * > *:nth-of-type(odd) {
  width: 40%;
}

.layout_list.fourty_sixty > * > *:nth-of-type(even) {
  width: calc(60% - 40px);
}

.layout_list.fourty_sixty > *:nth-of-type(odd) > *:nth-of-type(even) {
  margin-left: 40px;
}

.layout_list.fourty_sixty > *:nth-of-type(even) > *:nth-of-type(odd) {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}

.layout_list.fourty_sixty > *:nth-of-type(even) > *:nth-of-type(even) {
  margin-right: 40px;
}

@media screen and (max-width: 1023px) {
  .layout_list.fourty_sixty > * > *:nth-of-type(odd) {
    width: 100%;
  }
  .layout_list.fourty_sixty > * > *:nth-of-type(even) {
    width: 100%;
  }
  .layout_list.fourty_sixty > *:nth-of-type(odd) > *:nth-of-type(even) {
    margin-left: 0px;
  }
  .layout_list.fourty_sixty > *:nth-of-type(even) > *:nth-of-type(odd) {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
        -ms-flex-order: 0;
            order: 0;
  }
  .layout_list.fourty_sixty > *:nth-of-type(even) > *:nth-of-type(even) {
    margin-right: 0px;
  }
}

.layout_list.fourty_sixty.overhang .img_sec {
  width: 100vw;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.layout_list.fourty_sixty.overhang .img_sec img {
  width: 100%;
}

.layout_list.fourty_sixty.overhang > *:nth-of-type(odd) .img_sec {
  margin-right: calc(50% - 50vw);
}

.layout_list.fourty_sixty.overhang > *:nth-of-type(even) .img_sec {
  margin-left: calc(50% - 50vw);
}

@media screen and (max-width: 1023px) {
  .layout_list .img_sec,
  .layout_list .text_sec {
    margin-bottom: 1em;
  }
  .layout_list > * {
    padding-bottom: 40px;
  }
  .layout_list > *:last-of-type {
    padding-bottom: 0;
  }
}

.layout_box {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.layout_box.align_center {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.layout_box.align_bottom {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.layout_box.justify_center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.layout_box.fifty_fifty > * {
  width: 50%;
}

.layout_box.sixty_fourty > *:nth-of-type(odd) {
  width: calc(60% - 40px);
  margin-right: 40px;
}

.layout_box.sixty_fourty > *:nth-of-type(even) {
  width: 40%;
}

.layout_box.fourty_sixty > *:nth-of-type(odd) {
  width: 40%;
}

.layout_box.fourty_sixty > *:nth-of-type(even) {
  width: calc(60% - 40px);
  margin-left: 40px;
}

.layout_box.eighty_twenty > *:nth-of-type(odd) {
  width: calc(80% - 40px);
  margin-right: 40px;
}

.layout_box.eighty_twenty > *:nth-of-type(even) {
  width: 20%;
}

@media screen and (max-width: 1023px) {
  .layout_box .img_sec,
  .layout_box .text_sec {
    margin-bottom: 1em;
  }
  .layout_box.fifty_fifty > * {
    width: 100%;
  }
  .layout_box.sixty_fourty > *:nth-of-type(odd) {
    width: 100%;
    margin-right: 0px;
  }
  .layout_box.sixty_fourty > *:nth-of-type(even) {
    width: 100%;
  }
  .layout_box.fourty_sixty > *:nth-of-type(odd) {
    width: 100%;
  }
  .layout_box.fourty_sixty > *:nth-of-type(even) {
    width: 100%;
    margin-left: 0px;
  }
  .layout_box.eighty_twenty > *:nth-of-type(odd) {
    width: 100%;
    margin-right: 0px;
  }
  .layout_box.eighty_twenty > *:nth-of-type(even) {
    width: 100%;
  }
}

.flex_box {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.flex_box.col_02 {
  width: calc(100% + 40px);
  margin-left: -20px;
}

.flex_box.col_02 > * {
  width: calc((100% / 2) - 40px);
  margin: 20px;
}

.flex_box.col_03 {
  width: calc(100% + 40px);
  margin-left: -20px;
}

.flex_box.col_03 > * {
  width: calc((100% / 3) - 40px);
  margin: 20px;
}

.flex_box.col_04 {
  width: calc(100% + 40px);
  margin-left: -20px;
}

.flex_box.col_04 > * {
  width: calc((100% / 4) - 40px);
  margin: 20px;
}

.flex_box.col_05 {
  width: calc(100% + 40px);
  margin-left: -20px;
}

.flex_box.col_05 > * {
  width: calc((100% / 5) - 40px);
  margin: 20px;
}

.flex_box.justify_sb {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 1023px) {
  .flex_box.col_02 > *,
  .flex_box.col_03 > *,
  .flex_box.col_04 > *,
  .flex_box.col_05 > * {
    width: calc(100% - 40px);
  }
  .flex_box.justify_sb {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

/*==========
ã‚¹ãƒ©ã‚¤ãƒ€ãƒ¼
==========*/
.slide_normal_container {
  position: relative;
}

.slide_normal_container.non_active .slide_nav_wrap,
.slide_normal_container.non_active .pagination_slide_normal {
  display: none;
}

.slide_normal_container .slide_nav_wrap {
  width: 100%;
  position: absolute;
  top: calc(50% - 20px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}

.slide_normal_container .swiper-button-next,
.slide_normal_container .swiper-button-prev {
  background-color: #fff;
  border-radius: 50% 50% 50% 50%;
  width: 64px;
  height: 64px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.slide_normal_container .swiper-button-next::after,
.slide_normal_container .swiper-button-prev::after {
  content: "";
  width: 16%;
  height: 27%;
  background: center/cover url("../img/common/slide_normal_btn.svg") no-repeat;
}

.slide_normal_container .swiper-button-prev {
  left: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.slide_normal_container .swiper-button-next {
  right: 0;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}

.slide_normal_container .swiper-button-next::after {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.slide_normal_container .pagination_slide_normal,
.slide_fade_container .pagination_slide_normal {
  height: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.slide_normal_container .pagination_slide_normal .swiper-pagination-bullet,
.slide_fade_container .pagination_slide_normal .swiper-pagination-bullet {
  background-color: #fff;
  border: 1px solid #0092D8;
  opacity: 1;
  width: 12px;
  height: 12px;
  margin: 0 6px;
}

.slide_normal_container .pagination_slide_normal .swiper-pagination-bullet.swiper-pagination-bullet-active,
.slide_fade_container .pagination_slide_normal .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #0092D8;
}

.slide_result_container .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
}

.slide_result_container .swiper-slide {
  width: 520px;
}

@media screen and (max-width: 1023px) {
  .slide_result_container .swiper-slide {
    width: 240px;
  }
}

/*==========
æ±Žç”¨ãƒ?ã‚¶ã‚¤ãƒ³
==========*/
#header {
  top: -100%;
}

main {
  min-height: 75vh;
}

.logo_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.logo_wrap .name {
  font-size: 1.125em;
  font-weight: 500;
  margin-left: 1em;
}

.logo_wrap.align_bottom {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.logo_wrap.align_bottom .name {
  margin-bottom: 0.5em;
}

@media screen and (max-width: 1023px) {
  .logo_wrap .name {
    width: 100%;
    margin-left: 0;
    margin-top: 1em;
  }
}

.border_bottom_dot {
  border-bottom: 3px dotted #0092D8;
  padding-bottom: 100px;
}

@media screen and (max-width: 1023px) {
  .border_bottom_dot {
    padding-bottom: 56px;
  }
}

.list_01 > * {
  border-top: 1px dashed #707070;
}

.list_01 > *:last-of-type {
  border-bottom: 1px dashed #707070;
}

.list_01 > * a {
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
}

.list_01 > * a:hover {
  opacity: 0.625;
}

.list_01 .row {
  padding: 1.25em 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.list_01 time {
  width: 86px;
  margin-right: 1em;
  letter-spacing: 0.04em;
}

.list_01 .category {
  min-width: 70px;
  height: 24px;
  line-height: 24px;
  margin-right: 1.5em;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #fff;
  background-color: #fff;
}

.list_01 .text_sec {
  letter-spacing: 0.05em;
}

@media screen and (max-width: 1023px) {
  .list_01 .row {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .list_01 .text_sec {
    margin-top: 0.5em;
  }
}

.list_02 {
  text-align: center;
  font-size: 1.125em;
  font-weight: 500;
}

.list_02 > * {
  width: 100%;
  height: 50px;
  border: 2px solid #0092D8;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.list_02 > *:not(:last-of-type) {
  position: relative;
  margin-bottom: 26px;
}

.list_02 > *:not(:last-of-type)::after {
  content: "";
  display: block;
  width: 27px;
  height: 8px;
  background: center/contain url("../img/common/icon_arrow_02.svg") no-repeat;
  position: absolute;
  bottom: -14px;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
}

@media screen and (max-width: 1023px) {
  .list_02 {
    font-size: 1em;
  }
}

.list_03 > * {
  padding: 1em 0 1em 24px;
  position: relative;
  border-left: 20px solid #0092D8;
  margin-bottom: 6px;
}

.list_03 > *::before, .list_03 > *::after {
  content: "";
  width: 0;
  height: 0;
  display: block;
  position: absolute;
  left: -20px;
  border-width: 8px 10px 0 10px;
}

.list_03 > *:not(:first-of-type)::before {
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  top: 0;
  z-index: 1;
}

.list_03 > *::after {
  border-style: solid;
  border-color: #0092D8 transparent transparent transparent;
  bottom: -8px;
  z-index: 2;
}

.list_03 > *:last-of-type {
  padding-bottom: 0.5em;
}

.list_03 .ttl {
  font-size: 1.125em;
  font-weight: 700;
}

.list_03 .ttl::before {
  content: "â—?";
  margin-right: 0.125em;
  color: #0092D8;
}

.list_03 .text {
  display: block;
  font-size: 0.875em;
}

@media screen and (max-width: 1023px) {
  .list_03 > * {
    padding: 0.5em 0 0.5em 16px;
    border-left: 16px solid #0092D8;
    margin-bottom: 5px;
  }
  .list_03 > *::before, .list_03 > *::after {
    left: -16px;
    border-width: 5px 8px 0 8px;
  }
  .list_03 > *::after {
    bottom: -5px;
  }
}

.list_circle > * {
  line-height: 1.5;
  position: relative;
  padding-left: 1em;
}

.list_circle > *::before {
  content: "â—?";
  margin-right: 0.125em;
  position: absolute;
  left: 0;
}

.list_circle.circle_gold > *::before {
  color: #0092D8;
}

.list_circle.small > *::before {
  font-size: 10px;
  vertical-align: 0.25em;
  margin-right: 0.75em;
}

.list_dot > * {
  position: relative;
  padding-left: 1em;
}

.list_dot > *::before {
  content: "ãƒ»";
  position: absolute;
  left: 0;
}

.form_sec {
  padding-bottom: 100px;
}

.form_sec .form_list {
  margin-top: 56px;
}

.form_sec .form_list .ttl {
  width: 387px;
  padding: 0.657em 1em;
}

.form_sec .form_list .input {
  letter-spacing: 0.05em;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.form_sec .form_list .input .text {
  margin-right: 0.5em;
}

.form_sec .form_list .required {
  padding-right: 60px;
  position: relative;
  display: block;
}

.form_sec .form_list .required::after {
  content: "å¿?é ?";
  display: block;
  width: 60px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background-color: #0092D8;
  color: #fff;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.form_sec input[type="text"],
.form_sec input[type="tel"],
.form_sec input[type="email"],
.form_sec input[type="url"],
.form_sec textarea {
  background-color: #F7FCFF;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
  padding: 0.657em 1em;
  width: 100%;
  max-width: 520px;
}

.form_sec input[type="text"].small,
.form_sec input[type="tel"].small,
.form_sec input[type="email"].small,
.form_sec input[type="url"].small,
.form_sec textarea.small {
  max-width: 100px;
  margin-right: 0.875em;
}

.form_sec .radio_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.form_sec .radio_box {
  margin-right: 1.5em;
}

.form_sec input[type="radio"],
.form_sec .radio_wrap label {
  cursor: pointer;
}

.form_sec input[type="radio"] {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  vertical-align: -1px;
}

.form_sec input[type="checkbox"],
.form_sec .check_wrap label {
  cursor: pointer;
}

.form_sec .select_wrap {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  border: 1px solid #000000;
  border-radius: 6px;
  background: #ffffff;
  margin-top: -1.5px;
}

.form_sec .select_wrap::before {
  position: absolute;
  top: 50%;
  right: 1.125em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 7px solid #000000;
  pointer-events: none;
}

.form_sec select {
  color: #000;
  font-size: 1em;
  padding: 0.875em 2.5em 0.75em 1.25em;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  cursor: pointer;
  appearance: none;
}

.form_sec select::-ms-expand {
  display: none;
}

.form_sec .aside {
  font-size: 0.875em;
  margin-top: 0.5em;
}

.form_sec .privacy_check {
  margin-top: 70px;
}

.form_sec .privacy_check .text_sec {
  border: 1px solid #000000;
  overflow-y: scroll;
  padding: 40px 24px;
  height: 210px;
}

.form_sec .privacy_check .text_sec::-webkit-scrollbar {
  width: 16px;
}

.form_sec .privacy_check .text_sec::-webkit-scrollbar-track {
  background: #F7FCFF;
}

.form_sec .privacy_check .text_sec::-webkit-scrollbar-thumb {
  background: #0092D8;
}

.form_sec .privacy_check .ttl {
  font-size: 1.125em;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1.25em;
}

.form_sec .privacy_check .sub_ttl {
  padding: 0 0.5em;
  font-size: 1.075em;
  font-weight: 500;
  margin-top: 0.75em;
}

.form_sec .privacy_check .text_normal {
  padding: 0 0.5em;
}

.form_sec .privacy_check .check_wrap {
  margin-top: 32px;
  text-align: center;
}

.form_sec .btn_01 {
  cursor: pointer;
  margin-top: 40px;
  min-width: 200px;
  font-size: 1em;
}

.form_sec .sub_row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.form_sec .sub_row + .sub_row {
  margin-top: 1em;
}

.form_sec .wpcf7-list-item {
  margin: 0.625em 1.5em 0.75em 0;
  line-height: 1.25;
}

@media screen and (max-width: 1023px) {
  .form_sec {
    padding-bottom: 40px;
  }
  .form_sec .form_list .ttl {
    width: 100%;
    padding: 0.5em 0em;
    margin-bottom: 0.5em;
  }
  .form_sec .input {
    letter-spacing: 0em;
    width: 100%;
  }
  .form_sec input[type="text"],
  .form_sec input[type="tel"],
  .form_sec input[type="email"],
  .form_sec input[type="url"],
  .form_sec textarea {
    max-width: unset;
    margin: 0.25em 0;
  }
  .form_sec input[type="text"].small,
  .form_sec input[type="tel"].small,
  .form_sec input[type="email"].small,
  .form_sec input[type="url"].small,
  .form_sec textarea.small {
    max-width: 90px;
  }
  .form_sec .privacy_check {
    margin-top: 40px;
  }
  .form_sec .privacy_check .text_sec {
    padding: 40px 16px;
  }
}

.dl_normal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.dl_01 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  border-top: 1px dashed #707070;
}

.dl_01.half .row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.dl_01.half .child_row {
  width: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.dl_01.half .child_row:nth-child(even) {
  padding-left: 2em;
}

.dl_01 .row {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 70px;
  border-bottom: 1px dashed #707070;
}

.dl_01 .ttl {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0em 0.5em;
  font-size: 1.125em;
  font-weight: 500;
}

.dl_01 .number {
  color: #0092D8;
}

.dl_01 .number .big {
  font-family: "Barlow", sans-serif;
  font-size: 2.375em;
  font-weight: 600;
}

.dl_01 .number .small {
  font-size: 1.125em;
  font-weight: 500;
  vertical-align: 2px;
}

.dl_01 .aside {
  width: 100%;
  text-align: right;
  font-size: 12px;
  margin-top: 1em;
}

@media screen and (max-width: 1023px) {
  .dl_01.half .child_row {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    height: 56px;
    border-bottom: 1px dashed #707070;
  }
  .dl_01.half .child_row:nth-child(even) {
    padding-left: 0em;
  }
  .dl_01.half .row {
    height: unset;
    border-bottom: none;
  }
  .dl_01.half .row:last-of-type .child_row:last-of-type {
    border-bottom: none;
  }
  .dl_01 .row {
    height: 56px;
  }
  .dl_01 .aside {
    margin-top: 0;
  }
  .dl_01 .number .big {
    font-size: 2em;
  }
  .dl_01 .number .small {
    font-size: 1em;
  }
}

.dl_02 {
  font-weight: 500;
  border-top: 2px solid #0092D8;
}

.dl_02 .row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 1.125em 0.5em;
  border-bottom: 1px dashed #0092D8;
}

@media screen and (max-width: 1023px) {
  .dl_02 .row {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .dl_02 .row > * {
    width: 100%;
  }
}

.dl_03 {
  letter-spacing: 0.02em;
  line-height: 1.6875;
  width: calc(100% + 20px);
  margin-left: -10px;
  margin-top: 1em;
  letter-spacing: 0.02em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.dl_03 > * {
  width: calc((100% / 5) - 20px);
  margin: 0 10px;
}

.dl_03 .row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 120px;
}

.dl_03 .ttl {
  min-width: 80px;
}

.dl_03 .text {
  min-width: 40px;
  text-align: right;
}

@media screen and (max-width: 1023px) {
  .dl_03 {
    width: 100%;
    margin-left: 0;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .dl_03 > * {
    width: calc(50% - 6em);
    margin: 0 6em 0 0;
  }
  .dl_03 .ttl {
    min-width: 72px;
  }
}

.list_dropdown {
  margin-top: 1em;
}

.list_dropdown > * {
  margin-bottom: 10px;
}

.list_dropdown .dropdown_ttl {
  font-size: 1.375em;
  font-weight: 500;
  padding: 0.5em 0.75em;
  cursor: pointer;
  background-color: #0092D8;
  color: #fff;
  position: relative;
}

.list_dropdown .dropdown_ttl::before, .list_dropdown .dropdown_ttl::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25em;
  width: 22px;
  height: 3px;
  background-color: #fff;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.list_dropdown .dropdown_ttl::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}

.list_dropdown .dropdown_ttl.show::before {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

.list_dropdown .dropdown_ttl.show::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
  opacity: 0;
}

.list_dropdown .dropdown_text {
  display: none;
}

@media screen and (max-width: 1023px) {
  .list_dropdown .dropdown_ttl {
    font-size: 1.125em;
    padding: 0.625em 1.25em;
  }
  .list_dropdown .dropdown_ttl::before, .list_dropdown .dropdown_ttl::after {
    width: 16px;
    height: 2px;
  }
}

.asterisk span {
  display: inline-block;
  position: relative;
  padding-left: 1em;
}

.asterisk span::before {
  content: "â€»";
  position: absolute;
  left: 0;
}

@media screen and (max-width: 1023px) {
  .asterisk span {
    font-size: 0.75em;
  }
}

/*==========
ãƒœã‚¿ãƒ³
==========*/
.btn_01 {
  display: block;
  text-align: center;
  background-color: #0092D8;
  border: 1px solid #0092D8;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 360px;
  padding: 0 2em;
  height: 60px;
  line-height: 60px;
  border-radius: 30px;
  -webkit-transition: background-color 0.5s, color 0.5s;
  transition: background-color 0.5s, color 0.5s;
}

@media all and (-ms-high-contrast: none) {
  .btn_01 {
    width: 0;
  }
}

.btn_01:hover {
  background-color: #fff;
  color: #0092D8;
}

.btn_01.white {
  background-color: #fff;
  border: 2px solid #0092D8;
  color: #0092D8;
}

.btn_01.white:hover {
  background-color: #0092D8;
  color: #fff;
}

@media screen and (max-width: 1023px) {
  .btn_01 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    min-width: auto;
    max-width: 360px;
    padding: 0.25em 1em;
    letter-spacing: 0;
    height: 50px;
    border-radius: 24px;
    line-height: 1.25;
    margin: 0 auto;
  }
}

/*==========
ã‚¿ã‚¤ãƒˆãƒ«
==========*/
.sec_ttl {
  margin-bottom: 24px;
}

.sec_ttl .big {
  display: block;
  font-size: 3.25em;
  color: #0092D8;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1;
}

.sec_ttl .mid {
  display: block;
  font-size: 3em;
  color: #0092D8;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1;
}

.sec_ttl .small {
  display: block;
  font-size: 1.125em;
  font-weight: 500;
  margin-top: 0.25em;
}

@media screen and (max-width: 1023px) {
  .sec_ttl {
    margin-bottom: 1em;
  }
  .sec_ttl .big {
    font-size: 2.125em;
    letter-spacing: 0.05em;
  }
  .sec_ttl .mid {
    font-size: 2.125em;
    letter-spacing: 0.05em;
  }
  .sec_ttl .small {
    font-size: 1em;
    margin-top: 0;
  }
}

.sec_ttl_02 {
  line-height: 1.25;
  margin-bottom: 1.5em;
}

.sec_ttl_02 .small {
  letter-spacing: 0.1em;
  display: block;
  font-weight: 500;
  margin-bottom: 0.25em;
  color: #0092D8;
}

.sec_ttl_02 .big {
  display: block;
  font-size: 2.25em;
  font-weight: 700;
}

@media screen and (max-width: 1023px) {
  .sec_ttl_02 .big {
    font-size: 1.5em;
  }
}

.sec_ttl_03 {
  margin: 10px 0;
}

.sec_ttl_03 .big {
  font-size: 1.875em;
  font-weight: 700;
  vertical-align: middle;
}

.sec_ttl_03 .small {
  font-weight: 500;
  vertical-align: middle;
  margin-left: 0.75em;
}

.sec_ttl_03 .en {
  letter-spacing: 0.1em;
}

@media screen and (max-width: 1023px) {
  .sec_ttl_03 .big {
    font-size: 1.25em;
  }
}

.sec_ttl_04 {
  border-bottom: 2px solid #0092D8;
  font-size: 1.4375em;
  font-weight: 700;
  color: #0092D8;
  padding-bottom: 0.5em;
  margin-bottom: 1.25em;
}

@media screen and (max-width: 1023px) {
  .sec_ttl_04 {
    margin-bottom: 1em;
  }
}

.sub_ttl_01 {
  font-size: 1.5em;
  font-weight: 700;
  color: #0092D8;
}

@media screen and (max-width: 1023px) {
  .sub_ttl_01 {
    font-size: 1.125em;
  }
}

.sub_ttl_02 {
  font-size: 1.75em;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3571;
}

@media screen and (max-width: 1023px) {
  .sub_ttl_02 {
    font-size: 1.125em;
  }
}

.sub_ttl_03 {
  font-size: 1.25em;
  font-weight: 700;
  color: #0092D8;
  letter-spacing: 0.02em;
  margin-top: 1.25em;
  margin-bottom: 0.75em;
}

@media screen and (max-width: 1023px) {
  .sub_ttl_03 {
    font-size: 1.125em;
  }
}

.sub_ttl_04 {
  font-size: 1.125em;
  font-weight: 500;
}

.sub_ttl_04 .small {
  font-size: 0.8333em;
  font-weight: 400;
}

.sub_ttl_05 {
  font-size: 1.625em;
  font-weight: 500;
}

.dl_ttl_01 {
  font-size: 1.5625em;
  font-weight: 700;
  color: #0092D8;
  margin-bottom: 0.5em;
}

@media screen and (max-width: 1023px) {
  .dl_ttl_01 {
    font-size: 1.325em;
  }
}

.dl_ttl_02 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  color: #0092D8;
  padding-bottom: 0.75em;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.dl_ttl_02 .en {
  font-size: 3.125em;
  letter-spacing: 0.12em;
  display: block;
  width: 100%;
  margin-bottom: 0.5em;
}

.dl_ttl_02 .big {
  font-size: 1.5em;
  font-weight: 700;
}

.dl_ttl_02 .small {
  font-size: 0.875em;
  font-weight: 500;
  margin-bottom: 0.125em;
}

@media screen and (max-width: 1023px) {
  .dl_ttl_02 .en {
    font-size: 2em;
    margin-bottom: 0.25em;
  }
  .dl_ttl_02 .big {
    font-size: 1.25em;
  }
}

/*==========
ãƒ˜ãƒƒãƒ€ãƒ¼
==========*/
#header {
  background-color: #fff;
  position: fixed;
  width: 100%;
  height: 96px;
  left: 0%;
  -webkit-transition: top 0.5s;
  transition: top 0.5s;
  z-index: 99;
}

#header .container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

#header .container > *:first-child {
  width: 430px;
}

#header .container > *:nth-child(2) {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

#header nav {
  height: 100%;
  margin-left: auto;
}

@media screen and (max-width: 1023px) {
  #header {
    top: 0;
    height: 80px;
  }
  #header .container > *:first-child {
    width: 240px;
  }
}

#header_logo_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 16px;
}

#header_logo_wrap img {
  margin-right: 3rem;
}

#header_logo_wrap .name {
  font-size: 13px;
  letter-spacing: 0.12em;
  font-weight: 500;
}

@media screen and (max-width: 1023px) {
  #header_logo_wrap {
    padding-left: 0;
  }
  #header_logo_wrap img {
    width: 100px;
    margin-right: 4px;
  }
  #header_logo_wrap .name {
    font-size: 10px;
  }
}

/*==========
ã‚°ãƒ­ãƒ¼ãƒãƒ«ãƒ¡ãƒ‹ãƒ¥ãƒ¼
==========*/
#global_navigation_wrap {
  height: 100%;
}

#global_navigation {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  /*max-width: 737px;*/
  max-width: 900px;
  height: 100%;
  margin-left: auto;
}

@media screen and (max-width: 1023px) {
  #global_navigation {
    display: none;
  }
}

#global_navigation .menu {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  height: 100%;
  padding: 0 1em;
  position: relative;
  -webkit-transition: background-color 0.25s, color 0.125s;
  transition: background-color 0.25s, color 0.125s;
}

#global_navigation .menu .ttl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

#global_navigation .menu:hover {
  background-color: #0092D8;
  color: #fff;
}

#global_navigation .icon {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

#global_navigation .icon a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

#global_navigation .icon .circle_border,
#global_navigation .icon .circle,
#global_navigation .icon .text {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

#global_navigation .icon:hover .circle_border {
  fill: #0092D8;
}

#global_navigation .icon:hover .circle {
  fill: #fff;
}

#global_navigation .icon:hover .text {
  fill: #0092D8;
}

#global_navigation .child_menu_wrap {
  width: 100vw;
  padding: 40px;
  background-color: #0092D8;
  color: #fff;
  position: absolute;
  top: 100%;
  z-index: 3;
  display: none;
}

@media screen and (max-width: 1184px) {
  #global_navigation .child_menu_wrap {
    padding: 24px;
  }
}

#global_navigation .child_menu_wrap.col_2 {
  max-width: 640px;
  left: -100%;
}

#global_navigation .child_menu_wrap.col_2 .child_menu > * {
  width: 50%;
}

@media screen and (max-width: 1184px) {
  #global_navigation .child_menu_wrap.col_2 {
    max-width: 520px;
  }
}

#global_navigation .child_menu_wrap.col_1 {
  max-width: 400px;
  left: -50%;
}

#global_navigation .child_menu_wrap.col_1 .child_menu > * {
  width: 100%;
}

@media screen and (max-width: 1184px) {
  #global_navigation .child_menu_wrap.col_1 {
    max-width: 320px;
  }
}

#global_navigation .child_menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

#global_navigation .child_menu > * {
  line-height: 48px;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
  padding-left: 24px;
}

#global_navigation .child_menu > *::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3.5px 0 3.5px 6px;
  border-color: transparent transparent transparent #fff;
  margin-right: 0.5em;
  vertical-align: 2px;
}

#global_navigation .child_menu > *:hover {
  opacity: 0.75;
}

/*==========
ãƒãƒ³ãƒã?¼ã‚¬ãƒ¼ãƒ¡ãƒ‹ãƒ¥ãƒ¼
==========*/
#humberger_navigation_wrap {
  display: none;
}

@media screen and (max-width: 1023px) {
  #humberger_navigation_wrap {
    display: block;
    z-index: 99;
  }
}

#humberger_navigation_wrap #humberger_area {
  width: 100%;
  height: calc(100vh - 80px);
  position: absolute;
  overflow-y: scroll;
  margin: 80px 0px 0px;
  top: 0;
  right: -100vw;
  opacity: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  z-index: 9;
}

#humberger_navigation_wrap #humberger_area .inner {
  height: 100%;
}

#humberger_navigation_wrap #humberger_navigation {
  padding-top: 40px;
  padding-bottom: 120px;
  position: relative;
  z-index: 99;
}

#humberger_navigation_wrap #humberger_navigation .menu {
  position: relative;
}

#humberger_navigation_wrap #humberger_navigation .menu span {
  position: relative;
  display: block;
  padding: 1em 0;
  font-weight: 500;
  color: #fff;
  border-bottom: 1px solid #fff;
}

#humberger_navigation_wrap #humberger_navigation .menu span::after {
  content: "";
  display: block;
  width: 27px;
  height: 6px;
  background: center/contain url("../img/common/icon_arrow_01_white.svg") no-repeat;
  position: absolute;
  top: 50%;
  right: 1em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

#humberger_navigation_wrap #humberger_navigation .menu.has_child span::after {
  content: none;
}

#humberger_navigation_wrap #humberger_navigation .menu .child_menu_btn {
  position: absolute;
  top: 0em;
  right: 0em;
  width: 1.75em;
  height: 1.75em;
  padding: 1.75em;
  cursor: pointer;
}

#humberger_navigation_wrap #humberger_navigation .menu .child_menu_btn::before, #humberger_navigation_wrap #humberger_navigation .menu .child_menu_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25em;
  width: 16px;
  height: 1px;
  background-color: #fff;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

#humberger_navigation_wrap #humberger_navigation .menu .child_menu_btn::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}

#humberger_navigation_wrap #humberger_navigation .menu .child_menu_btn.show::before {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

#humberger_navigation_wrap #humberger_navigation .menu .child_menu_btn.show::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
  opacity: 0;
}

#humberger_navigation_wrap #humberger_navigation .menu .child_menu_wrap {
  display: none;
}

#humberger_navigation_wrap #humberger_navigation .menu .child_menu_wrap span::before {
  content: "-";
  padding: 0 0.5em;
}

#humberger_navigation_wrap #humberger_navigation .icon {
  margin-top: 24px;
  text-align: right;
}

#humberger_navigation_wrap #humberger_navigation .icon a {
  display: inline-block;
}

#humberger_navigation_wrap #humberger_navigation .icon .circle_border {
  fill: #fff;
}

#humberger_navigation_wrap #humberger_bg {
  display: block;
  position: fixed;
  width: 100%;
  height: calc(100vh - 80px);
  background-color: #0092D8;
  top: 80px;
  right: -100%;
  -webkit-transition: all 0.25s ease-in;
  transition: all 0.25s ease-in;
  z-index: -1;
}

#humberger_navigation_wrap #humberger_btn {
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: 24px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 24px;
  height: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  cursor: pointer;
  z-index: 99;
}

#humberger_navigation_wrap #humberger_btn span {
  display: block;
  width: 2px;
  height: 100%;
  background-color: #1a1a1a;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform-origin: center;
          transform-origin: center;
}

#humberger_navigation_wrap #humberger_btn span:first-of-type {
  height: 66.66%;
}

#humberger_navigation_wrap.open #humberger_area {
  right: 0;
  opacity: 1;
  -webkit-transition: all 0.25s ease-in 0.25s;
  transition: all 0.25s ease-in 0.25s;
}

#humberger_navigation_wrap.open #humberger_btn {
  width: 30px;
}

#humberger_navigation_wrap.open #humberger_btn span {
  position: absolute;
}

#humberger_navigation_wrap.open #humberger_btn span:nth-child(1) {
  height: 100%;
  left: 50%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

#humberger_navigation_wrap.open #humberger_btn span:nth-child(2) {
  width: 0;
  left: 50%;
  opacity: 0;
}

#humberger_navigation_wrap.open #humberger_btn span:nth-child(3) {
  left: 50%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

#humberger_navigation_wrap.open #humberger_bg {
  right: 0;
}

/*==========
ãƒ•ãƒƒã‚¿ãƒ¼
==========*/
#footer .bg {
  background-color: #F7FCFF;
}

#footer a {
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
}

#footer a:hover {
  opacity: 0.5;
}

#footer_navigation_wrap {
  padding: 80px;
  position: relative;
}

#footer_navigation_wrap .inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}

#footer_navigation_wrap .footer_navigation {
  padding: 1em;
}

#footer_navigation_wrap .footer_navigation .menu {
  line-height: 40px;
  font-weight: 700;
}

#footer_navigation_wrap .footer_navigation .child_menu {
  font-size: 0.875em;
  line-height: 26px;
  color: #4a4a4a;
  margin-top: 0.5em;
}

#footer_navigation_wrap .footer_navigation .child_menu.margin {
  margin-top: 1em;
}

@media screen and (max-width: 1023px) {
  #footer_navigation_wrap {
    padding: 2em 0em 1em;
  }
  #footer_navigation_wrap .inner {
    padding: 0;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  #footer_navigation_wrap .footer_navigation {
    width: 100%;
    padding: 0;
  }
  #footer_navigation_wrap .footer_navigation .menu {
    line-height: 1.5;
    margin-bottom: 0.75em;
  }
  #footer_navigation_wrap .footer_navigation .child_menu {
    line-height: 1.5;
    margin-top: -0.625em;
    margin-bottom: 1.5em;
  }
  #footer_navigation_wrap .footer_navigation .child_menu > * {
    margin-bottom: 0.325em;
  }
  #footer_navigation_wrap .footer_navigation .child_menu.margin {
    margin-top: 0;
  }
}

#footer_company_wrap {
  padding: 56px 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: flex-start;
}

#footer_company_wrap .footer_logo {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  margin-right: 30px;
  margin-top: 8px;
  padding-left: 24px;
  text-align: center;
}

#footer_company_wrap .footer_logo .text {
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-top: 0.625rem;
  text-align: center;
}

#footer_company_wrap .company:not(:last-child) {
  margin-right: 2.5rem;
}

#footer_company_wrap .company .name,
#footer_company_wrap .company .address {
  display: block;
}

#footer_company_wrap .company .name {
  margin-bottom: 0.25em;
  font-weight: 700;
  letter-spacing: 0.06em;
}

#footer_company_wrap .company .address {
  font-size: 0.75em;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 1023px) {
  #footer_company_wrap {
    padding: 40px 0;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    max-width: 80%;
  }
  #footer_company_wrap .company {
    width: 100%;
  }
  #footer_company_wrap .company:not(:last-child) {
    margin-right: 0;
    margin-bottom: 1em;
  }
  #footer_company_wrap .footer_logo {
    padding-left: 0;
    margin-bottom: 1em;
  }
  #footer_company_wrap .footer_logo img {
    margin-top: 0.5em;
  }
  #footer_company_wrap .company {
    margin-bottom: 0;
  }
}

/*==========
ã‚³ãƒ”ã?¼ãƒ©ã‚¤ãƒ?
==========*/
#copyright {
  background-color: #0092D8;
  color: #fff;
  height: 40px;
  line-height: 40px;
  letter-spacing: 0.02em;
  font-size: 13px;
}

#copyright span {
  padding-left: 24px;
}

@media screen and (max-width: 1023px) {
  #copyright {
    font-size: 12px;
  }
  #copyright span {
    padding-left: 0;
  }
}

/*==========
PageToTop
==========*/
#pageTop {
  position: fixed;
  margin: 24px;
  bottom: -100%;
  right: 0;
  z-index: 20;
  -webkit-transition: bottom 0.5s;
  transition: bottom 0.5s;
  width: 70px;
  height: 70px;
  cursor: pointer;
  background-color: #0092D8;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

#pageTop.view {
  bottom: 0;
}

#pageTop::after {
  content: "";
  display: block;
  margin-top: 4px;
  width: 0.75em;
  height: 0.75em;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotateZ(-45deg);
          transform: rotateZ(-45deg);
}

@media screen and (max-width: 1023px) {
  #pageTop {
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
    margin: 16px;
  }
}
/*# sourceMappingURL=style.css.map */

/* å…±é€? 2023.5 */
.d-lg-flex {
  display: flex;
}

.d-lg-flex > * {
  padding-right: 50px;
}

.d-lg-flex > *:last-child {
  padding-right: 0;
}

.justify-content-between {
  justify-content: space-between;
}

.align-items-center {
  align-items: center;
}

ul.cc-3 {
  column-count: 3;
}

ul.d-inline-block li {
  display: inline-block;
  vertical-align: top;
}

.sdgs-logo-list li {
  margin: 0 10px 10px 0;
  width: calc(100% / 9.8);
}

.sdgs-logo-list li:nth-child(9n) {
  margin-right: 0;
}

.mt-5 {
  margin-top: 5em;
}

.mt-2 {
  margin-top: 2em;
}

.mt-125 {
  margin-top: 1.25em;
}

.mb-2 {
  margin-bottom: 2em;
}

#global_navigation .menu.bg-yellow {
  background-color: #F9F72F;
  margin-right: 10px;
  position: relative;
  transition: 0.5s;
}

#global_navigation .menu.bg-yellow:hover {
  background-color: #F9F72F;
  opacity: 0.7;
  color: #000000;
}

#global_navigation .menu.bg-yellow .ttl {
  padding-right: 20px;
  position: relative;
}

#global_navigation .menu.bg-yellow .ttl:after {
  background-image: url("../img/menu-arrow.svg");
  position: absolute;
  content: "";
  top: calc(50% - 8px);
  right: 0;
  width: 16px;
  height: 16px;
}

@media screen and (max-width: 1300px) {
  .exl-pc {
    display: none;
  }

  #header .container > *:first-child {
    width: 200px;
  }
}

@media screen and (max-width: 1023px) {
  .sdgs-logo-list li {
    margin: 0 4px 4px 0;
    width: calc(100% / 9.8);
  }

  .menu.bg-yellow.text_center {
    text-align: left;
  }

  .menu.bg-yellow.text_center br {
    display: none;
  }

  .d-lg-flex {
    display: block;
  }

  .d-lg-flex > * {
    padding-right: 0;
  }

  ul.cc-3 {
    column-count: 1;
  }
}

@media screen and (max-width: 767px) {
  .sdgs-logo-list li, .sdgs-logo-list li:nth-child(9n) {
    margin: 0 2px 2px 0;
    width: 40px;
  }

  .w-80 {
    max-width: 80%;
  }
}

@media screen and (max-width: 670px) {
  .w-3_7 {
    width: calc(100% * 3 / 7);
  }
}
