@charset "UTF-8";
/* ======================================================================
 common style index
・reset
・setting
・mixin
・base
・utility
・component
・layout
====================================================================== */
/* ======================================================================
 reset
====================================================================== */
html {
  overflow-y: scroll;
}

body {
  line-height: 1;
  color: #000;
}

/* html5doctor.com Reset Stylesheet v1.6.1
  Last Updated: 2010-09-17 Author: Richard Clark - http://richclarkdesign.com Twitter: @rich_clark */
abbr, address, article, aside, audio, b, blockquote, body, canvas, caption, cite, code, dd, del, details,
dfn, div, dl, dt, em, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup,
html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, p, pre, q, samp, section,
small, span, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, ul, var, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:after, blockquote:before, q:after, q:before {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/* YUI 3.4.1 (build 4118) Copyright 2011 Yahoo! Inc. All rights reserved.
Licensed under the BSD License. http://yuilibrary.com/license/ */
/* ======================================================================
 setting
====================================================================== */
/* ======================================================================
 base
====================================================================== */
html {
  font-size: 62.5%;
  margin-top: 0 !important;
  scroll-behavior: auto !important;
}
html.is-loading {
  opacity: 0;
  pointer-events: none;
  width: 100%;
}

body {
  position: relative;
  color: #000;
  font-family: "Noto Sans JP",serif;
  word-wrap: break-word;
  word-break: break-all;
  -webkit-text-size-adjust: 100%;
  min-width: 1200px;
}
@media screen and (max-width: 768px) {
  body {
    min-width: initial;
  }
}

/* スクロールロック用 */
body.menu-open {
  position: fixed;
  width: 100%;
}

.no-scroll {
  overflow: hidden;
}

html, body {
  width: 100%;
  height: 100%;
}

.page {
  width: 100%;
  margin: 0 auto;
}

/* border-box */
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* h1 - h6 */
h1, h2, h3, h4, h5, h6 {
  font-size: 1em;
}

/* a */
a:link {
  text-decoration: none;
  cursor: pointer;
}
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
a:active {
  text-decoration: none;
}

a[href^="tel"] {
  color: #241E1C;
}

/* Text Highlight */
/* button */
button {
  display: block;
  outline: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

/* input */
input, textarea, select {
  display: block;
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  border-image: none;
  background: transparent;
  font-family: inherit;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
}
input::-ms-expand, textarea::-ms-expand, select::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
}

select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #241E1C;
}

/* placeholder */
input:placeholder-shown, textarea:placeholder-shown {
  color: #241E1C;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #241E1C;
}
input:-moz-placeholder, textarea:-moz-placeholder {
  color: #241E1C;
  opacity: 1;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: #241E1C;
  opacity: 1;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #241E1C;
}
input:focus:placeholder-shown, textarea:focus:placeholder-shown {
  color: #241E1C;
}
input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
  color: #241E1C;
}
input:focus:-moz-placeholder, textarea:focus:-moz-placeholder {
  color: #241E1C;
  opacity: 1;
}
input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
  color: #241E1C;
  opacity: 1;
}
input:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder {
  color: #241E1C;
}

img {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* ======================================================================
 utility
====================================================================== */
/* =================================
 layout
================================= */
.cf {
  *zoom: 1;
}
.cf:after {
  display: block;
  visibility: hidden;
  clear: both;
  overflow: hidden;
  height: 0;
  content: '\0020';
}

.u_pc {
  display: block;
}

.u_sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .u_pc {
    display: none;
  }

  .u_sp {
    display: block;
  }
}
.u_fixed {
  position: fixed;
  top: 0;
  left: 0;
}

.u_body_fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

/* =================================
 text pt
================================= */
.u_roboto {
  font-family: "Roboto",serif;
}

.u_bold {
  font-weight: bold;
}

.u_txt_1 {
  font-size: 1.4em;
  line-height: 1.8;
}

.u_txt_1_1 {
  font-size: 1.6em;
  line-height: 2;
}

.u_txt_2 {
  font-size: 1.8em;
  line-height: 1.55;
  letter-spacing: .1em;
}
@media screen and (max-width: 768px) {
  .u_txt_2 {
    font-size: 1.6em;
  }
}

.u_txt_3 {
  font-size: 1.6em;
  line-height: 1.5;
  letter-spacing: .1em;
}

.u_txt_4 {
  font-size: 2em;
  line-height: 1.9;
}

.u_txt_5 {
  font-size: 2.4em;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .u_txt_5 {
    font-size: 2.2em;
    line-height: 1.6;
  }
}

/* =================================
 text weight
================================= */
.u_lighter {
  font-weight: lighter;
}

.u_bold {
  font-weight: bold;
}

/* =================================
 text marker
================================= */
.u_marker_1_1 {
  background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmY2NiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZmZmY2NiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background: -moz-linear-gradient(top, #ffff66 0%, #ffff66 100%);
  background: -webkit-linear-gradient(top, #ffff66 0%, #ffff66 100%);
  background: linear-gradient(to bottom, #ffff66 0%, #ffff66 100%);
}

.u_marker_1_2 {
  background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjQwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmZmNjYiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 40%, #ffff66 100%);
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 40%, #ffff66 100%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 40%, #ffff66 100%);
}

/* =================================
 box-shadow
================================= */
.u_box_shadow_1 {
  -moz-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

/* =================================
 gradation
================================= */
.u_gradient_1 {
  background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2E5ZTlmMyIvPjxzdG9wIG9mZnNldD0iMTAlIiBzdG9wLWNvbG9yPSIjYTllOWYzIi8+PHN0b3Agb2Zmc2V0PSIyNSUiIHN0b3AtY29sb3I9IiMyZDlkYWUiLz48c3RvcCBvZmZzZXQ9IjM3JSIgc3RvcC1jb2xvcj0iIzJkOWRhZSIvPjxzdG9wIG9mZnNldD0iNTAlIiBzdG9wLWNvbG9yPSIjMmQ5ZGFlIi8+PHN0b3Agb2Zmc2V0PSI4MyUiIHN0b3AtY29sb3I9IiMyZDlkYWUiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNiZGY1ZmQiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
  background: -moz-linear-gradient(270deg, #a9e9f3 0%, #a9e9f3 10%, #2d9dae 25%, #2d9dae 37%, #2d9dae 50%, #2d9dae 83%, #bdf5fd 100%);
  background: -webkit-linear-gradient(270deg, #a9e9f3 0%, #a9e9f3 10%, #2d9dae 25%, #2d9dae 37%, #2d9dae 50%, #2d9dae 83%, #bdf5fd 100%);
  background: linear-gradient(180deg, #a9e9f3 0%, #a9e9f3 10%, #2d9dae 25%, #2d9dae 37%, #2d9dae 50%, #2d9dae 83%, #bdf5fd 100%);
}

/* =================================
 animation
================================= */
/* ======================================================================
  component
====================================================================== */
/* =================================
  title
================================= */
@media screen and (max-width: 768px) {
  .c_ttl_1 {
    padding: 0 4.6875vw;
  }
}
.c_ttl_1 .en {
  display: block;
  color: #0B5CFF;
  font-size: 14px;
  font-family: "Special Gothic Expanded One",serif;
}
@media screen and (max-width: 768px) {
  .c_ttl_1 .en {
    font-size: 12px;
  }
}
.c_ttl_1 .ja {
  display: block;
  font-size: 32px;
  font-weight: 500;
  padding: 10px 0 23px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c_ttl_1 .ja {
    font-size: 24px;
    line-height: 1.4;
    padding: 5px 0 15px;
  }
}
.c_ttl_1 .ja:before {
  position: absolute;
  content: "";
  width: 60px;
  height: 3px;
  bottom: 0;
  left: 0;
  border-radius: 999px;
  background: #0B5CFF;
}

/* =================================
  tag
================================= */
.c_tags_1 {
  display: flex;
  align-items: center;
  gap: 0 10px;
}
.c_tags_1_tag {
  background: #01629E;
  border-radius: 3px;
  color: #fff;
  font-size: 12px;
  padding: 5px 10px;
}
.c_tags_1_date {
  font-size: 14px;
  color: #989898;
}

/* =================================
  buttons
================================= */
.c_btn_1 {
  padding: 10px 28px 11px;
  border-radius: 999px;
  font-size: 14px;
  line-height: 2;
  background: #0D3863;
  font-weight: bold;
  color: #fff;
  border: 2px solid #0D3863;
  transition: all .2s linear;
  box-sizing: border-box;
}
.c_btn_1._pt1 {
  border: 2px solid #C90A0A;
  background: #C90A0A;
}
.c_btn_1._pt1:hover {
  color: #C90A0A;
}
.c_btn_1:hover {
  color: #0D3863;
  background: #fff;
}

.c_btn_2 {
  padding: 10px 28px 11px;
  border-radius: 999px;
  font-size: 24px;
  line-height: 2;
  background: #0D3863;
  font-weight: bold;
  color: #fff;
  text-align: center;
  border: 2px solid #0D3863;
  transition: all .2s ease;
}
@media screen and (max-width: 768px) {
  .c_btn_2 {
    font-size: 18px;
  }
}
.c_btn_2._pt1 {
  border: 2px solid #C90A0A;
  background: #C90A0A;
}
.c_btn_2._pt1:hover {
  color: #C90A0A;
}
@media screen and (max-width: 768px) {
  .c_btn_2._pt1:hover {
    color: #fff;
    background: #C90A0A;
  }
}
.c_btn_2:hover {
  color: #0D3863;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .c_btn_2:hover {
    background: #0D3863;
    color: #fff;
  }
}

.c_btn_3 {
  width: 260px;
  padding: 13px 40px;
  border: 1px solid #DDDDDD;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  line-height: 1.4;
  border-radius: 999px;
  position: relative;
  transition: all .2s linear;
}
@media screen and (max-width: 768px) {
  .c_btn_3 {
    font-size: 16px;
    padding: 15px 40px;
  }
}
.c_btn_3:before {
  content: "";
  width: 30px;
  height: 30px;
  background: #0B5CFF;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .c_btn_3:before {
    right: 10px;
  }
}
.c_btn_3:after {
  content: url(../img/common/btn-arrow.svg);
  position: absolute;
  top: 11px;
  right: 24px;
  transition: all .2s ease;
}
@media screen and (max-width: 768px) {
  .c_btn_3:after {
    top: 13px;
    right: 19px;
  }
}
@media screen and (min-width: 769px) {
  .c_btn_3:hover:after {
    right: 22px;
  }
}
.c_btn_3[target="_blank"]:after {
  top: 49%;
  right: 24px;
  content: url(../img/common/btn-blank.svg);
  transform: translateY(-50%);
  transition: all .2s linear;
}
@media screen and (max-width: 768px) {
  .c_btn_3[target="_blank"]:after {
    top: 48%;
    right: 19px;
  }
}
@media screen and (min-width: 769px) {
  .c_btn_3[target="_blank"]:hover:after {
    transform: translateY(-50%) scale(1.05);
  }
}
.c_btn_3.pdf:after {
  top: 50%;
  right: 24px;
  content: url(../img/common/btn-doc.svg);
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .c_btn_3.pdf:after {
    top: 52%;
    right: 20px;
  }
}
@media screen and (min-width: 769px) {
  .c_btn_3.pdf:hover:after {
    transform: translateY(-50%) scale(1.05);
  }
}
.c_btn_3.bg {
  border: 1px solid #CA090A;
  background: #CA090A;
}
.c_btn_3.bg:before {
  border: 1px solid #CA090A;
}
.c_btn_3.bg:after {
  content: url(../img/p_top/btn-arrow1-red.svg);
}
@media screen and (min-width: 769px) {
  .c_btn_3.bg:hover {
    border: 1px solid #CA090A;
    background: #fff;
    color: #CA090A;
  }
}
.c_btn_3.bg.pdf:after {
  content: url(../img/common/pdf.svg);
}
.c_btn_3.bg.pdf:hover:after {
  content: url(../img/common/pdf-hover-red.svg);
}
.c_btn_3.bg[target="_blank"]:after {
  content: url(../img/common/btn-blank.svg);
}
.c_btn_3.bg[target="_blank"]:hover:after {
  content: url(../img/common/btn-blank-hover-red.svg) !important;
}

.c_btn_4 {
  width: 480px;
  padding: 20px 70px;
  background: #fff;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  color: #073763;
  line-height: 1.4;
  border-radius: 999px;
  position: relative;
  transition: all .2s linear;
}
@media screen and (max-width: 768px) {
  .c_btn_4 {
    padding: 15px 40px;
    font-size: 18px;
  }
}
.c_btn_4:before {
  content: "";
  width: 30px;
  height: 30px;
  border: 1px solid #073763;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  transition: all .2s ease;
}
@media screen and (max-width: 768px) {
  .c_btn_4:before {
    right: 20px;
  }
}
.c_btn_4:after {
  content: url(../img/p_top/btn-arrow1.svg);
  position: absolute;
  top: 46%;
  right: 51px;
  transform: translateY(-50%);
  transition: all .2s ease;
}
@media screen and (max-width: 768px) {
  .c_btn_4:after {
    right: 31px;
  }
}
.c_btn_4:hover {
  background: #073763;
  border: 1px solid #073763;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .c_btn_4:hover {
    color: #073763;
    border: 1px solid #073763;
    background: #fff;
  }
}
.c_btn_4:hover:after {
  right: 49px;
}
@media screen and (max-width: 768px) {
  .c_btn_4:hover:after {
    right: 31px;
  }
}

.c_btn_5 {
  width: 300px;
  padding: 13px 70px;
  border: 1px solid #DDD;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  line-height: 1.4;
  border-radius: 999px;
  position: relative;
  transition: all .2s linear;
}
@media screen and (max-width: 768px) {
  .c_btn_5 {
    font-size: 18px;
    width: 100%;
    padding: 15px 70px;
  }
}
.c_btn_5:before {
  content: "";
  width: 30px;
  height: 30px;
  background: #0B5CFF;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 10px;
  transition: all .2s ease;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .c_btn_5:before {
    left: 20px;
  }
}
.c_btn_5:after {
  content: url(../img/common/btn-arrow.svg);
  position: absolute;
  top: 14px;
  left: 19px;
  transition: all .2s ease;
  transform: rotate(180deg);
  transform-origin: center center;
}
@media screen and (min-width: 769px) {
  .c_btn_5:hover:after {
    left: 17px;
  }
}

.c_btn_6 {
  text-align: center;
  width: 260px;
  padding: 13px 40px;
  font-size: 16px;
  color: #000;
  border: 1px solid #DDD;
  transition: all .2s linear;
  border-radius: 999px;
  position: relative;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .c_btn_6 {
    font-size: 16px;
  }
}
.c_btn_6:hover {
  background: #fff;
  color: #073763;
}
.c_btn_6:before {
  content: "";
  width: 30px;
  height: 30px;
  background: #0B5CFF;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .c_btn_6:before {
    right: 10px;
  }
}
.c_btn_6:after {
  content: url(../img/common/btn-arrow.svg);
  position: absolute;
  top: 12px;
  right: 19px;
  transition: all .2s ease;
}
@media screen and (max-width: 768px) {
  .c_btn_6:after {
    top: 12px;
    right: 19px;
  }
}
@media screen and (min-width: 769px) {
  .c_btn_6:hover:after {
    right: 17px;
  }
}
.c_btn_6[target="_blank"]:after {
  top: 49%;
  right: 19px;
  content: url(../img/common/btn-blank.svg);
  transform: translateY(-50%);
  transition: all .2s linear;
}
@media screen and (min-width: 769px) {
  .c_btn_6[target="_blank"]:hover:after {
    transform: translateY(-50%) scale(1.05);
  }
}
.c_btn_6.pdf:after {
  top: 52%;
  right: 19px;
  transform: translateY(-50%);
  content: url(../img/common/btn-doc.svg);
}
@media screen and (min-width: 769px) {
  .c_btn_6.pdf:hover:after {
    right: 19px;
    transform: translateY(-50%) scale(1.05);
  }
}
.c_btn_6.contact {
  width: 260px;
  padding: 13px 20px;
  border: 1px solid #FEBE01;
  position: relative;
  color: #FEBE01;
}
.c_btn_6.contact:before {
  content: url(../img/common/h-mail.svg);
  top: 59%;
  left: 20px;
  position: absolute;
  transform: translateY(-50%);
  background: none;
  right: initial;
}
@media screen and (max-width: 768px) {
  .c_btn_6.contact:before {
    display: none;
  }
}
.c_btn_6.contact:after {
  display: none;
}
@media screen and (max-width: 768px) {
  .c_btn_6.contact .c_btn_6_txt {
    position: relative;
    padding: 0 0 0 25px;
  }
  .c_btn_6.contact .c_btn_6_txt:before {
    content: url(../img/common/h-mail.svg);
    top: 52%;
    left: 0;
    position: absolute;
    transform: translateY(-50%);
    background: none;
    right: initial;
  }
}
@media screen and (min-width: 769px) {
  .c_btn_6.contact:hover {
    background: #FEBE01;
    color: #fff;
  }
  .c_btn_6.contact:hover:before {
    content: url(../img/common/h-mail-hover.svg);
  }
}
.c_btn_6.download {
  width: 260px;
  padding: 13px 20px;
  border: 1px solid #FEBE01;
  position: relative;
  color: #fff;
  background: #FEBE01;
}
.c_btn_6.download:before {
  content: url(../img/common/h-document.svg);
  top: 62%;
  left: 20px;
  position: absolute;
  transform: translateY(-50%);
  background: none;
  right: initial;
}
@media screen and (max-width: 768px) {
  .c_btn_6.download:before {
    display: none;
  }
}
.c_btn_6.download:after {
  display: none;
}
@media screen and (max-width: 768px) {
  .c_btn_6.download .c_btn_6_txt {
    position: relative;
    padding: 0 0 0 25px;
  }
  .c_btn_6.download .c_btn_6_txt:before {
    content: url(../img/common/h-document.svg);
    top: 62%;
    left: 0;
    position: absolute;
    transform: translateY(-50%);
    background: none;
    right: initial;
  }
}
@media screen and (min-width: 769px) {
  .c_btn_6.download:hover {
    background: #fff;
    color: #FEBE01;
  }
  .c_btn_6.download:hover:before {
    content: url(../img/common/h-document-hover.svg);
  }
}

.c_btn_7 {
  width: 430px;
  padding: 12px 50px 14px;
  background: #073763;
  border: 1px solid #073763;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  line-height: 1.4;
  border-radius: 999px;
  position: relative;
  transition: all .2s linear;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c_btn_7 {
    font-size: 16px;
    width: 100%;
    padding: 15px 30px 17px;
    line-height: 1.5;
  }
}
.c_btn_7._pt {
  background: #C90A0A;
  border: 1px solid #C90A0A;
}
.c_btn_7._pt:before {
  border: 1px solid #C90A0A;
}
.c_btn_7._pt:after {
  content: url(../img/common/btn-arrow2.svg);
}
.c_btn_7._pt:hover {
  color: #C90A0A;
}
.c_btn_7._pt:hover:before {
  border: 1px solid #C90A0A;
}
.c_btn_7:before {
  content: "";
  width: 30px;
  height: 30px;
  border: 1px solid #073763;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .c_btn_7:before {
    right: 20px;
  }
}
.c_btn_7:after {
  content: url(../img/p_top/btn-arrow1.svg);
  position: absolute;
  top: 46%;
  right: 31px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .c_btn_7:after {
    top: 48%;
    right: 31px;
  }
}
.c_btn_7:hover {
  background: #fff;
  color: #073763;
}
@media screen and (max-width: 768px) {
  .c_btn_7:hover {
    background: #073763;
    border: 1px solid #073763;
    color: #fff;
  }
}
.c_btn_7:hover:after {
  right: 29px;
}
@media screen and (max-width: 768px) {
  .c_btn_7:hover:after {
    right: 31px;
  }
}

.c_btn_8 {
  width: 260px;
  height: 50px;
  border: 1px solid #DDDDDD;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #000;
  position: relative;
  background: #fff;
}
.c_btn_8:before {
  content: "";
  background: #0B5CFF;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  border-radius: 50%;
}
.c_btn_8:after {
  content: url(../img/common/btn-arrow.svg);
  position: absolute;
  top: 14px;
  right: 19px;
  transition: all .2s linear;
}
@media screen and (min-width: 769px) {
  .c_btn_8:hover:after {
    right: 16px;
  }
}

.c_btn_9 {
  background: #FEBE00;
  padding: 0 45px;
  height: 50px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  align-self: center;
  border: 1px solid #FEBE00;
  transition: all .2s linear;
}
.c_btn_9_txt {
  position: relative;
  padding: 0 0 0 25px;
}
.c_btn_9_txt:before {
  content: url(../img/common/h-document.svg);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 769px) {
  .c_btn_9:hover {
    background: #fff;
    color: #FEBE00;
    border: 1px solid #FEBE00;
  }
  .c_btn_9:hover .c_btn_9_txt:before {
    content: url(../img/common/h-document-hover.svg);
  }
}

.c_sp_tglbtn {
  width: calc(100vw - 48px);
  margin: 10px 24px 10px;
  background: #0D3863;
  color: #fff;
  position: relative;
  transform: translateX(-4.6875vw);
  border-radius: 12px;
  padding: 13px 0;
  font-size: 16px;
  font-weight: bold;
  z-index: 1;
}
.c_sp_tglbtn._active:after {
  transform: translateY(-50%) rotate(90deg);
  opacity: 0;
}
.c_sp_tglbtn:before {
  content: "";
  width: 16px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.c_sp_tglbtn:after {
  opacity: 1;
  content: "";
  width: 2px;
  height: 16px;
  background: #fff;
  position: absolute;
  top: 50%;
  right: 27px;
  transform: translateY(-50%);
  transition: all .2s ease;
}

.c_link_1 {
  padding: 0 32px 0 0;
  position: relative;
  color: #1170C3;
}
@media screen and (max-width: 768px) {
  .c_link_1 {
    font-size: 16px;
  }
}
.c_link_1:before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid #1170C3;
  position: absolute;
  top: 50%;
  right: 0;
  transition: all .2s ease;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .c_link_1:before {
    top: 46%;
  }
}
.c_link_1:after {
  content: url(../img/p_top/arrow-more.svg);
  position: absolute;
  top: -2px;
  right: 8px;
  transition: all .2s ease;
}
@media screen and (max-width: 768px) {
  .c_link_1:after {
    top: -4px;
  }
}
.c_link_1:hover {
  color: #5C9FD9;
}
@media screen and (max-width: 768px) {
  .c_link_1:hover {
    color: #1170C3;
  }
}
.c_link_1:hover:before {
  border: 1px solid #5C9FD9;
}
@media screen and (max-width: 768px) {
  .c_link_1:hover:before {
    border: 1px solid #1170C3;
  }
}
.c_link_1:hover:after {
  right: 6px;
  content: url(../img/p_top/arrow-more-hover.svg);
}
@media screen and (max-width: 768px) {
  .c_link_1:hover:after {
    right: 8px;
    content: url(../img/p_top/arrow-more.svg);
  }
}

.c_link_1_1 {
  padding: 0 32px 0 0;
  position: relative;
  color: #1170C3;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .c_link_1_1 {
    font-size: 16px;
  }
}
.c_link_1_1:before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid #1170C3;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .c_link_1_1:before {
    top: 46%;
  }
}
.c_link_1_1:after {
  content: url(../img/p_top/arrow-more.svg);
  position: absolute;
  top: -3px;
  right: 8px;
  transition: all .2s ease;
}
@media screen and (max-width: 768px) {
  .c_link_1_1:after {
    top: -4px;
  }
}
.c_link_1_1:hover {
  color: #5C9FD9;
}
@media screen and (max-width: 768px) {
  .c_link_1_1:hover {
    color: #1170C3;
  }
}
.c_link_1_1:hover:before {
  border: 1px solid #5C9FD9;
}
@media screen and (max-width: 768px) {
  .c_link_1_1:hover:before {
    border: 1px solid #1170C3;
  }
}
.c_link_1_1:hover:after {
  right: 6px;
  content: url(../img/p_top/arrow-more-hover.svg);
}
@media screen and (max-width: 768px) {
  .c_link_1_1:hover:after {
    right: 8px;
    content: url(../img/p_top/arrow-more.svg);
  }
}

.c_link_2 {
  padding: 0 32px 0 0;
  position: relative;
  color: #1170C3;
}
.c_link_2:before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid #1170C3;
  background: #FFD900;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .c_link_2:before {
    top: 47%;
  }
}
.c_link_2:after {
  content: url(../img/p_top/arrow-more.svg);
  position: absolute;
  top: 43%;
  right: 8px;
  transform: translateY(-50%);
  transition: all .2s ease;
}
.c_link_2:hover {
  color: #5C9FD9;
}
.c_link_2:hover:before {
  border: 1px solid #5C9FD9;
}
.c_link_2:hover:after {
  right: 6px;
  content: url(../img/p_top/arrow-more-hover.svg);
}

.c_link_3 {
  padding: 0 32px 0 0;
  position: relative;
  color: #1170C3;
}
.c_link_3:before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid #1170C3;
  position: absolute;
  top: 46%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .c_link_3:before {
    top: 47%;
  }
}
.c_link_3:after {
  content: url(../img/common/arrow-under.svg);
  position: absolute;
  top: -1px;
  right: 8px;
  transition: all .2s ease;
}
@media screen and (max-width: 768px) {
  .c_link_3:after {
    top: 7px;
  }
}
@media screen and (min-width: 769px) {
  .c_link_3:hover {
    color: #5C9FD9;
  }
}
@media screen and (min-width: 769px) {
  .c_link_3:hover:before {
    border: 1px solid #5C9FD9;
  }
}
@media screen and (min-width: 769px) {
  .c_link_3:hover:after {
    top: 2px;
    content: url(../img/common/arrow-under-hover.svg);
  }
}

.c_list_1 {
  display: flex;
  gap: 0 20px;
}
@media screen and (max-width: 768px) {
  .c_list_1 {
    flex-wrap: wrap;
    gap: 20px 0;
  }
}
.c_list_1 .c_list_item {
  background: #fff;
  width: 260px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0px 0px 18px 2px rgba(0, 16, 51, 0.05);
}
@media screen and (max-width: 768px) {
  .c_list_1 .c_list_item {
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .c_list_1 .c_list_item:hover .c_link_1 {
    opacity: 0.7;
    color: #1170C3;
  }
  .c_list_1 .c_list_item:hover .c_link_1:before {
    border: 1px solid #1170C3;
  }
  .c_list_1 .c_list_item:hover .c_link_1:after {
    right: 6px;
    content: url(../img/p_top/arrow-more-hover.svg);
  }
}
.c_list_1 .c_list_imgbox img {
  width: 100%;
}
.c_list_1 .c_list_txtbox {
  padding: 20px 20px 60px;
  position: relative;
  height: calc(100% - 147px);
}
@media screen and (max-width: 768px) {
  .c_list_1 .c_list_txtbox {
    height: auto;
    padding: 20px 15px 60px;
  }
}
.c_list_1 .c_list_txtbox .u_txt_1 {
  color: #000;
  margin: 20px 0 0;
}
.c_list_1 .c_list_txtbox .linkbox {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.c_list_2 {
  display: flex;
  gap: 0 20px;
}
.c_list_2 .c_list_item {
  background: #fff;
  padding: 20px;
  width: 325px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0px 0px 18px 2px rgba(0, 16, 51, 0.05);
}
@media screen and (max-width: 768px) {
  .c_list_2 .c_list_item {
    padding: 15px;
    width: 315px;
  }
}
@media screen and (min-width: 769px) {
  .c_list_2 .c_list_item:hover .c_link_1 {
    opacity: 0.7;
    color: #1170C3;
  }
  .c_list_2 .c_list_item:hover .c_link_1:before {
    border: 1px solid #1170C3;
  }
  .c_list_2 .c_list_item:hover .c_link_1:after {
    right: 6px;
    content: url(../img/p_top/arrow-more-hover.svg);
  }
}
.c_list_2 .c_list_imgbox img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: cover;
}
.c_list_2 .c_list_txtbox {
  padding: 20px 0 60px;
  position: relative;
}
.c_list_2 .c_list_txtbox .ico {
  position: absolute;
  top: 20px;
  right: 0;
}
.c_list_2 .c_list_txtbox .ttl {
  margin: 5px 0 0;
  font-size: 20px;
  line-height: 1.7;
  color: #0D3863;
  padding: 0 0 10px;
  border-bottom: 1px solid #E3E3E3;
}
.c_list_2 .c_list_txtbox .u_txt_1 {
  color: #000;
  margin: 15px 0 0;
}
.c_list_2 .c_list_txtbox .linkbox {
  position: absolute;
  bottom: 0;
  right: 0;
}

.c_list_3 {
  display: flex;
  gap: 0 20px;
}
.c_list_3 .c_list_item {
  background: #fff;
  padding: 0 16px 3px;
  width: 345px;
  border-radius: 5px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .c_list_3 .c_list_item {
    width: 305px;
    padding: 0 0 3px;
  }
}
@media screen and (min-width: 769px) {
  .c_list_3 .c_list_item:hover .c_link_1 {
    opacity: 0.7;
    color: #1170C3;
  }
  .c_list_3 .c_list_item:hover .c_link_1:before {
    border: 1px solid #1170C3;
  }
  .c_list_3 .c_list_item:hover .c_link_1:after {
    right: 6px;
    content: url(../img/p_top/arrow-more-hover.svg);
  }
}
.c_list_3 .c_list_imgbox {
  overflow: hidden;
  border-radius: 5px;
}
.c_list_3 .c_list_imgbox img {
  width: 300px;
  height: 220px;
  object-fit: cover;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .c_list_3 .c_list_imgbox img {
    width: 100%;
    height: auto;
  }
}
.c_list_3 .c_list_txtbox {
  padding: 20px 20px 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c_list_3 .c_list_txtbox {
    padding: 20px 0 40px;
  }
}
.c_list_3 .c_list_txtbox .ico {
  position: absolute;
  top: 20px;
  right: 0;
}
.c_list_3 .c_list_txtbox .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 21px;
  position: relative;
}
.c_list_3 .c_list_txtbox .time {
  font-size: 12px;
  padding: 0 0 0 20px;
  position: absolute;
  font-weight: bold;
  color: #9A9A9A;
  top: 0;
  right: 0;
}
.c_list_3 .c_list_txtbox .time:before {
  content: url(../img/p_top/time-ico2.svg);
  position: absolute;
  top: 0;
  left: 0;
}
.c_list_3 .c_list_txtbox .ttl {
  margin: 5px 0 0;
  font-size: 20px;
  line-height: 1.7;
  color: #0D3863;
}
.c_list_3 .c_list_txtbox .u_txt_1 {
  margin: 15px 0 0;
}
.c_list_3 .c_list_txtbox .linkbox {
  position: absolute;
  bottom: 0;
  right: 0;
}

.c_tags_1 {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.c_tags_1 .tag {
  color: #1170C3;
  font-weight: bold;
  font-size: 12px;
  padding: 2px 10px;
  border: 1px solid #1170C3;
  border-radius: 3px;
  line-height: 1.3;
}
.c_tags_1_date {
  position: relative;
  color: #989898;
  padding: 0 0 0 21px;
}
.c_tags_1_date:before {
  content: url(../img/p_column_cat/ico1.svg);
  position: absolute;
  top: 0;
  left: 0;
}
.c_tags_1_update {
  position: relative;
  color: #989898;
  padding: 0 0 0 21px;
  font-size: 14px;
}
.c_tags_1_update:before {
  content: url(../img/p_column_cat/ico2.svg);
  position: absolute;
  top: 0;
  left: 0;
}

.c_tags_2 {
  display: flex;
}
.c_tags_2 .tag {
  font-size: 14px;
  display: inline-block;
  padding: 5px 30px 4px;
  background: #FFD900;
  color: #073763;
  font-weight: bold;
  border-radius: 3px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .c_tags_2 .tag {
    padding: 6px 10px 3px;
  }
}
.c_tags_2 .tag.disabled {
  background: #9A9A9A;
  color: #fff;
}

.c_tags_3 {
  background: #073763;
  border-radius: 3px;
  color: #fff;
  font-size: 12px;
  padding: 7px 10px 9px;
  align-self: flex-start;
}

.c_pager_num {
  margin: 60px auto 0;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .c_pager_num {
    margin: 40px auto 0;
  }
}
.c_pager_num .inner {
  display: flex;
}
.c_pager_num .page-numbers {
  display: flex;
  gap: 0 10px;
}
@media screen and (max-width: 768px) {
  .c_pager_num .page-numbers {
    gap: 0;
  }
}
.c_pager_num span,
.c_pager_num a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Special Gothic Expanded One",serif;
  font-size: 20px;
  color: #0C5CFF;
}
.c_pager_num span.current,
.c_pager_num a.current {
  background: #0C5CFF;
  color: #fff;
  border-radius: 50%;
}
.c_pager_num span.prev,
.c_pager_num a.prev {
  margin: 0 40px 0 0;
  border: 1px solid #0C5CFF;
  border-radius: 50%;
  position: relative;
  transition: all .2s ease;
}
@media screen and (max-width: 768px) {
  .c_pager_num span.prev,
  .c_pager_num a.prev {
    margin: 0 5px 0 0;
  }
}
.c_pager_num span.prev:before,
.c_pager_num a.prev:before {
  content: url(../img/common/pager-next.svg);
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(180deg);
  transform-origin: center center;
}
@media screen and (min-width: 769px) {
  .c_pager_num span.prev:hover,
  .c_pager_num a.prev:hover {
    background: #0C5CFF;
  }
  .c_pager_num span.prev:hover:before,
  .c_pager_num a.prev:hover:before {
    content: url(../img/common/pager-hover.svg);
    transform: translate(-50%, -50%) rotate(180deg);
    transform-origin: center center;
  }
}
.c_pager_num span.prev.disabled,
.c_pager_num a.prev.disabled {
  background: #EBEBEB;
  pointer-events: none;
  border-color: #EBEBEB;
}
.c_pager_num span.prev.disabled:before,
.c_pager_num a.prev.disabled:before {
  content: url(../img/common/pager-hover.svg);
  transform: translate(-50%, -50%) rotate(180deg);
  transform-origin: center center;
}
.c_pager_num span.next,
.c_pager_num a.next {
  margin: 0 0 0 40px;
  border: 1px solid #0C5CFF;
  border-radius: 50%;
  position: relative;
  transition: all .2s ease;
}
@media screen and (max-width: 768px) {
  .c_pager_num span.next,
  .c_pager_num a.next {
    margin: 0 0 0 5px;
  }
}
.c_pager_num span.next:before,
.c_pager_num a.next:before {
  content: url(../img/common/pager-next.svg);
  position: absolute;
  top: 47%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 769px) {
  .c_pager_num span.next:hover,
  .c_pager_num a.next:hover {
    background: #0C5CFF;
  }
  .c_pager_num span.next:hover:before,
  .c_pager_num a.next:hover:before {
    content: url(../img/common/pager-hover.svg);
    transform: translate(-50%, -50%);
    transform-origin: center center;
  }
}
.c_pager_num span.next.disabled,
.c_pager_num a.next.disabled {
  background: #EBEBEB;
  pointer-events: none;
  border-color: #EBEBEB;
}
.c_pager_num span.next.disabled:before,
.c_pager_num a.next.disabled:before {
  content: url(../img/common/pager-hover.svg);
  transform: translate(-50%, -50%);
  transform-origin: center center;
}

.c-headlines {
  margin: 40px 0;
  border: 1px solid #E0E0E0;
  padding: 20px 40px;
}
@media screen and (max-width: 768px) {
  .c-headlines {
    padding: 15px;
  }
}
.c-headlines-ttl {
  font-size: 16px;
  font-weight: bold;
  display: flex;
  gap: 0 20px;
  align-items: center;
}
.c-headlines-ttl > p {
  margin: 0 !important;
}
.c-headlines-ttl button {
  color: #1170C3;
  padding: 0;
  letter-spacing: .05em;
}
.c-headlines-ttl button.close span:before {
  transform: rotate(135deg) translateY(-50%);
  top: 10%;
  right: 8px;
}
.c-headlines-ttl button span {
  display: inline-block;
  padding: 0 20px 0 0;
  position: relative;
  transform: translateY(2px);
}
.c-headlines-ttl button span:before {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1px solid #1170C3;
  border-right: 1px solid #1170C3;
  transform: rotate(-45deg) translateY(-50%);
  transform-origin: center center;
  position: absolute;
  top: 50%;
  right: 3px;
}
.c-headlines > ul {
  margin-top: 15px !important;
  padding: 0 !important;
}
.c-headlines > ul > li {
  margin-top: 13px !important;
  padding: 0 0 0 18px !important;
  text-indent: -1.2em;
}
.c-headlines > ul > li a {
  color: #000;
  font-weight: bold;
}
.c-headlines > ul > li a > span.c-headlines-num {
  color: #1170C3;
  font-weight: bold;
  margin: 0 2px 0 0;
}
.c-headlines > ul > li:before {
  display: none;
}
.c-headlines > ul > li > ul {
  margin-top: 13px !important;
  text-indent: 0 !important;
  padding: 0 0 0 5px !important;
}
@media screen and (max-width: 768px) {
  .c-headlines > ul > li > ul {
    padding: 0 0 0 16px !important;
  }
}
.c-headlines > ul > li > ul li {
  margin-top: 13px !important;
  padding: 0 !important;
}
.c-headlines > ul > li > ul li:before {
  width: 10px !important;
  height: 1px !important;
  background: #1170C3 !important;
  position: absolute !important;
  top: 12px !important;
  left: -17px !important;
}

/* ======================================================================
 layout
====================================================================== */
#wpadminbar {
  opacity: 0;
  pointer-events: none;
  display: none;
}

/* =================================
 l_container
================================= */
.l_container {
  position: relative;
  overflow: hidden;
}

/* =================================
 l_header
================================= */
.l_header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  border-top: 10px solid #0B5CFF;
  z-index: 10;
  background: #fff;
  padding: 0 0 20px;
}
@media screen and (max-width: 768px) {
  .l_header {
    padding: 0 4.6875vw;
    background: linear-gradient(to bottom right, #84adff, #436df2, #103bf4, #0b5cff);
    border-radius: 0 0 30px 0;
    border-top: none;
  }
}
.l_header:before {
  content: "";
  background: rgba(255, 255, 255, 0.9);
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.l_header.open:before {
  opacity: 1;
  visibility: visible;
}
.l_header_inner {
  display: flex;
}
@media screen and (max-width: 1520px) {
  .l_header_inner {
    justify-content: space-between;
    padding: 0 15px 0 0;
  }
}
.l_header .logo {
  margin: -10px 0 0;
  padding: 0 80px 0 calc( (100vw - 1200px) / 2);
  background: linear-gradient(to bottom right, #84adff, #436df2, #103bf4, #0b5cff);
  border-radius: 0 0 30px 0;
}
@media screen and (max-width: 1520px) {
  .l_header .logo {
    padding: 0 40px 0 100px;
  }
}
@media screen and (max-width: 1400px) {
  .l_header .logo {
    padding: 0 40px 0 30px;
  }
}
@media screen and (max-width: 1130px) {
  .l_header .logo {
    padding: 0 15px 0 15px;
  }
}
@media screen and (max-width: 850px) {
  .l_header .logo {
    padding: 0 5px;
  }
}
@media screen and (max-width: 768px) {
  .l_header .logo {
    margin: 0;
    padding: 0;
    background: none;
  }
}
.l_header .logo_link {
  display: flex;
  align-items: center;
}
.l_header .logo_txt {
  margin: 17px 0 0 5px;
  display: inline-block;
  color: #fff;
  font-size: 27px;
  white-space: nowrap;
  font-family: "Special Gothic Expanded One",serif;
}
@media screen and (max-width: 1520px) {
  .l_header .logo_txt {
    font-size: 19px;
    margin: 18px 0 0 5px;
  }
}
@media screen and (max-width: 1030px) {
  .l_header .logo_txt {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .l_header .logo_txt {
    font-size: 18px;
    margin: 11px 0 0 2px;
  }
}
.l_header .logo_subtxt {
  color: #fff;
  font-size: 12px;
  margin: 5px 0 0;
  padding: 0 0 20px;
}
@media screen and (max-width: 1350px) {
  .l_header .logo_subtxt {
    font-size: 10px;
  }
}
@media screen and (max-width: 1235px) {
  .l_header .logo_subtxt {
    line-height: 1.4;
  }
  .l_header .logo_subtxt .u_sp {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .l_header .logo_subtxt {
    font-size: 10px;
    line-height: 1.3;
    margin: 5px 0 0;
    padding: 0 0 15px;
  }
}
.l_header .logo_img {
  width: 175px;
  padding: 20px 0 0;
  display: flex;
}
@media screen and (max-width: 1520px) {
  .l_header .logo_img {
    width: 125px;
  }
}
@media screen and (max-width: 1030px) {
  .l_header .logo_img {
    width: 80px;
  }
}
@media screen and (max-width: 768px) {
  .l_header .logo_img {
    width: 120px;
    padding: 12px 0 0;
  }
}
.l_header .box {
  margin: -10px 0 0;
  display: flex;
  padding: 10px 0 0 50px;
  align-items: center;
}
@media screen and (max-width: 1520px) {
  .l_header .box {
    padding: 10px 0 0 20px;
  }
}
@media screen and (max-width: 950px) {
  .l_header .box {
    padding: 10px 0 0 0px;
  }
}
@media screen and (max-width: 768px) {
  .l_header .box {
    display: none;
  }
}
.l_header .box_lists {
  gap: 0 25px;
  display: flex;
}

@media screen and (max-width: 1350px) {
  .l_header .box_lists {
    gap: 0 10px;
  }
}
.l_header .box_link {
  color: #000;
  font-weight: bold;
  transition: all .2s linear;
}
@media screen and (max-width: 1030px) {
  .l_header .box_link {
    font-size: 12px;
  }
}
@media screen and (max-width: 950px) {
  .l_header .box_link {
    font-size: 10px;
  }
}
@media screen and (min-width: 769px) {
  .l_header .box_link:hover {
    color: #0C5CFF;
  }
}
.l_header_btns {
  display: flex;
  margin: 0 0 0 30px;
  gap: 0 10px;
}
@media screen and (max-width: 1030px) {
  .l_header_btns {
    margin: 0 0 0 10px;
  }
}
.l_header_btn {
  height: 50px;
  display: flex;
  padding: 0 25px;
  align-items: center;
  border: 1px solid #FEB000;
  border-radius: 999px;
}
@media screen and (max-width: 1130px) {
  .l_header_btn {
    padding: 0 10px;
  }
}
@media screen and (max-width: 1030px) {
  .l_header_btn .u_txt_1 {
    font-size: 12px;
  }
}
@media screen and (max-width: 950px) {
  .l_header_btn .u_txt_1 {
    font-size: 10px;
  }
}
@media screen and (max-width: 800px) {
  .l_header_btn {
    padding: 0 5px;
  }
}
.l_header_btn1 {
  color: #FEB000;
  font-weight: bold;
  transition: all .2s linear;
}
@media screen and (min-width: 769px) {
  .l_header_btn1:hover {
    background: #FEB000;
    color: #fff;
  }
  .l_header_btn1:hover .l_header_ico:before {
    content: url(../img/common/h-mail-hover.svg);
  }
}
.l_header_btn2 {
  background: #FEB000;
  font-weight: bold;
  color: #fff;
  transition: all .2s linear;
}
@media screen and (min-width: 769px) {
  .l_header_btn2:hover {
    background: #fff;
    color: #FEB000;
  }
  .l_header_btn2:hover .l_header_ico:before {
    content: url(../img/common/h-document-hover.svg);
  }
}
.l_header_ico {
  padding: 0 0 0 25px;
  position: relative;
}
.l_header_ico:before {
  content: url(../img/common/h-mail.svg);
  position: absolute;
  top: 55%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 950px) {
  .l_header_ico:before {
    top: 65%;
  }
}
.l_header_ico2:before {
  content: url(../img/common/h-document.svg);
  position: absolute;
  top: 60%;
  left: 0;
  transform: translateY(-50%);
}
.l_header .menubtn {
  position: absolute;
  top: 50%;
  right: 4.6875vw;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  z-index: 1000;
}
.l_header .menubtn-txt {
  margin: 0 14px 0 0;
  font-size: 10px;
  color: #fff;
  letter-spacing: .2em;
  font-family: "Special Gothic Expanded One",serif;
}
.l_header .menubtn-borders {
  width: 16px;
  height: 14px;
  position: relative;
}
.l_header .menubtn-border {
  width: 16px;
  height: 1px;
  background: #fff;
  border-radius: 999px;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.4s ease;
}
.l_header .menubtn-border.border2 {
  width: 12px;
  top: 6px;
  left: 0;
}
.l_header .menubtn-border.border3 {
  width: 8px;
  top: 12px;
  left: 0;
}
.l_header .menubtn.active .border1 {
  transform: rotate(45deg);
  top: 8px;
}
.l_header .menubtn.active .border2 {
  opacity: 0;
}
.l_header .menubtn.active .border3 {
  transform: rotate(-45deg);
  top: 8px;
  width: 16px;
}
.l_header .spmenu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  background: linear-gradient(to bottom right, #84adff, #436df2, #103bf4, #0b5cff);
  border-radius: 0 0 30px 30px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 10;
}
.l_header .spmenu.open {
  opacity: 1;
  visibility: visible;
}
.l_header .spmenu-logo {
  display: flex;
  flex-wrap: wrap;
}
.l_header .spmenu-inner {
  padding: 12px 4.6875vw;
}
.l_header .spmenu .logo_img {
  padding: 0;
}
.l_header .spmenu .logo_txt {
  margin: 0 0 0 2px;
}
.l_header .spmenu-lists {
  margin: 19px 0 0;
}
.l_header .spmenu-link {
  font-size: 14px;
  padding: 22px 0 22px 15px;
  display: flex;
  position: relative;
  color: #fff;
  border-bottom: 1px solid #fff;
}
.l_header .spmenu .l_header_btns {
  margin: 30px 0 0;
  gap: 20px 0;
  align-items: center;
  flex-direction: column;
}
.l_header .spmenu .l_header_btn {
  width: 330px;
  display: flex;
  justify-content: center;
}
.l_header .spmenu .l_header_btn1 {
  background: #fff;
}

/* =================================
 l_breadcrumbs
================================= */
.l_breadcrumbs {
  width: 1130px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l_breadcrumbs {
    width: 100%;
    overflow-x: scroll;
  }
}
.l_breadcrumbs .breadcrumbs {
  padding: 110px 0 0;
  font-size: 12px;
  color: #AAAAAA;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .l_breadcrumbs .breadcrumbs {
    width: fit-content;
    white-space: nowrap;
    padding: 92px 4.6875vw 10px;
  }
}
.l_breadcrumbs .breadcrumbs > span {
  display: flex;
  gap: 0 10px;
  align-items: center;
}
.l_breadcrumbs .breadcrumbs > span + span {
  margin: 5px 0 0;
}
.l_breadcrumbs .breadcrumbs > span > span {
  font-weight: bold;
}
.l_breadcrumbs .breadcrumbs > span > span a {
  color: #111;
  font-weight: bold;
}
.l_breadcrumbs .breadcrumbs > span > span:not(:first-of-type) a {
  color: #111;
  font-weight: bold;
}

/* =================================
l_main_visual_top
================================= */
.l_main_visual_top {
  position: relative;
  padding: 150px 0 70px;
}
@media screen and (max-width: 768px) {
  .l_main_visual_top {
    padding: 100px 0 0;
  }
}
.l_main_visual_top:before {
  content: "";
  width: 55vw;
  height: 300px;
  background: #F0F8FF;
  border-radius: 10px 0 0 10px;
  z-index: -1;
  position: absolute;
  bottom: 45px;
  right: 0;
}
@media screen and (max-width: 768px) {
  .l_main_visual_top:before {
    width: 100vw;
    height: 212px;
    bottom: 45px;
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  .l_main_visual_top_lists {
    padding: 0 0 65px;
  }
}
.l_main_visual_top_list {
  width: 860px;
  transform: scale(0.85);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}
@media screen and (max-width: 768px) {
  .l_main_visual_top_list {
    width: 90vw;
  }
}
.l_main_visual_top_list.is-active {
  transform: scale(1);
}
.l_main_visual_top_img {
  max-width: 100%;
  transition: all .2s linear;
}
.l_main_visual_top_imgbox {
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .l_main_visual_top_imgbox {
    border-radius: 5px 5px 0 0;
  }
}
.l_main_visual_top_imgbox .l_main_visual_top_img {
  transition: all .2s linear;
}
@media screen and (min-width: 769px) {
  .l_main_visual_top_imgbox:hover .l_main_visual_top_img {
    transform: scale(1.1);
  }
}
.l_main_visual_top_txtbox {
  width: 440px;
  background: #fff;
  border-radius: 10px;
  padding: 25px 30px;
  margin: -90px -30px 0 0;
  display: block;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 768px) {
  .l_main_visual_top_txtbox {
    border-radius: 0 0 5px 5px;
    width: 100%;
    margin: 0;
  }
}
.l_main_visual_top_link {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
}
.l_main_visual_top_ttl {
  margin: 10px 0 0;
  font-size: 20px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* ← 表示したい行数 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #000;
  font-weight: 600;
}
.l_main_visual_top_ttl a {
  color: #000;
}
.l_main_visual_top_counter {
  position: absolute;
  bottom: 110px;
  left: 50%;
  transform: translateX(-380px);
  font-size: 14px;
  display: flex;
  gap: 0 5px;
  color: #989898;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .l_main_visual_top_counter {
    bottom: 8px;
    transform: translateX(40px);
  }
}
.l_main_visual_top_counter .current {
  color: #111;
}
.l_main_visual_top .slick-arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #0B5CFF;
}
.l_main_visual_top .slick-prev {
  bottom: 0;
  top: initial;
  left: 50%;
  transform: translateX(-430px) rotate(180deg);
  transform-origin: center center;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .l_main_visual_top .slick-prev {
    transform: translateX(-3px) rotate(180deg);
  }
}
.l_main_visual_top .slick-prev:before {
  display: block;
  transform: translateY(-4px);
  content: url(../img/p_top/mv-arrow-prev.svg);
  opacity: 1;
  transition: all .2s linear;
}
@media screen and (min-width: 769px) {
  .l_main_visual_top .slick-prev:hover:before {
    transform: translate(3px, -4px);
  }
}
.l_main_visual_top .slick-next {
  bottom: 0;
  top: initial;
  left: 50%;
  transform: translateX(-310px);
  transform-origin: center center;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .l_main_visual_top .slick-next {
    bottom: 0;
    right: initial;
    transform: translateX(100px);
  }
}
.l_main_visual_top .slick-next:before {
  display: block;
  transform: translateY(-4px);
  content: url(../img/p_top/mv-arrow-prev.svg);
  opacity: 1;
  transition: all .2s linear;
}
@media screen and (min-width: 769px) {
  .l_main_visual_top .slick-next:hover:before {
    transform: translate(3px, -4px);
  }
}
.l_main_visual_top .slick-dots {
  width: auto;
  position: absolute;
  bottom: 10px;
  left: 50%;
  right: initial;
  top: initial;
  display: flex;
  gap: 0 12px;
  justify-content: center;
  transform: translateX(-250px);
}
@media screen and (max-width: 768px) {
  .l_main_visual_top .slick-dots {
    transform: translateX(-131px);
  }
}
.l_main_visual_top .slick-dots li {
  margin: 0;
  width: 10px;
  height: 10px;
  border: 1px solid #989898;
  border-radius: 10px;
}
.l_main_visual_top .slick-dots li.slick-active {
  background: #03629E;
  border: 1px solid #03629E;
}
.l_main_visual_top .slick-dots li button {
  padding: 0;
  width: 10px;
  height: 10px;
}
.l_main_visual_top .slick-dots li button:before {
  display: none;
}
.l_main_visual_top .slick-slide {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin: 0 -25px;
}
@media screen and (max-width: 768px) {
  .l_main_visual_top .slick-slide {
    margin: 0 20px;
  }
}

/* =================================
l_main_visual
================================= */
.l_main_visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 35px 0 50px;
}
@media screen and (max-width: 768px) {
  .l_main_visual {
    padding: 40px 0 40px;
  }
}
.l_main_visual .en {
  display: block;
  color: #0B5CFF;
  font-size: 14px;
  font-family: "Special Gothic Expanded One",serif;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .l_main_visual .en {
    font-size: 12px;
  }
}
.l_main_visual .ja {
  display: block;
  font-size: 36px;
  font-weight: 500;
  padding: 10px 0 23px;
  position: relative;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .l_main_visual .ja {
    font-size: 24px;
    line-height: 1.4;
    padding: 5px 0 0;
  }
}

/* =================================
 l_content
================================= */
/* =================================
 l_main
================================= */
/* =================================
 l_footer
================================= */
.l_footer {
  padding: 60px 0 0;
  background: linear-gradient(to bottom right, #9abbff, #0b4dff, #0055ff, #4577ff, #84aeff);
}
@media screen and (max-width: 768px) {
  .l_footer {
    padding: 10px;
    background: linear-gradient(to bottom, #84adff 0%, #436df2 15%, #103bf4 40%, #0b5cff 100%);
  }
}
.l_footer_inner {
  max-width: 1130px;
  margin: 0 auto;
}
.l_footer_box {
  display: flex;
}
@media screen and (max-width: 768px) {
  .l_footer_box {
    padding: 0 10px;
    flex-direction: column;
  }
}
.l_footer_item:nth-of-type(1), .l_footer_item:nth-of-type(2), .l_footer_item:nth-of-type(4) {
  width: 240px;
}
@media screen and (max-width: 768px) {
  .l_footer_item:nth-of-type(1), .l_footer_item:nth-of-type(2), .l_footer_item:nth-of-type(4) {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .l_footer_item:nth-of-type(1) .l_footer_ttl {
    border-bottom: none;
  }
}
.l_footer_item:nth-of-type(2) {
  margin: 0 0 0 55px;
}
@media screen and (max-width: 768px) {
  .l_footer_item:nth-of-type(2) {
    margin: 0;
  }
  .l_footer_item:nth-of-type(2) .l_footer_ttl {
    border-bottom: none;
    border-top: 1px solid #fff;
  }
}
.l_footer_item:nth-of-type(3) {
  margin: 0 0 0 55px;
}
@media screen and (max-width: 768px) {
  .l_footer_item:nth-of-type(3) {
    margin: 0;
  }
}
.l_footer_item:nth-of-type(3) .l_footer_subttl {
  margin: 0;
}
.l_footer_item:nth-of-type(3) .l_footer_lists {
  border-bottom: none;
}
.l_footer_item:nth-of-type(4) {
  margin: 0 0 0 115px;
}
@media screen and (max-width: 768px) {
  .l_footer_item:nth-of-type(4) {
    border-top: 1px solid #fff;
    margin: 0;
  }
  .l_footer_item:nth-of-type(4) .l_footer_subttl {
    border-top: none;
    padding: 10px 0;
  }
  .l_footer_item:nth-of-type(4) .l_footer_subttl:before {
    transform: translateY(-50%);
  }
  .l_footer_item:nth-of-type(4) .l_footer_subttl.first {
    margin: 10px 0 0;
  }
}
.l_footer_item:nth-of-type(4) .l_footer_ttl:nth-of-type(2) {
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .l_footer_item:nth-of-type(4) .l_footer_ttl:nth-of-type(2) {
    margin-top: 0;
  }
}
.l_footer_ttl {
  display: block;
  color: #fff;
  padding: 0 0 15px;
  border-bottom: 1px solid #fff;
  letter-spacing: .05em;
}
@media screen and (max-width: 768px) {
  .l_footer_ttl {
    padding: 20px 0;
    position: relative;
  }
  .l_footer_ttl:before {
    content: url(../img/common/sp/link-arrow.svg);
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
  }
}
.l_footer_subttl, .l_footer_linkttl {
  display: block;
  color: #fff;
  margin: 20px 0 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .l_footer_subttl, .l_footer_linkttl {
    margin: 0;
    padding: 20px 0;
    border-top: 1px solid #fff;
  }
  .l_footer_subttl:before, .l_footer_linkttl:before {
    content: url(../img/common/sp/link-arrow.svg);
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: center center;
  }
}
@media screen and (max-width: 768px) {
  .l_footer_linkttl {
    margin: 0;
    padding: 20px 0;
    border-top: 1px solid #fff;
  }
  .l_footer_linkttl:before {
    content: url(../img/common/sp/link-arrow.svg);
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    transform-origin: center center;
  }
}
.l_footer_lists {
  margin: 10px 0 0;
  padding: 0 0 15px;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  .l_footer_lists {
    margin: -5px 0 0;
    padding: 0 0 20px;
    display: none;
    border-bottom: none;
  }
}
.l_footer_list {
  padding: 0 0 0 15px;
  position: relative;
}
.l_footer_list:before {
  content: "";
  width: 10px;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 0;
}
.l_footer_list:not(:first-of-type) {
  margin: 3px 0 0;
}
.l_footer_link {
  color: #fff;
}
.l_footer_whitebox {
  margin: 25px 0 0;
  padding: 40px;
  border-radius: 10px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .l_footer_whitebox {
    padding: 30px 25px;
  }
}
.l_footer_whitebox_logo {
  display: flex;
  align-items: center;
  padding: 0 0 30px;
  border-bottom: 1px solid #1A1311;
}
@media screen and (max-width: 768px) {
  .l_footer_whitebox_logo {
    flex-direction: column;
    padding: 0 0 20px;
  }
}
.l_footer_whitebox_logo_link {
  display: block;
}
.l_footer_whitebox_logo_txt {
  margin: 0 0 0 40px;
}
@media screen and (max-width: 768px) {
  .l_footer_whitebox_logo_txt {
    margin: 20px 0;
  }
}
.l_footer_whitebox_logo_bnr {
  height: 69px;
  margin: 0 20px;
}
@media screen and (max-width: 768px) {
  .l_footer_whitebox_logo_bnr {
    max-width: 100%;
    width: auto;
  }
}
.l_footer_whitebox_oneline {
  margin: 30px 0 0;
  display: flex;
  gap: 0 30px;
}
@media screen and (max-width: 768px) {
  .l_footer_whitebox_oneline {
    margin: 20px 0 0;
    flex-direction: column;
  }
}
.l_footer_whitebox_oneline_ttl {
  color: #0C5CFF;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .l_footer_whitebox_oneline_ttl {
    text-align: center;
    margin: 0 0 15px;
  }
}
.l_footer_whitebox_btns {
  margin: 30px 0 0;
  display: flex;
  gap: 20px 16px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .l_footer_whitebox_btns {
    justify-content: center;
  }
}
.l_footer_whitebox_btn {
  width: 240px;
  height: 42px;
  display: flex;
  align-items: center;
  position: relative;
  border-radius: 999px;
  border: 1px solid #DDD;
  padding: 0 0 0 20px;
}
@media screen and (max-width: 768px) {
  .l_footer_whitebox_btn {
    width: 260px;
    padding: 0 0 0 25px;
  }
}
.l_footer_whitebox_btn:before {
  content: "";
  width: 30px;
  height: 30px;
  background: #0B5CFF;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
.l_footer_whitebox_btn:after {
  content: url(../img/common/blank.svg);
  position: absolute;
  top: 51%;
  right: 18px;
  transform: translateY(-50%);
}
.l_footer_bnrbox {
  display: flex;
  justify-content: flex-end;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .l_footer_bnrbox {
    gap: 10px;
    flex-direction: column;
  }
}
.l_footer_bnrbox_img {
  height: 69px;
}
@media screen and (max-width: 768px) {
  .l_footer_bnrbox_img {
    width: auto;
    height: auto;
    max-width: 100%;
  }
}
.l_footer_copy {
  border-top: 1px solid #fff;
  color: #fff;
  font-size: 10px;
  text-align: center;
  padding: 10px 0 20px;
}
.satori__input_group select {
  position: relative;
  min-width: 160px;
  padding: 0 0 0 10px;
}

/* 自己紹介 */
.writer-profile-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border: 2px dashed #eee;
  margin: 30px 0;
}
.wp-left, .wp-right {
  padding: 15px 10px;
}
.wp-left {
  width: 35%;
  border-right: 2px dashed #eee;
  text-align: center;
}
.wp-right {
  width: 65%;
}
.wp-label {
  position: relative;
  margin: 0 0 5px;
  padding: 6px 10px;
  border: 1px solid #222;
  display: inline-block;
  width: 150px;
  border-radius: 20px;
}
.wp-label::before,
.wp-label::after {
  content: '';
  border: 14px solid transparent;
  position: absolute;
  left: 50%;
  margin-left: -14px;
}
.wp-label::before {
  border-top-color: #222;
  bottom: -28px;
}
.wp-label::after {
  border-top-color: #fff;
  bottom: -27px;
}
.wp-label {
  color: #222;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}
.wp-img {
  margin: 10px auto;
}
.wp-img img {
  border-radius: 50%;
  width: 100px;
}
.wp-name {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  color: #6C9FCE;
}
.ul-center {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  line-height: 1.8;
}
.ul-center span {
  font-weight: bold;
  font-size: 16px;
}
.wp-content {
  text-align: center;
  display: block;
}

@media (max-width: 767px) {
  .writer-profile-card {
    display: block;
  }
  .wp-left, .wp-right {
    width: 100%;
    padding: 15px 20px;
  }
  .wp-left {
    border-right: none;
    border-bottom: 2px dashed #eee;
  }
}
.satori__message {
  font-size: 16px!important;
}

.satori__input_group input[type="checkbox"],
.satori__input_group label input[type="checkbox"] {
  display: inline-block !important;
  opacity: 1 !important;
  appearance: auto !important;
  position: static !important;
  z-index: auto !important;
  pointer-events: auto !important;
}
.satori__input_group input[type="radio"],
.satori__input_group label input[type="radio"] {
  display: inline-block !important;
  opacity: 1 !important;
  appearance: auto !important;
  -webkit-appearance: auto !important;
  position: static !important;
  z-index: auto !important;
  pointer-events: auto !important;
}
.pc {
  display: block;
}
.sp {
  display: none;
}
@media (max-width: 767px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
#follow-banner {
  position: fixed;
  left: 30%;
  bottom: 2%;
  width: 40%;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  background: #ddd;
}
#follow-banner.active {
  opacity: 1;
}
#follow-banner.active a:hover {
  opacity: .5;
}
#follow-banner img {
  max-width: 100%;
}
.banner-close {
  position: absolute;
  top: 5px;
  right: 10px;
  background: #fff;
  border: none;
  font-size: 20px;
  cursor: pointer;
}
@media (max-width: 767px) {
  #follow-banner {
    left: 2%;
    width: 96%;
    transform: unset;
  }
}