@charset "UTF-8";
body, html {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 18px;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  line-height: 1.6;
  color: #000;
  -webkit-text-size-adjust: 100%;
  font-weight: 400;
}
@media all and (max-width: 749px) {
  body, html {
    font-size: 15px;
  }
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.76;
  font-weight: 800;
  font-size: 1rem;
}

html, body, div, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

b, strong, th {
  font-weight: normal;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

blockquote, q {
  quotes: none;
}

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

input, textarea {
  margin: 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

input, textarea, select, button {
  font-size: 1rem;
  color: #000;
  font-family: "M PLUS Rounded 1c", sans-serif;
}

button, input[type=submit], input[type=reset], input[type=button] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border: none;
  background-color: transparent;
  font-family: "M PLUS Rounded 1c", sans-serif;
}

/*select::-ms-expand {
	display: none;
}*/
input[type=text], input[type=email], input[type=tel], input[type=search], textarea {
  display: inline-block;
  font-family: "M PLUS Rounded 1c", sans-serif;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: rgba(129, 129, 129, 0.6);
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: rgba(129, 129, 129, 0.6);
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: rgba(129, 129, 129, 0.6);
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: rgba(129, 129, 129, 0.6);
}

input::placeholder, textarea::placeholder {
  color: rgba(129, 129, 129, 0.6);
}

button, input[type=submit], input[type=reset], input[type=button] {
  padding: 0;
  cursor: pointer;
  display: inline-block;
}

ol, ul {
  list-style: none;
}

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

caption, th {
  text-align: left;
}

iframe {
  width: 100%;
  height: 100%;
}

img {
  vertical-align: top;
  image-rendering: -webkit-optimize-contrast;
}

svg {
  vertical-align: top;
}

a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

:focus {
  outline: none;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.drawer-nav {
  position: fixed;
  z-index: 900;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.4s ease-out;
  transition: opacity 0.4s ease-out;
}

.drawer-menu {
  background: #0083D5;
  height: 100vh;
  max-height: 100dvh;
  overflow-y: auto;
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
}

#drawer-overlay {
  background-color: transparent;
  position: fixed;
  z-index: 750;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
}
#drawer-overlay::before {
  content: "";
  width: 1px;
  height: calc(100% + 1px);
  display: block;
}

.drawer-opened #drawer-overlay {
  display: block;
}
.drawer-opened .drawer-nav {
  pointer-events: auto;
  opacity: 1;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

body.drawer-opened {
  overflow-x: clip;
}

.required {
  display: inline-block;
  position: relative;
  top: -1px;
  width: 37px;
  padding-bottom: 1px;
  line-height: 23px;
  background-color: #0083D5;
  border-radius: 20px;
  color: #fff;
  text-align: center;
  font-size: 11px;
  font-weight: 800;
}
@media all and (max-width: 749px) {
  .required {
    width: 35px;
    line-height: 19px;
  }
}

input[type=text], input[type=email], input[type=tel], input[type=password], textarea {
  display: block;
  width: 100%;
  background: #eaeff2;
  font-size: 14px;
  padding: 0 15px;
  border-radius: 5px;
  border: none;
}

input[type=text], input[type=email], input[type=tel], input[type=password] {
  height: 60px;
}

input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #eaeff2;
}
input[type=radio]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #353E43;
  content: "";
}
@media all and (max-width: 749px) {
  input[type=radio] {
    width: 20px;
    height: 20px;
  }
  input[type=radio]:checked:before {
    width: 8px;
    height: 8px;
  }
}

textarea {
  height: 470px;
  resize: vertical;
  padding: 15px;
}

@media all and (max-width: 749px) {
  input[type=text], input[type=email], input[type=tel], input[type=password], textarea {
    border-block-width: 1px;
  }
  input[type=text], input[type=email], input[type=tel], input[type=password] {
    height: 46px;
  }
  textarea {
    height: 294px;
  }
}
.select_01 {
  display: inline-block;
  width: 100%;
  max-width: 263px;
  height: 50px;
  position: relative;
  border: 1px solid #0083D5;
  border-radius: 50px;
  text-align: center;
  overflow: hidden;
}
.select_01_current {
  position: absolute;
  line-height: 48px;
  font-size: 14px;
  font-weight: 800;
  color: #0083D5;
  width: 100%;
  z-index: 100;
  pointer-events: none;
  background-color: #fff;
}
.select_01 select {
  position: relative;
  z-index: 10;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background-color: #fff;
  cursor: pointer;
  border-radius: 50px;
  height: 100%;
  width: 100%;
  text-align: center;
  color: #0083D5;
  font-size: 14px;
}
.select_01::after {
  content: "";
  z-index: 200;
  display: block;
  position: absolute;
  width: 6.41px;
  height: 10px;
  top: calc(50% - 5px);
  right: 22px;
  rotate: 90deg;
  background: url(../img/common/arrow_01_mc.svg) center center no-repeat;
}
@media all and (max-width: 749px) {
  .select_01 {
    max-width: 255px;
  }
  .select_01_current {
    font-size: 13px;
  }
  .select_01 select {
    height: 44px;
    font-size: 13px;
  }
  .select_01::after {
    right: 15px;
  }
}

input[type=submit], button {
  color: #0083D5;
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
}
@media screen and (min-width: 750px) {
  input[type=submit]:hover, button:hover {
    color: #fff;
  }
}

body {
  position: relative;
  background: #F5F5EC;
  color: #000;
  scrollbar-gutter: stable;
}

a {
  text-decoration: none;
}

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

@media all and (max-width: 749px) {
  html {
    scroll-padding-top: 50px;
  }
  .hide_sp {
    display: none !important;
  }
}
@media screen and (min-width: 750px) {
  html {
    scroll-padding-top: 50px;
  }
  .hide_pc {
    display: none !important;
  }
  .page-under {
    padding-top: 50px;
  }
}
#contents {
  overflow: hidden;
  position: relative;
  z-index: 700;
}
.header {
  position: relative;
  height: 50px;
}
.header_logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 0 10px;
  position: absolute;
  top: 15px;
  left: 22px;
}
.header_logo_text {
  -webkit-transform: rotate(0.03deg);
      -ms-transform: rotate(0.03deg);
          transform: rotate(0.03deg);
  display: block;
  color: #000;
  font-weight: 800;
  font-size: 13px;
  line-height: 19px;
}
.header_logo_colab {
  text-align: center;
  margin-bottom: 20px;
}
@media all and (max-width: 749px) {
  .header {
    height: 74px;
  }
  .header_logo {
    gap: 0 7px;
    top: 10px;
    left: 10px;
  }
  .header_logo_img {
    width: 67px;
  }
  .header_logo_text {
    font-size: 10px;
    line-height: 14px;
  }
  .header_logo_colab {
    margin-top: 7px;
    margin-bottom: 40px;
  }
  .header_logo_colab img {
    width: 231.49px;
  }
}
@media screen and (min-width: 750px) {
  .header {
    z-index: 800;
  }
}

.gnav {
  --icon-size: 31px;
  --icon-size-plus: 19px;
}
.gnav_list {
  font-weight: 800;
}
.gnav_list a {
  color: #fff;
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
  -webkit-transform: rotate(0.03deg);
      -ms-transform: rotate(0.03deg);
          transform: rotate(0.03deg);
}
.gnav_list .nav_lv_1 {
  line-height: var(--icon-size);
  font-size: 21px;
}
.gnav_list .nav_lv_1:not(:last-child) {
  margin-bottom: 46px;
}
.gnav_list .nav_lv_1 > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0 18px;
}
.gnav_list .nav_lv_1 > a::before {
  content: "";
  display: block;
  width: var(--icon-size);
  height: var(--icon-size);
  border: 1px solid #fff;
  background: #0083D5 url(../img/common/arrow_01.svg) center center no-repeat;
  background-size: 14px;
  border-radius: 50%;
}
.gnav_list .nav_lv_1 > a em {
  line-height: 1.4;
}
.gnav_list .nav_lv_1 > a i {
  display: block;
  margin: 3px 0 0 5px;
  font-size: 15px;
  color: #FADB57;
}
.gnav_list .nav_lv_1 > a b {
  display: block;
  margin: 3px 0 0 3px;
  font-weight: 800;
  font-size: 28px;
}
.gnav_list .nav_lv_1 > ul {
  margin-top: 25px;
  margin-left: 56px;
}
.gnav_list .nav_lv_2 {
  line-height: var(--icon-size-plus);
  font-weight: 300;
  font-size: 17px;
}
.gnav_list .nav_lv_2:not(:last-child) {
  margin-bottom: 18px;
}
.gnav_list .nav_lv_2 > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 10px;
}
.gnav_list .nav_lv_2 > a::before {
  content: "";
  display: block;
  width: var(--icon-size-plus);
  height: var(--icon-size-plus);
  border: 1px solid #fff;
  background: #0083D5 url(../img/common/icon_plus.svg) center center no-repeat;
  background-size: 9px;
  border-radius: 50%;
}
.gnav_list .gnav_vegecheck i {
  text-indent: -0.4em;
}
@media all and (max-width: 749px) {
  .gnav {
    --icon-size: 24px;
    --icon-size-plus: 14px;
  }
  .gnav_logo {
    height: 150px;
    width: 360px;
    background: url(../img/common/menu_bg_sp.webp) right center no-repeat;
    background-size: contain;
    padding: 15px 0 0 15px;
    margin-bottom: 23px;
  }
  .gnav_logo img {
    width: 159.26px;
  }
  .gnav_list {
    padding: 0 25px 80px 25px;
  }
  .gnav_list .nav_lv_1 {
    font-size: 16px;
  }
  .gnav_list .nav_lv_1:not(:last-child) {
    margin-bottom: 26px;
  }
  .gnav_list .nav_lv_1 > a {
    gap: 0 17px;
  }
  .gnav_list .nav_lv_1 > a::before {
    background-size: 11px;
  }
  .gnav_list .nav_lv_1 > a i {
    margin: 2px 0 0 2px;
    font-size: 12px;
  }
  .gnav_list .nav_lv_1 > a b {
    margin: 0;
    font-size: 22px;
  }
  .gnav_list .nav_lv_1 > ul {
    margin-top: 17px;
    margin-left: 43px;
  }
  .gnav_list .nav_lv_2 {
    font-size: 13px;
  }
  .gnav_list .nav_lv_2:not(:last-child) {
    margin-bottom: 13px;
  }
  .gnav_list .nav_lv_2 > a {
    gap: 0 8px;
  }
  .gnav_list .nav_lv_2 > a::before {
    background-size: 8px;
  }
  .gnav_list .gnav_apps, .gnav_list .gnav_vegecheck {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 750px) {
  .gnav_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 0 5.1976573939vw;
  }
  .gnav_logo {
    height: 100vh;
    width: clamp(206px, 22.8404099561%, 312px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: url(../img/common/menu_bg.webp) right center no-repeat;
    background-size: auto 100%;
    padding: 0 15px;
  }
  .gnav_list {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-line-pack: center;
        align-content: center;
    gap: 0 25px;
    font-size: 21px;
  }
  .gnav_list a {
    -webkit-transition: color 0.3s ease-out;
    transition: color 0.3s ease-out;
  }
  .gnav_list a:hover {
    color: #00CBE5;
  }
  .gnav_list .gnav_top, .gnav_list .gnav_topics, .gnav_list .gnav_contact {
    width: 100%;
  }
  .gnav_list .gnav_topics {
    position: relative;
    top: 10px;
  }
}
@media screen and (min-width: 790px) and (max-width: 1140px) {
  .gnav_list .gnav_apps, .gnav_list .gnav_vegecheck {
    width: calc(50% - 13px);
  }
}

.drawer-toggle {
  position: fixed;
  height: 58px;
  width: 58px;
  top: 15px;
  right: 15px;
  border: 1px solid #fff;
  z-index: 910;
  background-color: #0083D5;
  border-radius: 50%;
}
.drawer-toggle span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  left: 15px;
  height: 2px;
  background: #FADB57;
  width: 26px;
  -webkit-transform-origin: 0;
      -ms-transform-origin: 0;
          transform-origin: 0;
}
.drawer-toggle span:nth-of-type(1) {
  top: 23px;
}
.drawer-toggle span:nth-of-type(2) {
  top: 31px;
}
.drawer-toggle.opened span {
  left: 17px;
}
.drawer-toggle.opened span:nth-of-type(1) {
  rotate: -30deg;
  top: 34px;
}
.drawer-toggle.opened span:nth-of-type(2) {
  rotate: 30deg;
  top: 21px;
}
@media all and (max-width: 749px) {
  .drawer-toggle {
    height: 44px;
    width: 44px;
    top: 10px;
    right: 10px;
  }
  .drawer-toggle span {
    left: 11px;
    height: 2px;
    width: 22px;
  }
  .drawer-toggle span:nth-of-type(1) {
    top: 18px;
  }
  .drawer-toggle span:nth-of-type(2) {
    top: 24px;
  }
  .drawer-toggle.opened span {
    left: 12px;
  }
  .drawer-toggle.opened span:nth-of-type(1) {
    rotate: -30deg;
    top: 26px;
  }
  .drawer-toggle.opened span:nth-of-type(2) {
    rotate: 30deg;
    top: 15px;
  }
}
@media screen and (min-width: 750px) {
  .drawer-toggle {
    -webkit-transition: background-color 0.3s ease-out;
    transition: background-color 0.3s ease-out;
  }
  .drawer-toggle:hover {
    background-color: #00CBE5;
  }
}

@media all and (max-width: 749px) {
  body.drawer-opened .header {
    -ms-scroll-chaining: none;
        overscroll-behavior: none;
    overflow-x: scroll;
  }
  body.drawer-opened .header::after {
    content: "";
    width: 1px;
    height: calc(100% + 1px);
    display: block;
  }
}
#pageTop {
  display: none;
  position: fixed;
  z-index: 790;
  right: 10px;
  bottom: 10px;
  height: 34px;
  width: 34px;
  background: #0083D5 url(../img/common/arrow_01.svg) center center no-repeat;
  background-size: 15.42px auto;
  border: 1px solid #fff;
  border-radius: 50%;
  font-size: 1px;
  color: transparent;
  rotate: -90deg;
}
@media all and (max-width: 749px) {
  #pageTop {
    height: 34px;
    width: 34px;
    background-size: 11px auto;
  }
}
@media screen and (min-width: 750px) {
  #pageTop {
    -webkit-transition: background-color 0.3s ease-out;
    transition: background-color 0.3s ease-out;
  }
  #pageTop:hover {
    background-color: #00CBE5;
  }
}

.footer {
  position: relative;
  z-index: 750;
  background-color: #F5F5EC;
  margin-top: 100px;
  padding-bottom: 60px;
  text-align: center;
}
.footer_bg {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 97px;
  width: 100%;
  height: calc(100% - 97px);
  border-radius: 220px 220px 0px 0px;
  overflow: hidden;
}
.footer_bg .fixd_bg {
  display: block;
  height: calc(100% + 60px);
  width: 100%;
  background: url(../img/common/footer_bg.webp) center center no-repeat;
  background-size: cover;
}
.footer_logo {
  margin-bottom: 40px;
}
.footer_contact {
  -webkit-transform: rotate(0.03deg);
      -ms-transform: rotate(0.03deg);
          transform: rotate(0.03deg);
  font-weight: 800;
}
.footer_contact_btn {
  margin: 25px auto 0;
}
.footer_copyright {
  margin-top: 60px;
}
.footer_copyright span {
  display: block;
  margin-bottom: 0.5em;
  font-size: 14px;
}
.footer_copyright small {
  display: block;
  font-size: 12px;
}
@media all and (max-width: 749px) {
  .footer {
    margin-top: 80px;
    padding: 0 15px 45px;
  }
  .footer_bg {
    top: 84px;
    height: calc(100% - 84px);
    border-radius: 100px 100px 0px 0px;
  }
  .footer_bg b {
    height: calc(100% + 60px);
    background-image: url(../img/common/footer_bg_sp.webp);
  }
  .footer_logo {
    margin-bottom: 32px;
  }
  .footer_logo img {
    width: 231.49px;
  }
  .footer_contact_btn.btn_01 {
    margin: 17px auto 0;
    font-size: 14px;
    height: 47px;
    width: 195px;
  }
  .footer_copyright {
    margin-top: 30px;
  }
  .footer_copyright span {
    font-size: 12px;
  }
}
.inner_01 {
  max-width: 1038px;
  margin: 0 auto;
}
.inner_02 {
  max-width: 860px;
  margin: 0 auto;
}
@media all and (max-width: 749px) {
  .inner_02 {
    margin: 0 15px;
  }
}
@media screen and (min-width: 750px) {
  .l_c2_01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 0 30px;
  }
  .l_c2_01.__reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .l_c2_01_child {
    width: calc(50% - 15px);
  }
}

.frame_01 {
  padding: 20px;
  border-radius: 4px;
  background: #ecf4f7;
}
@media all and (max-width: 749px) {
  .frame_01 {
    padding: 12px 15px 15px;
  }
}

.textblock_01 > p:not(:last-child), .textblock_01 > ul:not(:last-child), .textblock_01 > ol:not(:last-child), .textblock_01 > dl:not(:last-child) {
  margin-bottom: 1.68em;
}
.textblock_01_link li {
  -webkit-transform: rotate(0.03deg);
      -ms-transform: rotate(0.03deg);
          transform: rotate(0.03deg);
  font-weight: 400;
}
.textblock_01_link li:not(:last-child) {
  margin-bottom: 0.8em;
}
.textblock_01 strong {
  font-weight: 800;
}
@media all and (max-width: 749px) {
  .textblock_01 > p:not(:last-child), .textblock_01 > ul:not(:last-child), .textblock_01 > ol:not(:last-child), .textblock_01 > dl:not(:last-child) {
    margin-bottom: 1em;
  }
}

.list_mark_01:not(:last-child) {
  margin-bottom: 1.5em;
}
.list_mark_01 li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.list_mark_01 li:not(:last-child) {
  margin-bottom: 0.3888888889em;
}
.list_mark_01 li::before {
  content: "・";
  width: 1em;
  max-width: 1em;
}

.accordion_01 {
  margin-bottom: 30px;
}
.accordion_01_trigger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 23px 15px 27px;
  background: #0083D5;
  -webkit-box-shadow: 0px 2px 15px rgba(16, 87, 93, 0.3);
          box-shadow: 0px 2px 15px rgba(16, 87, 93, 0.3);
  color: #fff;
  line-height: 1.3;
  font-size: 30px;
  cursor: pointer;
}
.accordion_01_trigger_icon {
  --acicon-size: 50px;
  position: relative;
  width: var(--acicon-size);
  height: var(--acicon-size);
  min-width: var(--acicon-size);
  display: block;
  border: 1px solid #fff;
  border-radius: 50%;
  -webkit-transition: rotate 0.3s ease-out;
  transition: rotate 0.3s ease-out;
}
.accordion_01_trigger_icon::before, .accordion_01_trigger_icon::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  left: calc(50% - 15px);
  display: block;
  width: 30px;
  height: 2px;
  border-radius: 2px;
  background-color: #FADB57;
}
.accordion_01_trigger_icon::after {
  rotate: 90deg;
}
.accordion_01_trigger[aria-expanded=true] .accordion_01_trigger_icon {
  rotate: 135deg;
}
@media all and (max-width: 749px) {
  .accordion_01 {
    border-radius: 10px;
    margin-bottom: 2px;
  }
  .accordion_01_trigger {
    -webkit-box-shadow: 0px 2px 8px rgba(16, 87, 93, 0.3);
            box-shadow: 0px 2px 8px rgba(16, 87, 93, 0.3);
    font-size: 20px;
    padding: 10px 15px;
  }
  .accordion_01_trigger_icon {
    --acicon-size: 34px;
  }
  .accordion_01_trigger_icon::before, .accordion_01_trigger_icon::after {
    width: 18px;
    left: calc(50% - 9px);
  }
  .accordion_01_panel {
    display: none;
    padding: 15px;
    background: #fff;
    border-radius: 0 0 15px 15px;
    margin-bottom: 13px;
  }
}
@media screen and (min-width: 750px) {
  .accordion_01 {
    background: #fff;
    border-radius: 15px;
  }
  .accordion_01_trigger {
    border-radius: 15px;
  }
  .accordion_01_trigger:hover .accordion_01_trigger_icon {
    background-color: #00CBE5;
  }
  .accordion_01_panel {
    padding: 30px 30px 40px;
  }
}

.floatingbnr_app {
  position: fixed;
  z-index: 790;
  bottom: 60px;
  width: 308px;
  height: 88px;
  border-radius: 6px 0px 0px 6px;
  background-color: #fff;
  overflow: hidden;
  -webkit-box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.2);
}
.floatingbnr_app a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: 10px 15px 10px 10px;
  color: #000;
  font-weight: 800;
  font-size: 15px;
}
.floatingbnr_app a::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #0083D5 url(../img/common/arrow_01.svg) center center no-repeat;
  background-size: 11px auto;
}
.floatingbnr_app a img {
  border-radius: 11px;
  -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
}
.floatingbnr_app a span {
  line-height: 1.4;
  letter-spacing: -0.01em;
  text-indent: -0.4em;
  -webkit-transform: rotate(0.03deg);
      -ms-transform: rotate(0.03deg);
          transform: rotate(0.03deg);
}
@media all and (max-width: 749px) {
  .floatingbnr_app {
    left: 0;
    bottom: 10px;
    width: 255px;
    height: 66px;
    border-radius: 0px 6px 6px 0px;
  }
  .floatingbnr_app a {
    padding: 10px;
    font-size: 14px;
  }
  .floatingbnr_app a img {
    width: 46px;
    height: 46px;
  }
}
@media screen and (min-width: 750px) {
  .floatingbnr_app {
    right: 0;
  }
  .floatingbnr_app a {
    -webkit-transition: color 0.3s ease-out;
    transition: color 0.3s ease-out;
  }
  .floatingbnr_app a::after {
    -webkit-transition: background-color 0.3s ease-out;
    transition: background-color 0.3s ease-out;
  }
  .floatingbnr_app a:hover {
    color: #00CBE5;
  }
  .floatingbnr_app a:hover::after {
    background-color: #00CBE5;
  }
}

.topics_list_item {
  border-radius: 20px;
  background: #fff;
  -webkit-box-shadow: 0px 3px 6px rgba(61, 158, 165, 0.03);
          box-shadow: 0px 3px 6px rgba(61, 158, 165, 0.03);
}
.topics_list_item:not(:last-child) {
  margin-bottom: 2px;
}
.topics_list_item a {
  padding: 23px 30px;
  color: #000;
  font-size: 14px;
  -webkit-transform: rotate(0.03deg);
      -ms-transform: rotate(0.03deg);
          transform: rotate(0.03deg);
}
.topics_list_date {
  color: #7B7B7B;
}
@media all and (max-width: 749px) {
  .topics_list_item {
    border-radius: 12px;
  }
  .topics_list_item a {
    display: block;
    padding: 10px 15px;
    color: #000;
  }
  .topics_list_date {
    display: block;
    margin-bottom: 4px;
    font-size: 12px;
  }
  .topics_list_title {
    font-size: 13px;
  }
}
@media screen and (min-width: 750px) {
  .topics_list_item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 0 3.8535645472%;
    -webkit-transition: color 0.3s ease-out;
    transition: color 0.3s ease-out;
  }
  .topics_list_item a::after {
    content: "";
    display: block;
    width: 10px;
    min-width: 10px;
    margin-left: auto;
    background: url(../img/common/arrow_02.svg) center center no-repeat;
    background-size: contain;
  }
  .topics_list_item a:hover {
    color: #00CBE5;
  }
}

.wp_post {
  -webkit-transform: rotate(0.03deg);
      -ms-transform: rotate(0.03deg);
          transform: rotate(0.03deg);
}
.wp_post h1 {
  font-size: 30px;
  line-height: 146.6666666667%;
}
.wp_post_content {
  font-size: 16px;
  --list-mark-w:20px;
}
.wp_post_content h2, .wp_post_content h3, .wp_post_content h4 {
  font-weight: 800;
}
.wp_post_content h2 {
  font-size: 24px;
  color: #fff;
  line-height: 140%;
  border-radius: 5px;
  background-color: #0083D5;
  padding: 10px 15px 13px;
}
.wp_post_content h2:not(:first-child) {
  margin-top: 80px;
}
.wp_post_content h3 {
  font-size: 20px;
  margin-top: 50px;
  margin-bottom: 32px;
  line-height: 155.5555555556%;
}
.wp_post_content p, .wp_post_content ul, .wp_post_content ol, .wp_post_content dl, .wp_post_content figure, .wp_post_content .frame {
  margin-top: 40px;
}
.wp_post_content p:not(:last-child), .wp_post_content ul:not(:last-child), .wp_post_content ol:not(:last-child), .wp_post_content dl:not(:last-child), .wp_post_content figure:not(:last-child), .wp_post_content .frame:not(:last-child) {
  margin-bottom: 40px;
}
.wp_post_content ul > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.wp_post_content ul > li::before {
  content: "●";
  font-size: 13px;
  padding-top: 5px;
  width: var(--list-mark-w);
  min-width: var(--list-mark-w);
  max-width: var(--list-mark-w);
}
.wp_post_content ol {
  counter-reset: list_num_01 0;
}
.wp_post_content ol > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.wp_post_content ol > li::before {
  counter-increment: list_num_01 1;
  content: counter(list_num_01) ".";
  color: #FF5000;
  font-weight: 500;
  width: var(--list-mark-w);
  min-width: var(--list-mark-w);
  max-width: var(--list-mark-w);
}
.wp_post_content iframe {
  display: block;
  width: 100%;
  height: 100%;
}
.wp_post_content video {
  display: block;
  width: 100%;
}
.wp_post_content img {
  display: block;
  margin: 0 auto;
}
.wp_post_content figcaption, .wp_post_content .wp-caption-text, .wp_post_content .caption {
  margin-top: 10px;
  font-size: 14px;
  color: #7B7B7B;
  text-align: left;
  line-height: 1.6;
}
.wp_post_content .caption {
  display: inline-block;
}
.wp_post_content b, .wp_post_content strong {
  font-weight: 800;
}
.wp_post_content u {
  text-decoration: underline;
  text-underline-offset: 0.25em;
  text-decoration-color: #83716a;
}
.wp_post_content a {
  color: #0083D5;
  text-decoration: underline;
  text-decoration-color: #0083D5;
  text-underline-offset: 3px;
}
.wp_post_content a[target=_blank] {
  margin-right: 5px;
}
.wp_post_content a[target=_blank]::before {
  width: calc(100% - 14px);
}
.wp_post_content a[target=_blank]::after {
  content: "";
  display: inline-block;
  position: relative;
  top: -1px;
  width: 9px;
  height: 9px;
  margin-left: 5px;
  background: url(../img/common/icon_blank.svg) center center no-repeat;
  background-size: contain;
}
.wp_post_content sup {
  font-size: 0.66em;
}
.wp_post_content .frame {
  padding: 20px;
  background: #F2F6F8;
  border-radius: 5px;
}
.wp_post_content .__provider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.wp_post_content .__provider dt {
  color: #79858D;
  margin-top: 3px;
}
.wp_post_content .__provider dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: calc(100% - 8em);
  margin-top: 3px;
}
.wp_post_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media all and (max-width: 749px) {
  .wp_post h1 {
    font-size: 26px;
  }
  .wp_post_content {
    font-size: 14px;
  }
  .wp_post_content h2 {
    padding: 8px 10px 10px;
    border-radius: 3px;
    font-size: 20px;
  }
  .wp_post_content h2:not(:first-child) {
    margin-top: 60px;
  }
  .wp_post_content h3 {
    margin-top: 30px;
    font-size: 18px;
    margin-bottom: 25px;
  }
  .wp_post_content p, .wp_post_content ul, .wp_post_content ol, .wp_post_content dl, .wp_post_content figure {
    margin-top: 25px;
  }
  .wp_post_content p:not(:last-child), .wp_post_content ul:not(:last-child), .wp_post_content ol:not(:last-child), .wp_post_content dl:not(:last-child), .wp_post_content figure:not(:last-child) {
    margin-bottom: 25px;
  }
  .wp_post_content img {
    max-width: 100%;
    max-height: 500px;
  }
  .wp_post_content figcaption {
    margin-top: 5px;
    font-size: 12px;
  }
  .wp_post_content .frame {
    padding: 10px 12px;
  }
  .wp_post_content .__provider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .wp_post_content .__provider dt, .wp_post_content .__provider dd {
    margin-top: 1px;
  }
  .wp_post_nav {
    font-size: 14px;
  }
}
@media screen and (min-width: 750px) {
  .wp_post a:hover::before {
    -webkit-animation: link_u_anim 0.5s ease-out;
            animation: link_u_anim 0.5s ease-out;
  }
  .wp_post a[target=_blank]:hover::before {
    -webkit-animation: link_u_anim_blank 0.5s ease-out;
            animation: link_u_anim_blank 0.5s ease-out;
  }
}

.pagenation {
  --pagenav-arrow-w:44px;
  margin-top: 60px;
}
.pagenation .wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 6px;
}
.pagenation a, .pagenation .current {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
}
.pagenation .current, .pagenation .page {
  color: #000;
  font-size: 16px;
  height: var(--pagenav-arrow-w);
  width: var(--pagenav-arrow-w);
}
.pagenation .current {
  font-weight: 800;
}
.pagenation .extend {
  width: var(--pagenav-arrow-w);
  text-align: center;
}
.pagenation .previouspostslink, .pagenation .nextpostslink, .pagenation .backtolist {
  position: relative;
}
.pagenation .previouspostslink, .pagenation .nextpostslink {
  font-size: 1px;
  width: var(--pagenav-arrow-w);
  height: var(--pagenav-arrow-w);
  min-width: var(--pagenav-arrow-w);
  color: transparent;
}
.pagenation .previouspostslink::after, .pagenation .nextpostslink::after {
  content: "";
  position: absolute;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #fff;
  border-radius: 50%;
  background: #0083D5 url(../img/common/arrow_01.svg) center center no-repeat;
  background-size: 19.8px auto;
  -webkit-transition: background-color 0.3s ease-out;
  transition: background-color 0.3s ease-out;
}
.pagenation .previouspostslink {
  margin-right: min(5%, 27px);
}
.pagenation .previouspostslink::after {
  rotate: 180deg;
}
.pagenation .nextpostslink {
  margin-left: min(5%, 27px);
}
.pagenation.__is_single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 0 50px;
}
.pagenation.__is_single > div {
  width: var(--pagenav-arrow-w);
}
.pagenation.__is_single .previouspostslink, .pagenation.__is_single .nextpostslink {
  margin: 0;
}
@media all and (max-width: 749px) {
  .pagenation {
    margin-left: 15px;
    margin-right: 15px;
  }
  .pagenation.__is_single {
    gap: 0 40px;
  }
  .pagenation .wp-pagenavi {
    gap: 0 3px;
  }
}
@media screen and (min-width: 750px) {
  .pagenation a.page {
    -webkit-transition: color 0.3s ease-out, background-color 0.3s ease-out, background-image 0.3s ease-out;
    transition: color 0.3s ease-out, background-color 0.3s ease-out, background-image 0.3s ease-out;
  }
  .pagenation a.page:hover {
    color: #00CBE5;
  }
  .pagenation a.page:hover::after {
    background-color: #00CBE5;
  }
  .pagenation .previouspostslink:hover::after, .pagenation .nextpostslink:hover::after {
    background-color: #00CBE5;
  }
}

@media screen and (min-width: 750px) {
  .fade {
    -webkit-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
  }
  .fade:hover {
    opacity: 0.7;
  }
}
[data-inview], [data-inview_ac] {
  opacity: 0;
}

[data-inview=poyon], [data-inview_ac=poyon] {
  scale: 0;
}

.title_01 {
  margin-bottom: 35px;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.16;
}
.title_01_badge {
  display: block;
  position: relative;
  left: -23px;
  margin-bottom: 16px;
}
.title_01 i, .title_01 b {
  display: block;
}
.title_01 i {
  font-size: 30px;
  color: #0083D5;
  margin-bottom: 9px;
}
.title_01 b {
  font-size: 50px;
  font-weight: 800;
}
@media all and (max-width: 749px) {
  .title_01 {
    margin: 0 15px 10px;
  }
  .title_01_badge {
    width: 78px;
    left: -5px;
    margin-bottom: 8px;
  }
  .title_01 i {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .title_01 b {
    font-size: 30px;
    line-height: 1.4;
  }
}

.title_02 {
  margin-bottom: 15px;
  line-height: 1.5;
  font-weight: 800;
  font-size: 16px;
  -webkit-transform: rotate(0.03deg);
      -ms-transform: rotate(0.03deg);
          transform: rotate(0.03deg);
}
.title_02::before {
  content: "○";
}
@media all and (max-width: 749px) {
  .title_02 {
    margin-bottom: 13px;
    font-size: 14px;
  }
}

.link_u {
  color: #0083D5;
  text-decoration: underline;
  text-decoration-color: #0083D5;
  text-underline-offset: 3px;
}
@media screen and (min-width: 750px) {
  .link_u {
    -webkit-transition: color 0.3s ease-out, text-decoration-color 0.3s ease-out;
    transition: color 0.3s ease-out, text-decoration-color 0.3s ease-out;
  }
  .link_u:hover {
    color: #00CBE5;
    text-decoration-color: #00CBE5;
  }
}

.arrow_02 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 0 8px;
  font-size: 16px;
  color: #0083D5;
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
}
.arrow_02::before {
  content: "";
  position: relative;
  top: 0.15em;
  width: 21px;
  height: 21px;
  min-width: 21px;
  background: url(../img/common/arrow_02.svg) center center no-repeat;
  background-size: 11px auto;
  border: 1px solid #0083D5;
  border-radius: 50%;
}
@media all and (max-width: 749px) {
  .arrow_02 {
    gap: 6px;
    font-size: 14px;
  }
  .arrow_02::before {
    width: 18px;
    height: 18px;
    min-width: 18px;
    background-size: 8.16px auto;
  }
}
@media screen and (min-width: 750px) {
  .arrow_02:hover {
    color: #00CBE5;
  }
}

.icon_new {
  display: inline-block;
  width: 38px;
  margin-right: 5px;
  line-height: 22px;
  border-radius: 3px;
  background: #ff5000;
  color: #fff;
  font-weight: 800;
  text-align: center;
  font-size: 12px;
  position: relative;
  top: -0.25em;
}
@media all and (max-width: 749px) {
  .icon_new {
    width: 33px;
    line-height: 18px;
    border-radius: 2px;
    font-size: 10px;
  }
}

.btn_01 {
  --btn_01-height:60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: var(--btn_01-height);
  width: 248px;
  border-radius: 4px;
  background: #0083D5;
  -webkit-box-shadow: 0px 2px 15px rgba(16, 87, 93, 0.3);
          box-shadow: 0px 2px 15px rgba(16, 87, 93, 0.3);
  text-align: center;
  color: #fff;
  font-weight: 800;
}
.btn_01::before {
  content: "";
  display: block;
  width: 34px;
  height: 34px;
  position: absolute;
  left: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 1px solid #fff;
  border-radius: 50%;
  background: url(../img/common/arrow_01.svg) center center no-repeat;
  background-size: 15px auto;
}
.btn_01.__down::before {
  rotate: 90deg;
  -webkit-transform-origin: 50% 0;
      -ms-transform-origin: 50% 0;
          transform-origin: 50% 0;
}
.btn_01.__gotolist {
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media all and (max-width: 749px) {
  .btn_01 {
    --btn_01-height:44px;
    font-size: 13px;
  }
  .btn_01::before {
    width: 27px;
    height: 27px;
    left: 9px;
    background-size: 11px auto;
  }
  .btn_01.__gotolist {
    width: 98px;
    padding-left: 30px;
  }
}
@media screen and (min-width: 750px) {
  .btn_01 {
    -webkit-transition: background-color 0.3s ease-out;
    transition: background-color 0.3s ease-out;
  }
  .btn_01:hover {
    background-color: #00CBE5;
  }
  .btn_01.__gotolist {
    --btn_01-height:44px;
    width: 128px;
    font-size: 14px;
  }
  .btn_01.__gotolist::before {
    width: 24px;
    height: 24px;
    left: 10px;
    background-size: 7.5px auto;
  }
}

.align_center {
  text-align: center;
}

.mt_5 {
  margin-top: 5px;
}

.mb_5 {
  margin-bottom: 5px;
}

.ml_5 {
  margin-left: 5px;
}

.mr_5 {
  margin-right: 5px;
}

.mt_10 {
  margin-top: 10px;
}

.mb_10 {
  margin-bottom: 10px;
}

.ml_10 {
  margin-left: 10px;
}

.mr_10 {
  margin-right: 10px;
}

.mt_15 {
  margin-top: 15px;
}

.mb_15 {
  margin-bottom: 15px;
}

.ml_15 {
  margin-left: 15px;
}

.mr_15 {
  margin-right: 15px;
}

.mt_20 {
  margin-top: 20px;
}

.mb_20 {
  margin-bottom: 20px;
}

.ml_20 {
  margin-left: 20px;
}

.mr_20 {
  margin-right: 20px;
}

.mt_25 {
  margin-top: 25px;
}

.mb_25 {
  margin-bottom: 25px;
}

.ml_25 {
  margin-left: 25px;
}

.mr_25 {
  margin-right: 25px;
}

.mt_30 {
  margin-top: 30px;
}

.mb_30 {
  margin-bottom: 30px;
}

.ml_30 {
  margin-left: 30px;
}

.mr_30 {
  margin-right: 30px;
}

.mt_35 {
  margin-top: 35px;
}

.mb_35 {
  margin-bottom: 35px;
}

.ml_35 {
  margin-left: 35px;
}

.mr_35 {
  margin-right: 35px;
}

.mt_40 {
  margin-top: 40px;
}

.mb_40 {
  margin-bottom: 40px;
}

.ml_40 {
  margin-left: 40px;
}

.mr_40 {
  margin-right: 40px;
}

.mt_45 {
  margin-top: 45px;
}

.mb_45 {
  margin-bottom: 45px;
}

.ml_45 {
  margin-left: 45px;
}

.mr_45 {
  margin-right: 45px;
}

.mt_50 {
  margin-top: 50px;
}

.mb_50 {
  margin-bottom: 50px;
}

.ml_50 {
  margin-left: 50px;
}

.mr_50 {
  margin-right: 50px;
}

.note_01 {
  color: #7B7B7B;
}

.fc_red {
  color: #F00000 !important;
}

.bold {
  font-weight: 800;
}

.underline {
  text-decoration: underline;
}

.fz_13 {
  font-size: 13px;
}
.fz_14 {
  font-size: 14px;
}
@media all and (max-width: 749px) {
  .fz_13 {
    font-size: 12px;
  }
  .fz_14 {
    font-size: 13px;
  }
}

sup.reg {
  font-size: 0.65em;
  position: relative;
  top: 0.1em;
}

.brackets_open {
  margin-left: -0.13em;
  font-weight: normal;
}
.brackets_close {
  letter-spacing: -0.13em;
  font-weight: normal;
}

@media all and (max-width: 749px) {
  .bracket_indent:not(.__pc_only) {
    display: inline-block;
    text-indent: -0.5em;
  }
}
@media screen and (min-width: 750px) {
  .bracket_indent:not(.__sp_only) {
    display: inline-block;
    text-indent: -0.4em;
  }
}

.appicon {
  width: 68px;
  border-radius: 11px;
  background-color: #122D4E;
  -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
}
@media all and (max-width: 749px) {
  .appicon {
    width: 60px;
    border-radius: 8px;
  }
}

.bnr_app_dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 0 12px;
}
@media all and (max-width: 749px) {
  .bnr_app_dl img {
    width: 112px;
  }
}
@media screen and (min-width: 750px) {
  .bnr_app_dl {
    min-width: 281px;
  }
}/*# sourceMappingURL=common.css.map */