@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;
}

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.6em;
  line-height: 1.8;
}

.u_txt_1_1 {
  font-size: 1.6em;
  line-height: 2;
}

.u_txt_2 {
  font-size: 1.4em;
  line-height: 1.5;
  letter-spacing: .1em;
}

.u_txt_3 {
  font-size: 2em;
  line-height: 1.7;
  letter-spacing: .1em;
}
@media screen and (max-width: 768px) {
  .u_txt_3 {
    font-size: 1.8em;
  }
}

.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
================================= */
.c_ttl_1 {
  display: flex;
  flex-direction: column;
  font-size: 40px;
  color: #1170C3;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .c_ttl_1 {
    font-size: 28px;
    display: flex;
    justify-content: center;
    text-align: center;
  }
}
.c_ttl_1 span.u_oz {
  padding: 0 0 0 15px;
  position: relative;
  font-size: 16px;
  color: #B7B7B7;
}
@media screen and (max-width: 768px) {
  .c_ttl_1 span.u_oz {
    font-size: 14px;
  }
}
.c_ttl_1 span.u_oz:before {
  content: "";
  width: 10px;
  height: 10px;
  background: #CCE7FF;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}
.c_ttl_1 span.u_oz:after {
  content: "";
  width: 6px;
  height: 6px;
  background: #1170C3;
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  border-radius: 50%;
}

.c_ttl_2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.c_ttl_2 .txt1 {
  font-size: 14px;
  font-weight: bold;
  color: #1170C3;
}
@media screen and (max-width: 768px) {
  .c_ttl_2 .txt1 {
    font-size: 14px;
  }
}
.c_ttl_2 .txt1 span {
  font-size: 16px;
}
.c_ttl_2 .txt2 {
  margin: 10px 0 0;
  color: #0D3863;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .c_ttl_2 .txt2 {
    font-size: 20px;
    margin: 5px 0 0;
  }
}

.c_ttl_3 {
  display: flex;
  flex-direction: column;
  font-size: 40px;
  color: #fff;
  line-height: 1.4;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .c_ttl_3 {
    font-size: 28px;
  }
}
.c_ttl_3 span {
  padding: 0 0 0 15px;
  position: relative;
  font-size: 16px;
  color: #B7B7B7;
}
@media screen and (max-width: 768px) {
  .c_ttl_3 span {
    font-size: 14px;
  }
}
.c_ttl_3 span:before {
  content: "";
  width: 10px;
  height: 10px;
  background: #CCE7FF;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}
.c_ttl_3 span:after {
  content: "";
  width: 6px;
  height: 6px;
  background: #1170C3;
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  border-radius: 50%;
}

.c_ttl_4 {
  font-size: 30px;
  position: relative;
  padding: 22px 0 22px 100px;
  line-height: 1.4;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .c_ttl_4 {
    font-size: 24px;
    padding: 22px 0 22px 75px;
  }
}
.c_ttl_4 span {
  position: absolute;
  top: 50%;
  left: 0;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  line-height: 1.5;
  height: 86px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .c_ttl_4 span {
    top: 48%;
    font-size: 16px;
  }
}
.c_ttl_4 span img {
  display: inline-block;
  margin: 8px 0 0;
}
@media screen and (max-width: 768px) {
  .c_ttl_4 span img {
    margin: 4px 0 0;
  }
}
.c_ttl_4 span:before {
  content: "";
  width: 38px;
  height: 1px;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.c_ttl_5 {
  color: #1170C3;
  font-size: 40px;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c_ttl_5 {
    font-size: 28px;
    line-height: 1.4;
  }
}

/* =================================
 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: 480px;
  padding: 20px 70px;
  background: #073763;
  border: 1px solid #073763;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  line-height: 1.4;
  border-radius: 999px;
  position: relative;
  transition: all .2s linear;
}
@media screen and (max-width: 768px) {
  .c_btn_3 {
    font-size: 18px;
    width: 100%;
    padding: 15px 70px;
  }
}
.c_btn_3:before {
  content: "";
  width: 30px;
  height: 30px;
  border: 1px solid #073763;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .c_btn_3:before {
    right: 20px;
  }
}
.c_btn_3:after {
  content: url(../img/p_top/btn-arrow1.svg);
  position: absolute;
  top: 47%;
  right: 51px;
  transition: all .2s ease;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .c_btn_3:after {
    top: 46%;
    right: 31px;
  }
}
.c_btn_3:hover {
  background: #fff;
  color: #073763;
}
@media screen and (max-width: 768px) {
  .c_btn_3:hover {
    background: #073763;
    border: 1px solid #073763;
    color: #fff;
  }
}
.c_btn_3:hover:after {
  right: 49px;
}
@media screen and (max-width: 768px) {
  .c_btn_3:hover:after {
    right: 31px;
  }
}
.c_btn_3[target="_blank"]:before {
  display: none;
}
.c_btn_3[target="_blank"]:after {
  top: 50%;
  right: 48px;
  content: url(../img/common/btn-blank.svg);
}
@media screen and (max-width: 768px) {
  .c_btn_3[target="_blank"]:after {
    top: 55%;
    right: 24px;
  }
}
.c_btn_3[target="_blank"]:hover:after {
  right: 48px;
  content: url(../img/common/btn-blank-hover.svg);
}
@media screen and (max-width: 768px) {
  .c_btn_3[target="_blank"]:hover:after {
    right: 24px;
    content: url(../img/common/btn-blank.svg);
  }
}
.c_btn_3.pdf:before {
  display: none;
}
.c_btn_3.pdf:after {
  top: 56%;
  right: 48px;
  content: url(../img/common/pdf.svg);
}
@media screen and (max-width: 768px) {
  .c_btn_3.pdf:after {
    right: 23px;
  }
}
.c_btn_3.pdf:hover:after {
  right: 48px;
  content: url(../img/common/pdf-hover.svg);
}
@media screen and (max-width: 768px) {
  .c_btn_3.pdf:hover:after {
    right: 23px;
    content: url(../img/common/pdf.svg);
  }
}
.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: 480px;
  padding: 20px 70px;
  background: #073763;
  border: 1px solid #073763;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  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;
  border: 1px solid #073763;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 40px;
  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/p_top/btn-arrow1.svg);
  position: absolute;
  top: 55%;
  left: 50px;
  transform: translateY(-50%) rotate(180deg);
  transform-origin: center center;
}
@media screen and (max-width: 768px) {
  .c_btn_5:after {
    left: 31px;
  }
}
.c_btn_5:hover {
  background: #fff;
  color: #073763;
}
@media screen and (max-width: 768px) {
  .c_btn_5:hover {
    background: #073763;
    border: 1px solid #073763;
    color: #fff;
  }
}
.c_btn_5:hover:after {
  left: 49px;
}
@media screen and (max-width: 768px) {
  .c_btn_5:hover:after {
    left: 31px;
  }
}

.c_btn_6 {
  text-align: center;
  width: 400px;
  padding: 20px 70px;
  background: #073763;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  border: 1px solid #073763;
  transition: all .2s linear;
  border-radius: 999px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c_btn_6 {
    font-size: 18px;
  }
}
.c_btn_6:hover {
  background: #fff;
  color: #073763;
}
.c_btn_6.bg {
  border: 1px solid #CA090A;
  background: #CA090A;
}
.c_btn_6.bg:hover {
  background: #fff;
  color: #CA090A;
}
.c_btn_6:before {
  content: "";
  width: 30px;
  height: 30px;
  border: 1px solid #073763;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .c_btn_6:before {
    right: 20px;
  }
}
.c_btn_6:after {
  content: url(../img/p_top/btn-arrow1.svg);
  position: absolute;
  top: 42%;
  right: 51px;
  transition: all .2s ease;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .c_btn_6:after {
    top: 45%;
    right: 31px;
  }
}
.c_btn_6:hover {
  background: #fff;
  color: #073763;
}
@media screen and (max-width: 768px) {
  .c_btn_6:hover {
    background: #073763;
    border: 1px solid #073763;
    color: #fff;
  }
}
.c_btn_6:hover:after {
  right: 49px;
}
@media screen and (max-width: 768px) {
  .c_btn_6:hover:after {
    right: 31px;
  }
}
.c_btn_6[target="_blank"]:before {
  display: none;
}
.c_btn_6[target="_blank"]:after {
  top: 50%;
  right: 48px;
  content: url(../img/common/btn-blank.svg);
}
@media screen and (max-width: 768px) {
  .c_btn_6[target="_blank"]:after {
    top: 55%;
    right: 24px;
  }
}
.c_btn_6[target="_blank"]:hover:after {
  right: 48px;
  content: url(../img/common/btn-blank-hover.svg);
}
@media screen and (max-width: 768px) {
  .c_btn_6[target="_blank"]:hover:after {
    right: 24px;
    content: url(../img/common/btn-blank.svg);
  }
}
.c_btn_6.pdf:before {
  display: none;
}
.c_btn_6.pdf:after {
  top: 52%;
  right: 48px;
  content: url(../img/common/pdf.svg);
}
@media screen and (max-width: 768px) {
  .c_btn_6.pdf:after {
    right: 23px;
  }
}
.c_btn_6.pdf:hover:after {
  right: 48px;
  content: url(../img/common/pdf-hover.svg);
}
@media screen and (max-width: 768px) {
  .c_btn_6.pdf:hover:after {
    right: 23px;
    content: url(../img/common/pdf.svg);
  }
}
.c_btn_6.bg {
  border: 1px solid #CA090A;
  background: #CA090A;
}
.c_btn_6.bg:before {
  border: 1px solid #CA090A;
}
.c_btn_6.bg:after {
  content: url(../img/p_top/btn-arrow1-red.svg);
}
@media screen and (min-width: 769px) {
  .c_btn_6.bg:hover {
    border: 1px solid #CA090A;
    background: #fff;
    color: #CA090A;
  }
}
.c_btn_6.bg.pdf:after {
  content: url(../img/common/pdf.svg);
}
.c_btn_6.bg.pdf:hover:after {
  content: url(../img/common/pdf-hover-red.svg);
}
.c_btn_6.bg[target="_blank"]:after {
  content: url(../img/common/btn-blank.svg);
}
.c_btn_6.bg[target="_blank"]:hover:after {
  content: url(../img/common/btn-blank-hover-red.svg) !important;
}

.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_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_btn_search {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background: #0D3863;
  width: 240px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid #0D3863;
  transition: all .2s ease;
}
.c_btn_search:hover {
  color: #0D3863;
  background: #fff;
}
.c_btn_search:hover span:before {
  content: url(../img/common/search-ico-hover.svg);
}
.c_btn_search span {
  padding: 0 0 0 30px;
  position: relative;
}
.c_btn_search span:before {
  content: url(../img/common/search-ico.svg);
  position: absolute;
  top: 0;
  left: 0;
}

.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_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: "Roboto",serif;
  font-size: 20px;
  color: #0072BB;
}
.c_pager_num span.current,
.c_pager_num a.current {
  background: #0072BB;
  color: #fff;
  border-radius: 50%;
}
.c_pager_num span.prev,
.c_pager_num a.prev {
  margin: 0 40px 0 0;
  border: 1px solid #0072BB;
  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: 50%;
  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: #0072BB;
  }
  .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 #0072BB;
  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: 50%;
  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: #0072BB;
  }
  .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
====================================================================== */
body.open {
  position: relative;
}
body.open:before {
  content: "";
  width: 100vw;
  height: 100vh;
  background: #000;
  position: fixed;
  top: 0;
  left: 0;
  background: #1170C3;
  opacity: 0.7;
  z-index: 2;
}

/* #wpadminbar {
  opacity: 0;
  pointer-events: none;
  display: none;
} */

/* =================================
 l_container
================================= */
.l_container {
  position: relative;
  overflow: hidden;
}

/* =================================
 l_header
================================= */
.u_pc.subheader {
  width: 1180px;
  display: flex;
  justify-content: flex-end;
  padding: 20px 40px 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .u_pc.subheader {
    display: none;
  }
}
.u_pc.subheader .line1 {
  padding: 0;
}
.u_pc.subheader .line1 .submenu {
  display: flex;
  justify-content: flex-end;
  gap: 0 40px;
}
.u_pc.subheader .line1 .submenu li {
  position: relative;
}
.u_pc.subheader .line1 .submenu li:before {
  content: "";
  width: 1px;
  height: 100%;
  background: #E8E8E8;
  position: absolute;
  top: 0;
  left: -21px;
}
.u_pc.subheader .line1 .submenu li a {
  color: #241E1C;
  transition: all .2s linear;
}
.u_pc.subheader .line1 .submenu li a:hover {
  opacity: 0.7;
}

.l_header {
  padding: 0;
  position: fixed;
  top: 50px;
  left: 50%;
  background: transparent;
  transform: translateX(-50%);
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .l_header {
    padding: 0 4.6875vw 0;
    width: 100vw;
    height: 0;
    top: 20px;
  }
}
.l_header .inner {
  width: 1180px;
}
@media screen and (max-width: 768px) {
  .l_header .inner {
    width: 100%;
  }
}
.l_header .inner .line2 {
  z-index: 10;
  background: #fff;
  position: relative;
  margin: 0;
  padding: 0 40px 0 40px;
  border-radius: 999px;
  display: flex;
  border-radius: 999px 999px;
  gap: 0 35px;
  align-items: center;
}
.l_header .inner .line2._active {
  border-radius: 33px 33px 0 0;
}
.l_header .inner .header-menus {
  overflow: hidden;
  display: flex;
  padding: 20px 0 0;
}
.l_header .inner .header-menus li > a.u_txt_1 {
  font-weight: bold;
  display: block;
  padding: 0 15px;
  color: #241E1C;
  height: 100%;
}
.l_header .inner .header-menus li > a.u_txt_1:before {
  position: absolute;
  content: "";
  opacity: 0;
  bottom: -40px;
  transition: all .5s ease;
}
.l_header .inner .header-menus li > a.u_txt_1:hover {
  color: #2370C3;
  position: relative;
}
.l_header .inner .header-menus li > a.u_txt_1:hover:before {
  opacity: 1;
  content: "";
  background: #2370C3;
  width: 100%;
  height: 5px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.l_header .inner .header-menus .mega {
  padding: 0 15px;
  padding-bottom: 20px;
  cursor: pointer;
}
.l_header .inner .header-menus .mega-icontxt {
  position: relative;
  font-weight: bold;
}
.l_header .inner .header-menus .mega .mega-icontxt:before {
  position: absolute;
  opacity: 0;
  bottom: -63px;
  left: -15px;
  content: "";
  transition: all .5s ease;
}
.l_header .inner .header-menus .mega:hover .mega-icontxt {
  color: #2370C3;
  position: relative;
}
.l_header .inner .header-menus .mega:hover .mega-icontxt:before {
  opacity: 1;
  width: calc(100% + 30px);
  height: 5px;
  background: #2270C3;
  position: absolute;
  bottom: -23px;
  left: -15px;
  z-index: 2;
}
.l_header .inner .header-menus .mega._active .mega-icontxt {
  color: #2370C3;
  position: relative;
}
.l_header .inner .header-menus .mega._active .mega-icontxt:before {
  opacity: 1;
  content: "";
  width: calc(100% + 30px);
  height: 5px;
  background: #2270C3;
  position: absolute;
  bottom: -23px;
  left: -15px;
  z-index: 2;
}
.l_header .inner .header-menus .mega._active .megamenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.l_header .inner .header-menus .btnflex {
  margin: 0 0 0 12px;
}
.l_header .inner .header-menus .btnflex a:not(:first-of-type) {
  margin: 0 0 0 15px;
}
.l_header .u_sp .inner {
  width: auto;
  display: inline-block;
  transform: translateX(0);
  padding: 12px 20px;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0px 0px 9px 2px rgba(0, 16, 51, 0.1);
}
.l_header .u_sp .logo img {
  width: 189px;
}
.l_header .menubtn {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  top: 0;
  right: 4.6875vw;
  position: fixed;
  box-shadow: 0px 0px 9px 2px rgba(0, 16, 51, 0.1);
}
.l_header .menubtn .border {
  position: absolute;
  width: 22px;
  height: 1px;
  background: #333333;
  left: 50%;
  transform: translateX(-50%);
}
.l_header .menubtn .border1 {
  top: 18px;
  transition: all .2s ease;
  opacity: 1;
}
.l_header .menubtn .border2 {
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all .2s ease;
  opacity: 1;
}
.l_header .menubtn .border3 {
  top: 31px;
  transition: all .2s ease;
  opacity: 1;
}
.l_header .menubtn._active .border1 {
  top: 24px;
  left: 14px;
  transform: rotate(45deg);
}
.l_header .menubtn._active .border3 {
  top: 24px;
  left: 14px;
  transform: rotate(-45deg);
}
.l_header .menubtn._active .border2 {
  opacity: 0;
}
.l_header .spmenu {
  display: none;
  width: calc(100% + 4.6875vw);
  padding: 25px 0 0;
  background: #fff;
  margin: 20px 0 0;
  border-radius: 30px 0 0 30px;
  transform: translateX(100%);
  transition: all .4s ease;
}
@media screen and (max-width: 768px) {
  .l_header .spmenu {
    display: block;
  }
}
.l_header .spmenu._active {
  transform: translateX(0);
}
.l_header .spmenu .spttl {
  padding: 0 4.6875vw 20px 25px;
  position: relative;
}
.l_header .spmenu .spttl:after {
  content: "";
  width: calc(100% - 4.6875vw - 25px);
  height: 1px;
  background: #E8E8E8;
  position: absolute;
  bottom: 0;
  left: 25px;
}
.l_header .spmenu .spttl.none:after {
  display: none;
}
.l_header .spmenu .spttl.none .togglebtn:after {
  top: 42%;
  transform: rotate(-135deg);
}
.l_header .spmenu .spttl span {
  display: block;
  width: 100%;
  position: relative;
}
.l_header .spmenu .spttl span:before {
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #1170C3;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.l_header .spmenu .spttl span:after {
  content: "";
  width: 6px;
  height: 6px;
  border-bottom: 1px solid #1170C3;
  border-right: 1px solid #1170C3;
  transform: rotate(45deg) translate(-50%, -50%);
  transform-origin: center;
  position: absolute;
  top: 50%;
  right: 13px;
  transition: .3s;
}
.l_header .spmenu .spttl span.is_open:after {
  transform: rotate(-135deg);
}
.l_header .spmenu .spttl2 {
  padding: 20px 4.6875vw 20px 25px;
  position: relative;
}
.l_header .spmenu .spttl2:before {
  content: "";
  width: calc(100% - 4.6875vw - 25px);
  height: 1px;
  background: #E8E8E8;
  position: absolute;
  bottom: 0;
  left: 25px;
}
.l_header .spmenu .spttl2.none:before {
  display: none;
}
.l_header .spmenu .spttl2.none .togglebtn2:after {
  top: 42%;
  transform: rotate(-135deg);
}
.l_header .spmenu .spttl2 span {
  display: block;
  width: 100%;
  position: relative;
}
.l_header .spmenu .spttl2 span:before {
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #1170C3;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.l_header .spmenu .spttl2 span:after {
  content: "";
  width: 6px;
  height: 6px;
  border-bottom: 1px solid #1170C3;
  border-right: 1px solid #1170C3;
  transform: rotate(45deg) translate(-50%, -50%);
  transform-origin: center;
  position: absolute;
  top: 50%;
  right: 13px;
  transition: .3s;
}
.l_header .spmenu .spttl2 span.is_open:after {
  transform: rotate(-135deg);
}
.l_header .spmenu .scrollwrap {
  border-radius: 0 0 0 30px;
  overflow: scroll;
}
.l_header .spmenu .scrollwrap.open {
  height: calc(100vh - 250px);
}
.l_header .spmenu .subbox {
  padding: 30px 4.6875vw 30px 25px;
  background: #F6F7F9;
}
.l_header .spmenu .subbox .txt1 {
  margin-bottom: 5px;
}
.l_header .spmenu .subbox:not(:first-of-type) {
  position: relative;
}
.l_header .spmenu .subbox:not(:first-of-type):before {
  content: "";
  width: calc(100% - 4.6875vw - 25px);
  left: 25px;
  height: 1px;
  background: #E8E8E8;
  top: 0;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .l_header .spmenu .subbox a.u_txt_1 {
    color: #000;
  }
  .l_header .spmenu .subbox a.u_txt_1.blue {
    color: #1170C3;
  }
}
.l_header .spmenu .subbox a.u_txt_1.dots {
  padding: 0 0 0 15px;
  position: relative;
}
.l_header .spmenu .subbox a.u_txt_1.dots:before {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  top: 10px;
  background: #1170C3;
  left: 0;
  border-radius: 50%;
}
.l_header .spmenu .subbox .u_txt_2 {
  color: #241E1C;
}
.l_header .spmenu .subbox li {
  margin: 15px 0 0;
}
.l_header .spmenu .subbox .ttlbox:not(:first-of-type) {
  margin: 15px 0 0;
}
.l_header .spmenu .subbox .ttlbox a {
  color: #241E1C;
}
.l_header .spmenu .spmenubox {
  padding: 0 4.6875vw 30px 25px;
}
.l_header .spmenu .toggle {
  display: none;
}
.l_header .spmenu .spmenubox .spmenubox-lists {
  padding: 30px 0;
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #E8E8E8;
  gap: 30px 0;
}
.l_header .spmenu .spmenubox .spmenubox-lists li {
  width: 50%;
}
.l_header .spmenu .spmenubox .spmenubox-lists li a {
  color: #241E1C;
}
.l_header .spmenu .spmenubox .flex {
  padding: 30px 0 0;
  display: flex;
}
.l_header .spmenu .spmenubox .flex-item {
  width: 50%;
  display: flex;
  flex-direction: column;
}
.l_header .spmenu .spmenubox .flex-item > ul li:not(:first-of-type) {
  margin: 15px 0 0;
}
.l_header .spmenu .spmenubox .flex-item > ul li a {
  color: #241E1C;
}
.l_header .spmenu .spmenubox .flex-item-btn {
  font-size: 16px;
  color: #fff;
  background: #0D3863;
  font-weight: bold;
  width: 165px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
}
.l_header .spmenu .spmenubox .flex-item-btn:not(:first-of-type) {
  background: #C90A0A;
  margin: 12px 0 0;
}
.l_header .cover-bg {
  background: rgba(17, 112, 195, 0.7);
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: -50px;
  left: calc( ( -100vw + 1180px ) / 2 );
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}
.l_header .cover-bg._active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.l_header .megamenu {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  padding: 40px;
  position: absolute;
  top: 65px;
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 0 0 33px 33px;
  border-top: 1px solid #E3E3E3;
}
.l_header .megamenu.show {
  display: block;
}
.l_header .megamenu-flex {
  display: flex;
}
.l_header .megamenu-box:not(:first-of-type) {
  margin: 0 0 0 40px;
}
.l_header .megamenu-title {
  color: #1170C3;
  font-weight: bold;
}
.l_header .megamenu-subtitle {
  padding: 0 0 0 16px;
  position: relative;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.8;
  color: #000;
}
.l_header .megamenu-subtitle:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1170C3;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.l_header .megamenu-subtitle a {
  color: #000;
}
.l_header .megamenu-lists {
  margin: 10px 0 0;
  padding: 0 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 15px 0;
}
.l_header .megamenu-list a {
  color: #241E1C;
}
.l_header .megamenu-listbox {
  margin: 20px 0 0;
}
.l_header .megamenu-listbox-flex {
  display: flex;
}
.l_header .megamenu-listbox-flex-item:nth-of-type(2) {
  margin: 0 0 0 40px;
}
.l_header .megamenu-listbox-flex-item:nth-of-type(3) {
  margin: 0 0 0 40px;
}
.l_header .megamenu-listbox-flex-item:nth-of-type(4) {
  margin: 0 0 0 40px;
}

/* =================================
 l_breadcrumbs
================================= */
.l_breadcrumbs {
  width: 1100px;
  margin: 0 auto;
  min-height: 60px;
}
.l_breadcrumbs .breadcrumbs {
  padding: 95px 0 0;
  font-size: 12px;
  color: #AAAAAA;
}
@media screen and (max-width: 768px) {
  .l_breadcrumbs .breadcrumbs {
    padding: 85px 4.6875vw 0;
  }
}
.l_breadcrumbs .breadcrumbs > span {
  display: flex;
  gap: 0 10px;
  align-items: center;
}
.l_breadcrumbs .breadcrumbs > span > span:first-of-type a {
  content: url(../img/common/home.svg);
}
.l_breadcrumbs .breadcrumbs > span > span:first-of-type >span:first-of-type a {
  content: normal;
  color: #241E1C;
  font-weight: bold;
}
.l_breadcrumbs .breadcrumbs > span > span:not(:first-of-type) a {
  color: #241E1C;
  font-weight: bold;
}

/* =================================
 l_main_visual
================================= */
.l_main_visual {
  margin: 20px 0 0;
  padding: 0 0 100px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .l_main_visual {
    padding: 0 0 50px;
  }
}
.l_main_visual.imgnone {
  margin: 0;
  padding: 30px 0 50px;
}
.l_main_visual.imgnone:before {
  top: -180px;
}
.l_main_visual.imgnone .inner .txtbox {
  width: 100%;
}
.l_main_visual:before {
  content: url(../img/common/mv-ico.svg);
  position: absolute;
  top: -120px;
  right: -390px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .l_main_visual:before {
    top: -60px;
    right: -230px;
    content: url(../img/common/sp/mv-ico.svg);
  }
}
.l_main_visual:after {
  content: url(../img/common/mv-ico2.svg);
  position: absolute;
  top: -810px;
  left: -380px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .l_main_visual:after {
    top: -410px;
    left: -310px;
    content: url(../img/common/sp/mv-ico2.svg);
  }
}
.l_main_visual .inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  padding: 0 0 0 calc( ( 100% - 1100px ) / 2 );
  align-items: center;
}
@media screen and (max-width: 768px) {
  .l_main_visual .inner {
    padding: 0;
    flex-direction: column;
  }
}
.l_main_visual .inner .txtbox {
  width: calc(100% - 920px);
}
@media screen and (max-width: 1350px) {
  .l_main_visual .inner .txtbox {
    width: calc(100% - 720px);
  }
}
@media screen and (max-width: 1050px) {
  .l_main_visual .inner .txtbox {
    width: calc(100% - 520px);
  }
}
@media screen and (max-width: 850px) {
  .l_main_visual .inner .txtbox {
    width: calc(100% - 420px);
  }
}
@media screen and (max-width: 768px) {
  .l_main_visual .inner .txtbox {
    width: 100%;
    padding: 0 4.6875vw;
  }
}
.l_main_visual .inner h1 {
  display: flex;
  flex-direction: column;
}
.l_main_visual .inner h1 .en {
  font-size: 72px;
  font-weight: bold;
  color: #1170C3;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .l_main_visual .inner h1 .en {
    font-size: 44px;
  }
}
.l_main_visual .inner h1 .ja {
  margin: 15px 0 0;
  font-size: 16px;
  position: relative;
  padding: 0 0 0 22px;
}
@media screen and (max-width: 768px) {
  .l_main_visual .inner h1 .ja {
    margin: 5px 0 0;
  }
}
.l_main_visual .inner h1 .ja:before {
  content: "";
  width: 10px;
  height: 10px;
  background: #CCE7FF;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}
.l_main_visual .inner h1 .ja:after {
  content: "";
  width: 6px;
  height: 6px;
  background: #1170C3;
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  border-radius: 50%;
}
.l_main_visual .inner .mvbg {
  width: 920px;
  height: 330px;
  background: url(../img/p_enex_reason/mv.png);
  background-position: left bottom;
  background-size: cover;
  transition: all .5s ease;
}
@media screen and (max-width: 1350px) {
  .l_main_visual .inner .mvbg {
    max-width: 720px;
    height: 330px;
  }
}
@media screen and (max-width: 1050px) {
  .l_main_visual .inner .mvbg {
    max-width: 520px;
    height: 330px;
  }
}
@media screen and (max-width: 850px) {
  .l_main_visual .inner .mvbg {
    max-width: 420px;
  }
}
@media screen and (max-width: 768px) {
  .l_main_visual .inner .mvbg {
    max-width: -webkit-fill-available;
    padding-top: 36%;
    height: auto;
    margin: 20px 0 0 4.6875vw;
    background: url(../img/p_enex_reason/sp/mv.png);
    background-size: cover;
  }
}

/* =================================
 l_content
================================= */
/* =================================
 l_main
================================= */
/* =================================
 l_cv
================================= */
.l_cv {
  background: url(../img/common/cvbg.png);
  background-size: cover;
  padding: 100px 0 230px;
  background-position: center center;
}
@media screen and (max-width: 768px) {
  .l_cv {
    padding: 21vw 4.6875vw 29vw;
    background: url(../img/p_top/sp/cvbg.png);
    background-size: cover;
    background-position: center bottom;
  }
}
.l_cv > .inner {
  width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .l_cv > .inner {
    width: 100%;
    flex-direction: column;
  }
}
.l_cv > .inner .txtbox .title {
  color: #0E3964;
  font-size: 60px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .l_cv > .inner .txtbox .title {
    font-size: 36px;
  }
}
.l_cv > .inner .txtbox .u_txt_1 {
  margin-top: 20px;
}
.l_cv > .inner .btnbox {
  width: 400px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .l_cv > .inner .btnbox {
    width: 100%;
    margin: 30px 0 0;
  }
}
.l_cv > .inner .btnbox .c_btn_2:not(:first-of-type) {
  margin: 30px 0 0;
}
@media screen and (max-width: 768px) {
  .l_cv > .inner .btnbox .c_btn_2:not(:first-of-type) {
    margin: 20px 0 0;
  }
}

/* =================================
 l_footer
================================= */
.l_footer .l_footer_item1 {
  padding: 75px 0 60px;
  border-bottom: 1px solid #E3E3E3;
}
@media screen and (max-width: 768px) {
  .l_footer .l_footer_item1 {
    padding: 50px 4.6875vw;
  }
}
.l_footer .l_footer_item1 > .inner {
  width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .l_footer .l_footer_item1 > .inner {
    width: 100%;
    flex-wrap: wrap;
  }
}
.l_footer .l_footer_item2 {
  width: 1100px;
  margin: 0 auto;
  padding: 30px 0;
}
@media screen and (max-width: 768px) {
  .l_footer .l_footer_item2 {
    width: 100%;
    padding: 20px 4.6875vw;
  }
  .l_footer .l_footer_item2 .inner img {
    width: 243px;
  }
}
.l_footer .l_footer_item2 a {
  display: inline-block;
}
.l_footer .l_footer_box {
  padding: 0 0 0 30px;
  border-left: 1px solid #E3E3E3;
}
.l_footer .l_footer_box .u_pc {
  margin: 20px 0 0;
}
.l_footer .l_footer_box .row {
  margin: 10px 0 0;
}
@media screen and (max-width: 768px) {
  .l_footer .l_footer_box {
    border-left: none;
    padding: 0;
  }
  .l_footer .l_footer_box._full {
    width: 100%;
    margin: 10px 0 !important;
  }
  .l_footer .l_footer_box .row {
    padding: 0 15px;
    display: flex;
    width: 100%;
    margin: 10px 0;
  }
  .l_footer .l_footer_box .row li {
    width: 100%;
  }
  .l_footer .l_footer_box .row li .u_txt_2 {
    padding: 0;
  }
}
.l_footer .l_footer_box:nth-of-type(4), .l_footer .l_footer_box:nth-of-type(5) {
  padding: 0 0 0 15px;
}
@media screen and (max-width: 768px) {
  .l_footer .l_footer_box:nth-of-type(4), .l_footer .l_footer_box:nth-of-type(5) {
    width: 100%;
    padding: 0;
  }
  .l_footer .l_footer_box:nth-of-type(4) ul li a, .l_footer .l_footer_box:nth-of-type(5) ul li a {
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .l_footer .l_footer_box:nth-of-type(4) {
    margin: 0 0 10px;
  }
}
.l_footer .l_footer_box ul {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
}
.l_footer .l_footer_box .u_txt_1 {
  font-weight: bold;
  position: relative;
  padding: 0 0 0 15px;
  color: #000;
}
.l_footer .l_footer_box .u_txt_1:before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  background: #1170C3;
  border-radius: 50%;
  top: 10px;
  left: 0;
}
.l_footer .l_footer_box .u_txt_2 {
  color: #000;
  padding: 0 0 0 15px;
}
.l_footer .l_footer_item3 {
  color: #fff;
  background: #525252;
  text-align: center;
  padding: 12px 0;
  font-size: 12px;
}

/* ======================================================================
 layout p_top
====================================================================== */
/* =================================
 l_main_visual_top
================================= */
.l_main_visual_top {
  padding: 170px 0 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .l_main_visual_top {
    padding: 85px 0 0;
  }
}
.l_main_visual_top:before {
  position: absolute;
  content: url(../img/p_top/mv-ico1.svg);
  top: -690px;
  left: -350px;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .l_main_visual_top:before {
    content: url(../img/p_top/sp/mv-ico1.svg);
    top: -320px;
    left: -266px;
    z-index: 0;
  }
}
.l_main_visual_top .inner {
  width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.l_main_visual_top .inner img {
  width: 638px;
}
@media (min-width: 500px) and (max-width: 768px) {
  .l_main_visual_top .inner img {
    width: auto;
    max-width: 530px;
  }
}
@media (max-width: 500px) {
  .l_main_visual_top .inner img {
    position: relative;
    z-index: 1;
    width: 76vw;
  }
}

/*# sourceMappingURL=style.css.map */
