@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,500,700|Roboto+Condensed:400,700&display=swap");

/*!
 * ress.css • v1.1.1
 * MIT License
 * github.com/filipelinhares/ress
 */
/* # =================================================================
   # Global selectors
   # ================================================================= */
html {
  box-sizing: border-box;
  overflow-y: scroll;
  /* All browsers without overlaying scrollbars */
  -webkit-text-size-adjust: 100%;
  /* iOS 8+ */
  font-size: 62.5%;
}

*,
::before,
::after {
  box-sizing: inherit;
}

::before,
::after {
  text-decoration: inherit;
  /* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
  vertical-align: inherit;
}

/* Remove margin, padding of all elements and set background-no-repeat as default */
* {
  background-repeat: no-repeat;
  /* Set `background-repeat: no-repeat` to all elements */
  padding: 0;
  /* Reset `padding` and `margin` of all elements */
  margin: 0;
  color: #222;
  font-style: normal;
  font: 16px/160% "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-feature-settings: "palt";
}

/* # =================================================================
   # General elements
   # ================================================================= */
/* Add the correct display in iOS 4-7.*/
audio:not([controls]) {
  display: none;
  height: 0;
}

hr {
  overflow: visible;
  /* Show the overflow in Edge and IE */
}

/*
* Correct `block` display not defined for any HTML5 element in IE 8/9
* Correct `block` display not defined for `details` or `summary` in IE 10/11
* and Firefox
* Correct `block` display not defined for `main` in IE 11
*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

summary {
  display: list-item;
  /* Add the correct display in all browsers */
}

small {
  font-size: 80%;
  /* Set font-size to 80% in `small` elements */
}

[hidden],
template {
  display: none;
  /* Add the correct display in IE */
}

abbr[title] {
  border-bottom: 1px dotted;
  /* Add a bordered underline effect in all browsers */
  text-decoration: none;
  /* Remove text decoration in Firefox 40+ */
}

a {
  background-color: transparent;
  /* Remove the gray background on active links in IE 10 */
  -webkit-text-decoration-skip: objects;
  /* Remove gaps in links underline in iOS 8+ and Safari 8+ */
}

a:active,
a:hover {
  outline-width: 0;
  /* Remove the outline when hovering in all browsers */
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  /* Specify the font family of code elements */
}

b,
strong {
  font-weight: bolder;
  /* Correct style set to `bold` in Edge 12+, Safari 6.2+, and Chrome 18+ */
}

dfn {
  font-style: italic;
  /* Address styling not present in Safari and Chrome */
}

/* Address styling not present in IE 8/9 */
mark {
  background-color: #ff0;
  color: #000;
}

/* https://gist.github.com/unruthless/413930 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

li {
  list-style-type: none;
}

/* # =================================================================
   # Forms
   # ================================================================= */
input {
  border-radius: 0;
}

/* Apply cursor pointer to button elements */
button,
[type="button"],
[type="reset"],
[type="submit"] [role="button"] {
  cursor: pointer;
}

/* Replace pointer cursor in disabled elements */
[disabled] {
  cursor: default;
}

[type="number"] {
  width: auto;
  /* Firefox 36+ */
}

[type="search"] {
  -webkit-appearance: textfield;
  /* Safari 8+ */
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
  /* Safari 8 */
}

textarea {
  overflow: auto;
  /* Internet Explorer 11+ */
  resize: vertical;
  /* Specify textarea resizability */
}

button,
input,
optgroup,
select,
textarea {
  font: inherit;
  /* Specify font inheritance of form elements */
}

optgroup {
  font-weight: bold;
  /* Restore the font weight unset by the previous rule. */
}

button {
  overflow: visible;
  /* Address `overflow` set to `hidden` in IE 8/9/10/11 */
}

/* Remove inner padding and border in Firefox 4+ */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: 0;
  padding: 0;
}

/* Replace focus style removed in the border reset above */
button:-moz-focusring,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  outline: 1px dotted ButtonText;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* Correct the inability to style clickable types in iOS */
}

button,
select {
  text-transform: none;
  /* Firefox 40+, Internet Explorer 11- */
}

/* Remove the default button styling in all browsers */
button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
  color: inherit;
}

/* Style select like a standard input */
select {
  -moz-appearance: none;
  /* Firefox 36+ */
  -webkit-appearance: none;
  /* Chrome 41+ */
}

select::-ms-expand {
  display: none;
  /* Internet Explorer 11+ */
}

select::-ms-value {
  color: currentColor;
  /* Internet Explorer 11+ */
}

legend {
  border: 0;
  /* Correct `color` not being inherited in IE 8/9/10/11 */
  color: inherit;
  /* Correct the color inheritance from `fieldset` elements in IE */
  display: table;
  /* Correct the text wrapping in Edge and IE */
  max-width: 100%;
  /* Correct the text wrapping in Edge and IE */
  white-space: normal;
  /* Correct the text wrapping in Edge and IE */
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* Correct the inability to style clickable types in iOS and Safari */
  font: inherit;
  /* Change font properties to `inherit` in Chrome and Safari */
}

[type="search"] {
  -webkit-appearance: textfield;
  /* Correct the odd appearance in Chrome and Safari */
  outline-offset: -2px;
  /* Correct the outline style in Safari */
}

/* # =================================================================
   # Specify media element style
   # ================================================================= */
img {
  border-style: none;
  /* Remove border when inside `a` element in IE 8/9/10 */
}

/* Add the correct vertical alignment in Chrome, Firefox, and Opera */
progress {
  vertical-align: baseline;
}

svg:not(:root) {
  overflow: hidden;
  /* Internet Explorer 11- */
}

audio,
canvas,
progress,
video {
  display: inline-block;
  /* Internet Explorer 11+, Windows Phone 8.1+ */
}

/* # =================================================================
   # Accessibility
   # ================================================================= */
/* Hide content from screens but not screenreaders */
@media screen {
  [hidden~="screen"] {
    display: inherit;
  }

  [hidden~="screen"]:not(:active):not(:focus):not(:target) {
    position: absolute !important;
    clip: rect(0 0 0 0) !important;
  }
}

/* Specify the progress cursor of updating elements */
[aria-busy="true"] {
  cursor: progress;
}

/* Specify the pointer cursor of trigger elements */
[aria-controls] {
  cursor: pointer;
}

/* Specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements */
[aria-disabled] {
  cursor: default;
}

/* # =================================================================
   # Selection
   # ================================================================= */
/* Specify text selection background color and omit drop shadow */
::-moz-selection {
  background-color: #b3d4fc;
  /* Required when declaring ::selection */
  color: #000;
  text-shadow: none;
}

::selection {
  background-color: #b3d4fc;
  /* Required when declaring ::selection */
  color: #000;
  text-shadow: none;
}

/*
html{
  font-size: 62.5%;
}

body{
margin:0;
padding:0}

div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,figure,input,textarea,p,blockquote,table,th,td,address{
margin:0;
padding:0;
color:$main_color;
font-style:normal;
font:13px/160% verdana, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック",  Osaka, sans-serif;
font-size: 1.3rem
}

select,
input,
button,
textarea{
font-size:99%;
}

table{
border-collapse:collapse;
border-spacing:0;
font-size:inherit;
font:100%}

textarea,input{margin:0;padding:0}

caption,th{text-align:left}
td,th{vertical-align: top}

fieldset,img,abbr{border:none}
li{list-style-type:none}
hr{display:none}

strong{font-weight:bold}


*/
main div,
main p,
main ul,
main dl,
main ol,
main h2,
main h3,
main h4,
main table {
  margin: 0 0 20px;
}

a,
a:link {
  color: #1d1f87;
  text-decoration: none;
}

a:visited {
  color: #1d1f87;
}

a:hover {
  color: #1d1f87;
}

#wrapper {
  padding-top: 110px;
}

@media screen and (max-width: 1320px) {
  #wrapper {
    padding-top: 70px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  height: 112px;
  z-index: 1000;
}

.header__inner {
  display: flex;
  justify-content: space-between;
}

.header__link {
  display: flex;
}
.header__logo {
  padding: 20px 40px 0;
}
.header__logo img {
  display: block;
}
.header__sns {
  padding: 25px 0 0;
}
.header__sns a {
  display: inline-block;
  text-align: center;
}
.header__sns > a:nth-of-type(2) {
  margin: 0 5px;
}
.header__sns img {
  width: 80%;
  vertical-align: bottom;
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header__navItems {
  display: flex;
  height: 100%;
}

.header__navItem {
  height: 100%;
  transition-duration: 200ms;
  border-bottom: #fff 2px solid;
}

.header__navItem:hover {
  border-color: #1d2088;
  background: #1d2088;
}

.header__navItem:hover a {
  color: #fff;
}

.header__navItemLink {
  text-decoration: none;
  display: flex;
  align-items: center;
  font-weight: 500;
  padding: 0 25px;
  height: 100%;
}

.header__btns {
  display: flex;
}

.header__btnItem {
  border-left: #fff 2px solid;
  border-bottom: #fff 2px solid;
  width: 112px;
  height: 112px;
}

.header__btnItem a {
  display: block;
}

.header__btnItem a img {
  display: block;
  width: 110px;
  height: 110px;
  transition-property: opacity;
  transition-duration: 200ms;
}

.header__btnItem a:hover img {
  opacity: 0;
}

.header__btnItem:first-child a {
  background: url("../img/common/headerNav01_on.png") no-repeat 0 0;
}

.header__btnItem:last-child {
  display: none;
}

.header__btnItem img {
  display: block;
}

.header__subMenuWrap {
  background: #1d2088;
  position: absolute;
  left: 0;
  top: 112px;
  width: 100%;
  display: none;
}

.header__subMenu {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 45px 0;
}

.header__subMenu a {
  transition-duration: 200ms;
  display: block;
  /* text-align: center; */
}

.header__subMenu a:hover {
  opacity: 0.5;
}

.header__subMenu.__service .header__subMenuItem {
  width: 25%;
  /* text-align: center; */
}
.header__subMenu.__campaign {
  justify-content: center;
}
.header__subMenu.__campaign .header__subMenuItem {
  width: 25%;
}

/* .header__subMenu.__service .header__subMenuItem:nth-child(2),
.header__subMenu.__service .header__subMenuItem:nth-child(3),
.header__subMenu.__service .header__subMenuItem:nth-child(6),
.header__subMenu.__service .header__subMenuItem:nth-child(7) {
  text-align: center;
} */

/* .header__subMenu.__service .header__subMenuItem:nth-child(3) {
  padding-left: 4em;
} */

/* .header__subMenu.__service .header__subMenuItem:nth-child(6) {
  margin-left: -1em;
} */

/* .header__subMenu.__service .header__subMenuItem:nth-child(4) {
  text-align: right;
} */

.header__subMenu.__service .header__subMenuItem:nth-child(5),
.header__subMenu.__service .header__subMenuItem:nth-child(6),
.header__subMenu.__service .header__subMenuItem:nth-child(7),
.header__subMenu.__service .header__subMenuItem:nth-child(8),
.header__subMenu.__service .header__subMenuItem:nth-child(9) {
  margin-top: 45px;
}

.header__subMenuItemLink {
  color: #fff !important;
  font-size: 16px;
}

.header__subMenuItemLink::after {
  content: "";
  background: url("../img/common/arrow_white.png") no-repeat;
  display: inline-block;
  background-size: contain;
  width: 8px;
  height: 12px;
  vertical-align: middle;
  margin-left: 10px;
  position: relative;
  top: -2px;
}
@media screen and (max-width: 1320px) {
  .header {
    height: 70px;
  }

  .header__inner {
    display: flex;
    justify-content: space-between;
    z-index: 9999;
    background: #fff;
  }

  .header__logo {
    padding: 11px 15px 0 15px;
  }

  .header__logo img {
    display: block;
    width: 89px;
  }
  .header__sns {
    padding: 15px 0 0 0;
  }
  .header__sns a {
    max-width: 30px;
  }
  .header__sns > a:nth-of-type(2) {
    margin: 0 8px;
  }
  .header__sns img {
    width: 100%;
  }

  .header__nav {
    display: flex;
    align-items: center;
  }

  .header__navItems {
    position: fixed;
    top: 70px;
    left: 0;
    background: #1d2088;
    display: none;
    width: 100%;
    height: calc(100% - 70px);
    overflow: scroll;
    transform: translateY(-100%);
    transition-duration: 200ms;
    transition-timing-function: ease-out;
    z-index: -1;
  }

  .header__navItems.open {
    transform: translateY(0);
  }

  .header__navItem {
    height: auto;
    border-bottom: none;
    text-align: center;
  }

  .header__navItem:nth-child(3),
  .header__navItem:nth-child(5) {
    border-bottom: #fff 1px solid;
  }

  .header__navItem:hover {
    border-color: #fff;
  }

  .header__navItem:first-child {
    display: none;
  }

  .header__navItem.u--smp-only {
    border-bottom: none;
  }

  .header__navItem.u--smp-only .header__navItemLink {
    padding: 30px;
  }

  .header__navItem.u--smp-only .header__navItemLink::after {
    content: none;
  }

  .header__navItem.u--smp-only .header__navItemLink span {
    width: 28px;
    height: 2px;
    background: #fff;
    display: block;
    position: absolute;
    top: 50%;
    left: calc(50% - 14px);
  }

  .header__navItem.u--smp-only .header__navItemLink span:first-child {
    transform: rotate(45deg);
  }

  .header__navItem.u--smp-only .header__navItemLink span:last-child {
    transform: rotate(-45deg);
  }

  .header__navItemLink {
    color: #fff !important;
    font-size: 20px;
    text-align: center;
    padding: 20px;
    display: block;
    position: relative;
  }

  .header__navItemLink::after {
    content: "";
    background: url("../img/common/arrow_white.png") no-repeat;
    background-size: contain;
    width: 5px;
    height: 8px;
    display: inline-block;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
  }

  .header__btns {
    display: flex;
  }

  .header__btnItem {
    border-left: #fff 2px solid;
    width: 72px;
    height: 70px;
  }

  .header__btnItem a {
    background-size: contain !important;
  }

  .header__btnItem a img {
    width: 70px;
    height: 70px;
  }

  .header__btnItem:last-child {
    display: block;
  }

  .header__btnItem:last-child a {
    position: relative;
    display: block;
    width: 70px;
    height: 70px;
  }

  .header__btnItem:last-child a span {
    display: block;
    position: absolute;
    transition-duration: 200ms;
    left: 20px;
    top: 34px;
    width: 28px;
    height: 2px;
    background: #1d2088;
  }

  .header__btnItem:last-child a span:first-child {
    top: 24px;
  }

  .header__btnItem:last-child a span:last-child {
    top: 44px;
  }

  .header__btnItem:last-child a.open span:first-child {
    top: 34px;
    transform: rotate(-45deg);
  }

  .header__btnItem:last-child a.open span:nth-child(2) {
    opacity: 0;
  }

  .header__btnItem:last-child a.open span:last-child {
    top: 34px;
    transform: rotate(45deg);
  }

  .header__btnItem img {
    display: block;
    width: 70px;
    height: 70px;
  }

  .header__subMenuWrap {
    position: static;
    display: block;
  }

  .header__subMenu {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    border-top: #494d9f 1px solid;
    background: #fff;
  }

  .header__subMenu.__service .header__subMenuItem,
  .header__subMenu.__campaign .header__subMenuItem {
    width: 50%;
    padding: 0 !important;
    margin: 0 !important;
  }

  .header__subMenu.__service .header__subMenuItem:nth-child(5),
  .header__subMenu.__service .header__subMenuItem:nth-child(6),
  .header__subMenu.__service .header__subMenuItem:nth-child(7) {
    margin-top: 0;
  }

  /* .header__subMenu.__service .header__subMenuItem:nth-child(7), */
  /* .header__subMenu.__service .header__subMenuItem:nth-child(8), */
  /* .header__subMenu.__service .header__subMenuItem:nth-child(9), */
  .header__subMenu .header__subMenuItem.sp_none {
    display: none;
  }

  .header__subMenuItem {
    width: 50%;
    text-align: left !important;
    display: flex;
  }
  /*
  .header__subMenuItem:nth-child(5) a,
  .header__subMenuItem:nth-child(6) a {
    border-bottom: none;
  } */
  .header__subMenuItem:nth-last-child(1) a {
    border-bottom: none;
  }

  .header__subMenuItemLink {
    color: #1d2088 !important;
    background: #fff;
    font-size: 15px;
    position: relative;
    display: block;
    border-bottom: #494d9f 1px solid;
    padding: 15px;
    width: 100%;
  }

  .header__subMenuItemLink:hover {
    opacity: 1 !important;
  }

  .header__subMenuItemLink:nth-child(odd) {
    border-right: #494d9f 1px solid;
  }

  .header__subMenuItemLink::after {
    content: "";
    background: url("../img/common/arrow_white.png");
    background-size: contain;
    width: 5px;
    height: 8px;
    display: inline-block;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
  }
}

@media screen and (max-width: 768px) {
  .header__sns a {
    max-width: 25px;
  }
}

#contents .main__title {
  background: #f1f1f1;
  text-align: center;
  padding: 70px 0 55px;
  margin-bottom: 10px;
}

#contents .main__title a {
  display: block;
}

#contents .main__title p {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 54px;
  color: #1d2088;
  line-height: 1.3;
  margin-bottom: 10px;
}

#contents .main__title p::before,
#contents .main__title p::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}

#contents .main__title p::before {
  margin-bottom: calc(-0.3462962963em + 0px);
}

#contents .main__title p::after {
  margin-top: calc(-0.1425925926em + 0px);
}

#contents .main__titleSub {
  color: #1d2088;
  line-height: 1.3;
  font-size: 20px;
  font-weight: 500;
}

#contents .main__titleSub::before,
#contents .main__titleSub::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}

#contents .main__titleSub::before {
  margin-bottom: calc(-0.3462962963em + 0px);
}

#contents .main__titleSub::after {
  margin-top: calc(-0.1425925926em + 0px);
}

#contents main .topicPath {
  display: flex;
  max-width: 1050px;
  margin: 0 auto 10px;
  padding: 0 25px;
}

#contents main .topicPath li {
  color: #444;
  font-size: 12px;
}

#contents main .topicPath li::before {
  content: "／";
  margin: 0 10px;
}

#contents main .topicPath li:first-child::before {
  content: none;
}

#contents main .topicPath li a {
  color: inherit;
  font-size: inherit;
}

#contents main .page {
  padding-bottom: 120px;
}

#contents main .page__title {
  color: #1d2088;
  font-size: 30px;
  font-weight: 600;
  text-align: center;
  border-bottom: #ededed 2px solid;
  padding-bottom: 40px;
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  #contents .main__title {
    padding: 25px 0;
    margin-bottom: 10px;
  }

  #contents .main__title p {
    font-size: 35px;
    margin-bottom: 5px;
  }

  #contents .main__titleSub {
    font-size: 14px;
    line-height: 1.3;
  }

  #contents .main__titleSub::before,
  #contents .main__titleSub::after {
    content: "";
    display: block;
    height: 0;
    width: 0;
  }

  #contents .main__titleSub::before {
    margin-bottom: calc(-0.3462962963em + 0px);
  }

  #contents .main__titleSub::after {
    margin-top: calc(-0.1425925926em + 0px);
  }

  #contents main {
    max-width: 1000px;
    margin: 0 25px;
  }

  #contents main .topicPath {
    margin: 0 0 30px;
    padding: 0;
  }

  #contents main .topicPath li {
    color: #444;
    font-size: 11px;
    font-weight: 500;
  }

  #contents main .topicPath li::before {
    margin: 0 5px;
  }

  #contents main .topicPath li a {
    font-weight: 500;
    font-size: 11px;
  }

  #contents main .page {
    padding-bottom: 75px;
  }

  #contents main .page__title {
    font-size: 23px;
    padding-bottom: 25px;
    margin-bottom: 25px;
    line-height: 1.3;
  }

  #contents main .page__title::before,
  #contents main .page__title::after {
    content: "";
    display: block;
    height: 0;
    width: 0;
  }

  #contents main .page__title::before {
    margin-bottom: calc(-0.3462962963em + 0px);
  }

  #contents main .page__title::after {
    margin-top: calc(-0.1425925926em + 0px);
  }
}

.footer {
  background: #1d1f87;
  position: relative;
}

.footer .pagetop {
  position: absolute;
  right: 40px;
  top: -90px;
  bottom: auto;
}

.footer .pagetop.fixed {
  position: fixed;
  right: 40px;
  bottom: 40px;
  width: 50px;
  height: 50px;
  top: auto;
}

.footer .pagetop a {
  width: 50px;
  height: 50px;
  display: block;
  border: #1d2088 2px solid;
  overflow: hidden;
  text-indent: -9999px;
  position: relative;
}

.footer .pagetop a::before {
  width: 48px;
  height: 48px;
  background: url("../img/common/arrow_blue.png") no-repeat 50% 50%;
  background-size: 8px 12px;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
  transition-duration: 200ms;
}

.footer .pagetop a::after {
  width: 48px;
  height: 48px;
  background: #1d2088 url("../img/common/arrow_white.png") no-repeat 50% 50%;
  background-size: 8px 12px;
  content: "";
  position: absolute;
  top: 50px;
  left: 0;
  transform: rotate(-90deg);
  transition-duration: 200ms;
}

.footer .pagetop a:hover::before {
  transform: rotate(-90deg) translateX(50px);
}

.footer .pagetop a:hover::after {
  transform: rotate(-90deg) translateX(50px);
}

.footer__nav {
  border-bottom: 2px #fff solid;
  margin-bottom: 50px;
}

.footer__nav ul {
  display: flex;
}

.footer__nav ul li {
  width: 50%;
}

.footer__nav ul li:first-child {
  border-right: #fff 2px solid;
}

.footer__nav ul li:first-child a::after {
  content: "";
  background: url("../img/common/arrow_white.png") no-repeat;
  position: absolute;
  width: 8px;
  height: 12px;
  background-size: contain;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.footer__nav ul li:first-child a:hover::after {
  content: "";
  background-image: url("../img/common/arrow_blue.png");
}

.footer__nav ul li:last-child a::after {
  content: "";
  background: url("../img/common/icon_new_white.png") no-repeat;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  background-size: contain;
  width: 14px;
  height: 12px;
}

.footer__nav ul li:last-child a:hover::after {
  content: "";
  background-image: url("../img/common/icon_new_blue.png");
}

.footer__nav ul li a {
  color: #fff;
  position: relative;
  display: block;
  text-align: center;
  font-size: 32px;
  border: #1d2088 2px solid;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  overflow: hidden;
  padding: 32px 0;
  z-index: 999;
}

.footer__nav ul li a::before {
  font-size: inherit;
  color: inherit;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 1;
  left: 0;
  top: 0;
  content: "";
  transition: all 0.6s cubic-bezier(0.05, 0.06, 0.05, 0.95);
  background: #fff;
  transform: translateX(-100%);
  z-index: -1;
}

.footer__nav ul li a:hover {
  color: #1d2088;
  position: relative;
}

.footer__nav ul li a:hover::before {
  transform: translateX(0);
}

.footer__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.footer__group {
  margin-bottom: 50px;
}

.footer__groupWrap {
  max-width: 754px;
  margin: 0 auto;
}

.footer__groupTitle {
  color: #fff;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: left;
  font-size: 22px;
  text-align: center;
  margin-bottom: 20px;
}

.footer__groupListItems {
  display: flex;
  justify-content: center;
}
.footer__groupListItem {
  width: 31.5436241611%;
}
.footer__groupListItem + .footer__groupListItem {
  margin-left: 3%;
}

.footer__groupListItem a {
  display: block;
  transition-duration: 200ms;
}

.footer__groupListItem a:hover {
  opacity: 0.5;
}

.footer__groupListItem a img {
  display: block;
  max-width: 100%;
  height: auto;
  width: 100% \9;
}

.footer__other {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer__other .footer__groupWrap {
  width: 48%;
  position: relative;
}

.footer__other .footer__groupWrap:first-child::after {
  content: "";
  position: absolute;
  display: block;
  height: 70px;
  width: 2px;
  border-right: #494d9f 2px solid;
  right: -20px;
  bottom: 0;
}

.footer__other .footer__groupWrap .footer__groupListItem {
  width: 47.9166666667%;
}

.footer__logo {
  text-align: center;
  margin-bottom: 30px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-bottom: 50px;
  align-items: center;
}

.footer__bottomLink {
  display: flex;
}

.footer__bottomLinkItem {
  margin-left: 30px;
}

.footer__bottomLinkItem:first-child {
  margin-left: 0;
}

.footer__bottomLinkItem a {
  color: #fff;
  font-size: 14px;
  transition-duration: 200ms;
}

.footer__bottomLinkItem a:hover {
  opacity: 0.5;
}

.footer__bottomLinkItem a::after {
  content: "";
  background: url("../img/common/arrow_white.png") no-repeat;
  width: 8px;
  height: 12px;
  background-size: contain;
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}

.footer__bottomLinkItem a.ext::after {
  content: "";
  background: url("../img/common/icon_new_white.png") no-repeat;
  background-size: contain;
  width: 14px;
  height: 12px;
}

.footer__bottomCopy {
  color: #fff;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 11px;
}

@media screen and (max-width: 768px) {
  .footer .pagetop {
    right: 10px;
    top: -50px;
  }

  .footer .pagetop.fixed {
    position: fixed;
    right: 10px;
    bottom: 10px;
    width: 40px;
    height: 40px;
    top: auto;
  }

  .footer .pagetop a {
    width: 40px;
    height: 40px;
  }

  .footer .pagetop a::before {
    width: 36px;
    height: 36px;
    background-size: 8px 12px;
  }

  .footer .pagetop a::after {
    content: none;
  }

  .footer .pagetop a:hover::before {
    transform: rotate(-90deg);
  }

  .footer__nav {
    margin-bottom: 25px;
    border-bottom: none;
  }

  .footer__nav ul {
    display: block;
  }

  .footer__nav ul li {
    border-bottom: #fff 2px solid;
    width: auto;
  }

  .footer__nav ul li:first-child {
    border-right: none;
  }

  .footer__nav ul li:first-child a::before {
    content: none;
  }

  .footer__nav ul li:first-child a::after {
    content: "";
    background-image: url("../img/common/arrow_white.png");
    background-size: contain;
    width: 8px;
    height: 12px;
    right: 25px;
  }

  .footer__nav ul li:last-child a::before {
    content: none;
  }

  .footer__nav ul li:last-child a::after {
    content: "";
    background-image: url("../img/common/icon_new_white.png");
    background-size: contain;
    width: 14px;
    height: 13px;
    right: 25px;
  }

  .footer__nav ul li a {
    font-size: 20px;
    padding: 20px 0;
  }

  .footer__nav ul li a:hover {
    color: #fff;
  }

  .footer__inner {
    margin: 0 25px;
  }

  .footer__group {
    margin-bottom: 15px;
  }

  .footer__groupTitle {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .footer__groupListItems {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer__groupListItem {
    width: 47.8060046189%;
    margin-bottom: 15px;
    margin-left: 4.3879907621%;
  }

  .footer__groupListItem:nth-child(odd) {
    margin-left: 0;
  }

  .footer__groupListItem a {
    display: block;
  }

  .footer__groupListItem a img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    width: 100% \9;
  }

  .footer__other {
    display: block;
    margin-bottom: 15px;
  }

  .footer__other .footer__groupWrap {
    width: auto;
    position: relative;
  }

  .footer__other .footer__groupWrap:last-child dt {
    display: none;
  }

  .footer__other .footer__groupWrap:first-child {
    border-bottom: #494d9f 2px solid;
    margin-bottom: 20px;
  }

  .footer__other .footer__groupWrap:first-child::after {
    content: none;
  }

  .footer__logo {
    text-align: center;
    width: 83px;
    margin: 0 auto 25px;
  }

  .footer__logo img {
    max-width: 100%;
    height: auto;
    width: 100% \9;
    display: block;
  }

  .footer__bottom {
    display: block;
    padding-bottom: 25px;
  }

  .footer__bottomLink {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 20px;
  }

  .footer__bottomLinkItem {
    margin-left: 30px;
  }

  .footer__bottomLinkItem:first-child {
    margin-left: 0;
  }

  .footer__bottomLinkItem:nth-child(4n) {
    margin-left: 0;
  }

  .footer__bottomLinkItem a {
    color: #fff;
    font-size: 10px;
  }

  .footer__bottomLinkItem a::after {
    width: 6px;
    height: 10px;
  }

  .footer__bottomLinkItem a.ext::after {
    width: 10px;
    height: 9px;
  }

  .footer__bottomCopy {
    text-align: center;
    font-size: 10px;
  }
}

.u--pc-only {
  display: block;
}

.u--smp-only {
  display: none;
}

.u__btn {
  background: #1d2088;
  border: #1d2088 2px solid;
  overflow-y: hidden;
  position: relative;
}

.u__btn._reverse {
  background: #fff;
}
/* .page07__service .u__btn._reverse {
  display: none;
} */
.u__btn._reverse::before {
  background: #1d2088;
}

.u__btn._reverse .u__btnLink {
  color: #1d2088 !important;
}

.u__btn._reverse .u__btnLink::after {
  background: url("../img/common/arrow_blue.png") no-repeat;
  background-size: contain;
}

.u__btn._reverse:hover a {
  color: #fff !important;
}

.u__btn._reverse:hover a::after {
  background: url("../img/common/arrow_white.png") no-repeat;
  background-size: contain;
}

.u__btn::before {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 1;
  left: 0;
  top: 0;
  content: "";
  transition: all 0.6s cubic-bezier(0.05, 0.06, 0.05, 0.95);
  background: #fff;
  transform: translateX(-100%);
}

.u__btnLink {
  display: block;
  position: relative;
  overflow: hidden;
  text-align: center;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff !important;
  font-size: 18px;
  padding: 10px;
}

.u__btnLink::after {
  content: "";
  background: url("../img/common/arrow_white.png") no-repeat;
  width: 8px;
  height: 12px;
  background-size: contain;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
}

.u__btn:hover a {
  color: #1d2088 !important;
  position: relative;
}

.u__btn:hover a::after {
  background: url("../img/common/arrow_blue.png") no-repeat;
  background-size: contain;
}

.u__btn:hover::before {
  transform: translateX(0);
}

.u__scr {
  background: #f2f2f2;
  margin-bottom: 0;
}

.u__scrInner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 0 30px;
}

.u__scrInnerList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 0;
}

.u__scrInnerItem {
  width: 31.3%;
  margin-right: 3%;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
}

/*200814削除

.u__scrInnerItem:nth-child(2) a span {
    background: url("../img/page08/icon02.png") no-repeat 0 100%;
}

.u__scrInnerItem:nth-child(3) a span {
    background: url("../img/page08/icon03.png") no-repeat 0 100%;
}

.u__scrInnerItem:nth-child(4) a span {
    background: url("../img/page08/icon04.png") no-repeat 0 100%;
}

.u__scrInnerItem:nth-child(5) a span {
    background: url("../img/page08/icon05.png") no-repeat 0 100%;
}

.u__scrInnerItem:nth-child(6) a span {
    background: url("../img/page08/icon06.png") no-repeat 0 100%;
}

.u__scrInnerItem:nth-child(7) a span {
    background: url("../img/page08/icon07.png") no-repeat 0 100%;
}
*/

/*200814追加*/
.u__scrInnerItem:nth-child(1) a .page27__Linkicon {
  background: url("../img/page08/icon02.png") no-repeat 0 100%;
}

.u__scrInnerItem:nth-child(2) a .page27__Linkicon {
  background: url("../img/page08/icon03.png") no-repeat 0 100%;
}

.u__scrInnerItem:nth-child(3) a .page27__Linkicon {
  background: url("../img/page08/icon04.png") no-repeat 0 100%;
}

.u__scrInnerItem:nth-child(4) a .page27__Linkicon {
  background: url("../img/page08/icon05.png") no-repeat 0 100%;
}

/* 学生応援 */
.u__scrInnerItem:nth-child(5) a .page27__Linkicon {
  background: url("../img/page08/icon_gakuseichintiger.png") no-repeat 0 100%;
}
/* .u__scrInnerItem:nth-child(6) a span {
  background: url('../img/page08/icon_athlete.png') no-repeat 0 100%;
} */
.u__scrInnerItem:nth-child(6) a .page27__Linkicon {
  background: url("../img/page08/icon06.png") no-repeat 0 100%;
}
/* CMギャラリー */
.u__scrInnerItem:nth-child(7) a .page27__Linkicon {
  background: url("../img/page08/icon01.png") no-repeat 0 100%;
}
/* CSR・社会貢献活動 */
.u__scrInnerItem:nth-child(8) a .page27__Linkicon {
  background: url("../img/page08/ico_csr.png") no-repeat 0 100%;

  text-align: center;
}

.u__scrInnerItem::before {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 1;
  left: 0;
  top: 0;
  content: "";
  transition: all 0.6s cubic-bezier(0.05, 0.06, 0.05, 0.95);
  background: #1d2088;
  transform: translateX(-100%);
}

.u__scrInnerItem:hover a {
  color: #fff;
}

.u__scrInnerItem:hover a span {
  background-position: 0 0;
}

.u__scrInnerItem:hover a::after {
  background-image: url("../img/common/arrow_white.png");
}

.u__scrInnerItem:hover::before {
  transform: translateX(0);
}

.u__scrInnerItem:nth-child(3n) {
  margin-right: 0;
}

.u__scrInnerItem:last-child {
  margin-right: 0;
}

.u__scrInnerItemLink {
  border: #1d2088 2px solid;
  display: block;
  text-align: center;
  color: #1d2088;
  font-weight: 600;
  position: relative;
  font-size: 24px;
  padding: 20px 20px;
}
.u__scrInnerItemLink.adjust {
  text-indent: -1.5em;
}

/*200814追加*/
/* .u__scrInnerItem:nth-child(6) .u__scrInnerItemLink {
  font-size: 16px;
} */

.u__scrInnerItemLink span {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  margin-left: -10px;
  width: 60px;
  height: 54px;
}

.u__scrInnerItemLink::after {
  content: "";
  background: url("../img/common/arrow_blue.png") no-repeat;
  width: 8px;
  height: 12px;
  background-size: contain;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.u__com {
  background: #f2f2f2;
  margin-bottom: 0;
}

.u__comInner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 0 30px;
}

.u__comInnerList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 0;
}

.u__comInnerItem {
  width: 31.3%;
  margin-right: 6%;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
}

.u__comInnerItem:nth-child(1) a span {
  background: url("../img/page02/c01.png") no-repeat 0 100%;
}

.u__comInnerItem:nth-child(2) a span {
  background: url("../img/page02/c02.png") no-repeat 0 100%;
}

/* .u__comInnerItem:nth-child(3) a span {
  background: url("../img/page02/c03.png") no-repeat 0 100%;
} */

.u__comInnerItem:nth-child(3) a span {
  background: url("../img/page02/c04.png") no-repeat 0 100%;
}

.u__comInnerItem:nth-child(4) a span {
  background: url("../img/page02/c05.png") no-repeat 0 100%;
}

.u__comInnerItem::before {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 1;
  left: 0;
  top: 0;
  content: "";
  transition: all 0.6s cubic-bezier(0.05, 0.06, 0.05, 0.95);
  background: #1d2088;
  transform: translateX(-100%);
}

.u__comInnerItem:hover a {
  color: #fff;
}

.u__comInnerItem:hover a span {
  background-position: 0 0;
}

.u__comInnerItem:hover a::after {
  background-image: url("../img/common/arrow_white.png");
}

.u__comInnerItem:hover::before {
  transform: translateX(0);
}

.u__comInnerItem:nth-child(2n) {
  margin-right: 0;
}

.u__comInnerItem:last-child {
  margin-right: 0;
}

.u__comInnerItemLink {
  border: #1d2088 2px solid;
  display: block;
  text-align: center;
  color: #1d2088;
  font-weight: 600;
  position: relative;
  font-size: 24px;
  padding: 20px 20px;
}

.u__comInnerItemLink span {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  margin-left: -10px;
  width: 53px;
  height: 50px;
}

.u__comInnerItemLink::after {
  content: "";
  background: url("../img/common/arrow_blue.png") no-repeat;
  width: 8px;
  height: 12px;
  background-size: contain;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .u--pc-only {
    display: none;
  }

  .u--smp-only {
    display: block;
  }

  .u__btn._reverse:hover a {
    color: #1d2088 !important;
  }

  .u__btn._reverse:hover a::after {
    background: url("../img/common/arrow_blue.png") no-repeat;
    background-size: contain;
  }

  .u__btn._new .u__btnLink::after {
    content: "";
    background: url("../img/common/icon_new_blue.png") no-repeat;
    width: 10px;
    height: 9px;
    background-size: contain;
    right: 12px;
  }

  .u__btn._new .u__btnLink:hover::after {
    content: "";
    background: url("../img/common/icon_new_blue.png") no-repeat;
    width: 10px;
    height: 9px;
    background-size: contain;
    right: 12px;
  }

  .u__btn::before {
    content: none;
  }

  .u__btnLink {
    font-size: 14px;
    padding: 8px 10px;
  }

  .u__btnLink::after {
    content: "";
    background: url("../img/common/arrow_white.png") no-repeat;
    width: 6px;
    height: 10px;
    background-size: contain;
    right: 13px;
  }

  .u__btn:hover a {
    color: #1d2088 !important;
    position: relative;
  }

  .u__btn:hover a::after {
    content: "";
    background: url("../img/common/arrow_white.png") no-repeat;
    background-size: contain;
  }

  .u__scr {
    margin: 0 -25px;
  }

  .u__scrInner {
    padding: 70px 25px 80px;
  }

  .u__scrInnerList {
    display: block;
  }

  .u__scrInnerItem {
    width: auto;
    margin-right: 0;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
    background: #fff;
  }

  .u__scrInnerItem:hover::before {
    transform: translateX(0);
  }

  .u__scrInnerItem:nth-child(3n) {
    margin-right: 0;
  }

  .u__scrInnerItem:last-child {
    margin-right: 0;
    margin-bottom: 0;
  }

  .u__scrInnerItemLink {
    border: #1d2088 2px solid;
    display: block;
    text-align: center;
    color: #1d2088;
    font-weight: 600;
    position: relative;
    font-size: 25px;
    padding: 20px 20px;
    line-height: 1;
  }

  .u__scrInnerItemLink span {
    display: block;
    margin: 0 auto 2px;
  }

  .u__scrInnerItemLink::after {
    content: "";
    background: url("../img/common/arrow_blue.png") no-repeat;
    width: 8px;
    height: 12px;
    background-size: contain;
    position: absolute;
    right: 23px;
    top: 50%;
    transform: translateY(-50%);
  }

  .u__com {
    margin: 0 -25px;
  }

  .u__comInner {
    padding: 70px 25px 80px;
  }

  .u__comInnerList {
    display: block;
  }

  .u__comInnerItem {
    width: auto;
    margin-right: 0;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
    background: #fff;
  }

  .u__comInnerItem:hover::before {
    transform: translateX(0);
  }

  .u__comInnerItem:nth-child(3n) {
    margin-right: 0;
  }

  .u__comInnerItem:last-child {
    margin-right: 0;
    margin-bottom: 0;
  }

  .u__comInnerItemLink {
    border: #1d2088 2px solid;
    display: block;
    text-align: center;
    color: #1d2088;
    font-weight: 600;
    position: relative;
    font-size: 25px;
    padding: 20px 20px;
    line-height: 1;
  }

  .u__comInnerItemLink span {
    display: block;
    margin: 0 auto 2px;
  }

  .u__comInnerItemLink::after {
    content: "";
    background: url("../img/common/arrow_blue.png") no-repeat;
    width: 8px;
    height: 12px;
    background-size: contain;
    position: absolute;
    right: 23px;
    top: 50%;
    transform: translateY(-50%);
  }
}

.page02 {
  max-width: 1050px;
  padding: 0 25px;
  margin: 0 auto;
}

.page02__lead {
  text-align: center;
  margin-bottom: 60px;
}

.page02__lead::before {
  content: url("../img/page02/tiger.png");
  display: block;
  text-align: center;
  border-bottom: #1d2088 1px solid;
  margin-bottom: 60px;
  line-height: 1;
  font-size: 0;
}

.page02__leadTitle {
  color: #1d2088;
  font-weight: 600;
  font-size: 30px;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.3;
}

.page02__leadTitle::before,
.page02__leadTitle::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}

.page02__leadTitle::before {
  margin-bottom: calc(-0.3462962963em + 0px);
}

.page02__leadTitle::after {
  margin-top: calc(-0.1425925926em + 0px);
}

.page02__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.page02__listItem {
  width: 29.3%;
  margin-right: 8%;
  margin-bottom: 70px;
}

.page02__listItemImage {
  margin-bottom: 25px;
}

.page02__listItemImage img {
  display: block;
  margin: 0 auto;
}

.page02__listItem:nth-child(2),
.page02__listItem:last-child {
  margin-right: 0;
}

.page02__listItemTitle {
  color: #1d2088;
  font-size: 30px;
  font-weight: 600;
  text-align: center;
}

.page02__listItemTxt {
  color: #444;
  text-align: center;
  font-weight: 500;
  margin-bottom: 25px;
}

@media screen and (max-width: 768px) {
  .page02 {
    padding: 0 0 40px !important;
    margin-top: -10px;
  }

  .page02__lead {
    text-align: center;
    margin-bottom: 30px;
  }

  .page02__lead::before {
    content: "";
    background: url("../img/page02/tiger.png") no-repeat 50% 0;
    background-size: auto 65px;
    height: 65px;
    display: block;
    margin-bottom: 30px;
  }

  .page02__leadTitle {
    font-size: 23px;
    margin-bottom: 25px;
  }

  .page02__leadTxt {
    font-size: 14px;
    line-height: 26px;
    text-align: left;
  }

  .page02__list {
    display: block;
  }

  .page02__listItem {
    width: auto;
    margin-right: 0;
    margin-bottom: 30px;
  }

  .page02__listItemWrap {
    display: flex;
    align-items: flex-end;
    margin-bottom: 0;
  }

  .page02__listItemImage {
    margin-bottom: 10px;
  }

  .page02__listItemImage img {
    height: 45px;
  }

  .page02__listItemTitle {
    color: #1d2088;
    font-size: 23px;
    margin-left: 10px;
    margin-bottom: 10px;
  }

  .page02__listItemTxt {
    text-align: left;
    font-size: 14px;
    margin-bottom: 14px;
  }
}

.page03 {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 25px;
}

.page03__leadBlock {
  text-align: center;
  /* margin-bottom: 100px; */
  margin-bottom: 40px;
}

.page03__leadBlockImg {
  margin-bottom: 65px;
}

.page03__leadBlockImg img {
  max-width: 100%;
  height: auto;
  width: 100% \9;
}

.page03__leadBlockTitle {
  color: #1d2088;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 45px;
}

.page03__leadBlock p {
  font-size: 20px;
  /* margin-bottom: 45px; */
  margin-bottom: 0;
  font-weight: 500;
  line-height: 220%;
}

.page03__targetHgorup {
  margin-bottom: 55px;
  text-align: center;
}

.page03__targetTitle {
  color: #1d2088;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0;
  font-size: 54px;
  line-height: 1.3;
  margin-bottom: 5px;
}

.page03__targetTitle::before,
.page03__targetTitle::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}

.page03__targetTitle::before {
  margin-bottom: calc(-0.3462962963em + 0px);
}

.page03__targetTitle::after {
  margin-top: calc(-0.1425925926em + 0px);
}

.page03__targetTxt {
  color: #1d2088;
  font-size: 16px;
}

.page03__targetList {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0;
}

.page03__targetItem {
  width: 29.5%;
}

.page03__targetItem:first-child .page03__targetItemTitle dd {
  color: #84cc67;
}

.page03__targetItem:last-child .page03__targetItemTitle dd {
  color: #afd7f1;
}

.page03__targetItemImage {
  text-align: center;
  margin-bottom: 10px;
}

.page03__targetItemImage img {
  display: block;
  margin: 0 auto;
}

.page03__targetItemTitle {
  text-align: center;
}

.page03__targetItemTitle dt {
  font-weight: bold;
  color: #1d2088;
  font-weight: 600;
}

.page03__targetItemTitle dd {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  font-size: 60px;
  color: #ff76a1;
  opacity: 0.35;
}

.page03__targetItem p {
  font-weight: 500;
  margin-bottom: 40px;
}

.page03__targetItem p:last-of-type {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .page03 {
    padding: 0 !important;
    margin-bottom: 60px;
  }

  .page03__leadBlock {
    /* margin-bottom: 70px; */
    margin-bottom: 20px;
  }

  .page03__leadBlockImg {
    margin: 0 47px 25px;
  }

  .page03__leadBlockImg img {
    max-width: 100%;
    height: auto;
    width: 100% \9;
  }

  .page03__leadBlockTitle {
    font-size: 20px;
    margin-bottom: 25px;
  }

  .page03__leadBlock p {
    font-size: 15px;
    /* margin-bottom: 40px; */
  }

  .page03__targetHgorup {
    margin-bottom: 20px;
    text-align: center;
  }

  .page03__targetHgorup h3 {
    line-height: 1;
  }

  .page03__targetHgorup p {
    font-weight: 500;
  }

  .page03__targetTitle {
    font-size: 35px;
  }

  .page03__targetTxt {
    font-size: 14px;
  }

  .page03__targetList {
    display: block;
  }

  .page03__targetItem {
    width: auto;
    margin-bottom: 22px;
  }

  .page03__targetItemImage {
    text-align: center;
    margin-bottom: 5px;
  }

  .page03__targetItemImage img {
    width: 90px;
  }

  .page03__targetItemTitle {
    text-align: center;
    margin-bottom: 5px;
  }

  .page03__targetItemTitle dt {
    font-size: 14px;
    margin-bottom: 5px;
  }

  .page03__targetItemTitle dd {
    font-size: 42px;
  }

  .page03__targetItem p {
    font-size: 14px;
    margin-bottom: 0;
  }
}

.page04 {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 25px;
}

.page04__inner {
  max-width: 850px;
  margin: 40px auto 0;
  padding: 0 25px;
}

.page04__nav {
  display: flex;
  justify-content: space-between;
  margin-bottom: 55px;
}

.page04__navItem {
  width: 23%;
  border: #1d2088 2px solid;
  overflow-y: hidden;
  position: relative;
}

.page04__navItem::before {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 1;
  left: 0;
  top: 0;
  content: "";
  transition: all 0.6s cubic-bezier(0.05, 0.06, 0.05, 0.95);
  background: #1d2088;
  transform: translateX(-100%);
}

.page04__navItemLink {
  display: block;
  position: relative;
  font-weight: 600;
  overflow: hidden;
  text-align: center;
  color: #1d2088 !important;
  font-size: 16px;
  padding: 10px;
}

.page04__navItemLink::after {
  content: "";
  background: url("../img/common/arrow_blue.png") no-repeat;
  width: 8px;
  height: 12px;
  background-size: contain;
  position: absolute;
  right: 17px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
}

.page04__navItem:hover a {
  color: #fff !important;
  position: relative;
}

.page04__navItem:hover a::after {
  background: url("../img/common/arrow_white.png") no-repeat;
  background-size: contain;
}

.page04__navItem:hover::before {
  transform: translateX(0);
}

.page04__title {
  color: #1d2088;
  text-align: center;
  font-size: 30px;
  margin-bottom: 30px;
  font-weight: 600;
}

.page04__headOffice {
  margin-bottom: 100px;
}

.page04__headOfficeTable {
  border-top: #1d2088 1px solid;
  border-bottom: #1d2088 1px solid;
  border-collapse: collapse;
  width: 100%;
}

.page04__headOfficeTable tr:last-child th,
.page04__headOfficeTable tr:last-child td {
  border-bottom: none;
}

.page04__headOfficeTable tr th,
.page04__headOfficeTable tr td {
  padding: 22px 0;
  border-bottom: #d9d9d9 1px solid;
}

.page04__headOfficeTable tr th {
  text-align: left;
  color: #1d2088;
  font-weight: 600;
  padding-right: 80px;
  vertical-align: top;
}

.page04__headOfficeTable tr td iframe {
  margin-top: 42px;
}

.page04__headOfficeTable tr td table {
  width: auto;
  margin: 0;
}

.page04__headOfficeTable tr td table th,
.page04__headOfficeTable tr td table td {
  border-bottom: none;
  padding: 0;
}

.page04__headOfficeTable tr td table th {
  color: #222;
  padding-right: 10px;
  font-weight: 400;
}

.page04__branch {
  margin-bottom: 100px;
}

.page04__branchTable {
  width: 100%;
  border-top: #1d2088 1px solid;
  border-collapse: collapse;
}

.page04__branchTable tr th,
.page04__branchTable tr td {
  border-bottom: #1d2088 1px solid;
  padding: 20px 0;
}

.page04__branchTable tr th {
  vertical-align: top;
  text-align: left;
  padding-right: 40px;
}

.page04__branchTable tr td p,
.page04__branchTable tr td div {
  margin-bottom: 0;
}

.page04__branchTable tr td .page04__branchTableLink {
  text-align: right;
  margin-top: -28px;
}

.page04__branchTable tr td .page04__branchTableLink a {
  font-size: 14px;
  color: #222;
}

.page04__branchTable tr td .page04__branchTableLink a::after {
  content: "";
  background: url("../img/common/icon_new_blue.png") no-repeat;
  display: inline-block;
  width: 14px;
  height: 12px;
  background-size: contain;
  margin-left: 5px;
}

.page04__group {
  margin-bottom: 0;
}

.page04__groupList {
  border-top: #1d2088 1px solid;
  margin-bottom: 0;
}

.page04__groupListItem {
  border-bottom: #1d2088 1px solid;
  padding: 20px;
  position: relative;
}

.page04__groupListTitle {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.page04__groupListTitle dt {
  margin-right: 20px;
}

.page04__groupListTitle dd img {
  display: block;
}

.page04__groupListNext {
  padding-left: 115px;
}

.page04__groupListNext table th {
  padding-right: 10px;
  vertical-align: top;
}

.page04__groupListNextNote {
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .page04 {
    padding: 0 !important;
    margin-bottom: 80px;
  }

  .page04__inner {
    padding: 0;
  }

  .page04__nav {
    display: block;
    margin-bottom: 20px;
  }

  .page04__navItem {
    width: auto;
    margin-bottom: 5px;
  }

  .page04__navItem::before {
    content: none;
  }

  .page04__navItemLink {
    font-size: 14px;
    padding: 8px;
  }

  .page04__navItemLink::after {
    content: "";
    background: url("../img/common/arrow_blue.png") no-repeat;
    width: 8px;
    height: 12px;
    background-size: contain;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
  }

  .page04__navItem:hover a {
    color: #1d2088 !important;
  }

  .page04__navItem:hover a::after {
    background-image: url("../img/common/arrow_blue.png");
  }

  .page04__title {
    color: #1d2088;
    text-align: left;
    font-size: 23px;
    margin-bottom: 10px;
  }

  .page04__headOffice {
    margin-bottom: 50px;
  }

  .page04__headOfficeTable tr.u--smp-only {
    display: table-row;
  }

  .page04__headOfficeTable tr.map th,
  .page04__headOfficeTable tr.map td {
    border-bottom: none;
    padding-bottom: 0;
  }

  .page04__headOfficeTable tr th,
  .page04__headOfficeTable tr td {
    padding: 15px 0;
    font-size: 14px;
  }

  .page04__headOfficeTable tr th {
    padding-right: 20px;
    white-space: nowrap;
  }

  .page04__headOfficeTable tr td iframe {
    margin-top: 0;
    height: 227px;
  }

  .page04__headOfficeTable tr td table {
    width: auto;
    margin-bottom: 0;
  }

  .page04__headOfficeTable tr td table th,
  .page04__headOfficeTable tr td table td {
    border-bottom: none;
    padding: 0;
  }

  .page04__headOfficeTable tr td table th {
    color: #222;
    padding-right: 10px;
    font-weight: 400;
  }

  .page04__branch {
    margin-bottom: 50px;
  }

  .page04__branchTable {
    display: block;
    width: 100%;
  }

  .page04__branchTable tbody {
    display: block;
  }

  .page04__branchTable tr {
    display: block;
  }

  .page04__branchTable tr th,
  .page04__branchTable tr td {
    padding: 15px 0;
    display: block;
    font-size: 14px;
  }

  .page04__branchTable tr th {
    vertical-align: top;
    text-align: left;
    padding-right: 0;
    padding-bottom: 0;
    border-bottom: none;
  }

  .page04__branchTable tr td {
    border-bottom: #1d2088 1px solid;
  }

  .page04__branchTable tr td p,
  .page04__branchTable tr td div {
    font-size: 14px;
  }

  .page04__branchTable tr td .page04__branchTableLink {
    text-align: right;
    margin-top: -23px;
  }

  .page04__branchTable tr td .page04__branchTableLink a {
    font-size: 13px;
    font-weight: 500;
  }

  .page04__branchTable tr td .page04__branchTableLink a::after {
    width: 11px;
    height: 9px;
  }

  .page04__group {
    margin-bottom: 20px;
  }

  .page04__groupList {
    border-top: #1d2088 1px solid;
  }

  .page04__groupListItem {
    border-bottom: #1d2088 1px solid;
    padding: 20px 20px 20px 0;
    position: relative;
    cursor: pointer;
  }

  .page04__groupListItem::after {
    content: "";
    background: url("../img/common/arrow_blue.png") no-repeat;
    width: 6px;
    height: 11px;
    background-size: contain;
    position: absolute;
    right: 4px;
    top: 35px;
    transform: rotate(90deg);
  }

  .page04__groupListItem.open::after {
    transform: rotate(-90deg);
  }

  .page04__groupListTitle {
    display: flex;
    align-items: center;
    margin-bottom: 0;
  }

  .page04__groupListTitle dt {
    margin-right: 20px;
  }

  .page04__groupListTitle dt img {
    width: 62px;
  }

  .page04__groupListTitle dd {
    font-size: 14px;
  }

  .page04__groupListTitle dd img {
    display: block;
  }

  .page04__groupListNext {
    padding-left: 0;
    padding-top: 10px;
    display: none;
  }

  .page04__groupListNext table th,
  .page04__groupListNext table td {
    font-size: 14px;
  }

  .page04__groupListNext table th {
    white-space: nowrap;
    width: 82px;
  }

  .page04__groupListNextNote {
    font-size: 13px;
    padding-left: 82px;
  }
}

.page05 {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 25px;
}

.page05__title {
  color: #1d2088;
  text-align: center;
  font-size: 30px;
  margin-bottom: 30px;
  font-weight: 600;
}
.page05__nav {
  display: flex;
  width: 100%;
  max-width: 1000px;
}
/* 追従 */
#page05Nav.fixed {
  position: fixed;
  width: 100%;
  right: 0;
  left: 0;
  margin: auto;
  z-index: 2;
}
.page05__item {
  text-align: right;
  font-size: 16px;
  width: calc(100% / 5);
  position: relative;
}
.page05__item.pc_none {
  display: none;
}
.page05__item::before {
  content: "";
  display: block;
  border-right: 30px solid transparent;
  border-bottom: 20px solid #fff;
  border-left: 30px solid transparent;
  transform: rotate(90deg);
  position: absolute;
  top: 0;
  bottom: 0;
  right: -59px;
  z-index: 3;
}
.page05__item::after {
  content: "";
  display: block;
  border-right: 30px solid transparent;
  border-bottom: 20px solid #ccc;
  border-left: 30px solid transparent;
  transform: rotate(90deg);
  position: absolute;
  top: 0;
  bottom: 0;
  right: -56px;
  z-index: 3;
}
.page05__item.is-current::after {
  border-bottom: 20px solid #1d2088;
}
.page05__nav > li:last-child::before,
.page05__nav > li:last-child::after {
  content: none;
}

.page05__link {
  color: #1d2088;
  background-color: #ccc;
  padding: 1em;
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
/* スクロールで対応のsectionが現れた時色変更 */
.page05__item.is-current .page05__link {
  background-color: #1d2088;
}
.page05__item.is-current .page05__link > span {
  color: #fff;
}
.page05__link > span {
  display: block;
  width: 100%;
  color: #1d2088;
  font-size: 16px;
}
.page05__timliene {
  position: relative;
}
.page05__timliene > section + section {
  margin-top: 80px;
}
.page05__timliene::before {
  content: "";
  width: 4px;
  height: calc(100% + 60px);
  background-color: #1d2088;
  position: absolute;
  top: 0;
  left: 156px;
}
.page05__timliene::after {
  content: "";
  border-right: 15px solid transparent;
  border-bottom: 20px solid #1d2088;
  border-left: 15px solid transparent;
  transform: rotate(180deg);
  position: absolute;
  bottom: -65px;
  left: 143px;
}
.page05__dl {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
  position: relative;
}
.page05__dt {
  width: 21%;
  padding-top: 12px;
  margin-bottom: 0;
}
.page05__ym {
  display: block;
  position: relative;
  font-size: 24px;
  font-weight: 600;
  color: #1d2088;
  text-align: right;
  width: 65%;
}
.page05__ym::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-color: #1d2088;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 148px;
}
.page05__ym br {
  display: none;
}
.page05__dd {
  width: 78%;
  background-color: #f1f1f1;
  padding: 0.8em;
  position: relative;
  margin-bottom: 20px;
}
.page05__dl dd:last-child {
  margin-bottom: 0;
}
.page05__dd::before {
  content: "";
  display: block;
  border-right: 10px solid transparent;
  border-bottom: 20px solid #f1f1f1;
  border-left: 10px solid transparent;
  transform: rotate(-90deg);
  position: absolute;
  top: 16px;
  left: -15px;
  z-index: -1;
}
.page05__ul {
  margin-bottom: 0;
}
.page05__li {
  display: flex;
}
.page05__li + .page05__li {
  margin-top: 1em;
}
.page05__li::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #f1616f;
  margin: 8px 10px 0 0;
}
.page05__p,
.page05__txt {
  font-size: 16px;
  font-weight: 600;
  color: #1d2088;
  margin-bottom: 0;
}
.page05__txt {
  width: 100%;
}
.page05__p + .page05__p,
.page05__p + .page05__flex {
  margin-top: 20px;
}
.page05__blockSubLink {
  margin-bottom: 0;
}
.page05__blockSubLink a {
  text-decoration: underline;
  font-size: 16px;
  font-weight: 500;
}

.page05__blockSubLink a::after {
  background: url("../img/common/icon_new_blue.png") no-repeat;
  content: "";
  width: 16px;
  height: 14px;
  background-size: contain;
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}
.page05__flex {
  width: 100%;
  display: flex;
  margin-bottom: 0;
  justify-content: space-between;
}
.page05__flex + .page05__flex {
  margin-top: 20px;
}
.page05__txtbox,
.page05__imgbox,
.page05__pic {
  margin-bottom: 0;
}
.page05__txtbox + .page05__txtbox,
.page05__flex + .page05__txtbox,
.page05__txtbox + .page05__flex,
.page05__flex + .page05__p,
.page05__p + .page05__p {
  margin-top: 20px;
}
.page05__flex > .page05__txtbox {
  width: 70%;
}
.page05__imgbox {
  width: 28%;
}
.page05__pic.bg-w {
  background-color: #fff;
}
.page05__pic.bg_none {
  background-color: transparent;
  border: none;
}
.page05__img {
  max-width: 100%;
  vertical-align: bottom;
}
.page05__history {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-collapse: collapse;
  border-top: #1d2088 1px solid;
  border-bottom: #1d2088 1px solid;
}

.page05__history th.__last {
  border-bottom: none;
}

.page05__history tr:last-child th,
.page05__history tr:last-child td {
  border-bottom: none;
}

.page05__history th,
.page05__history td {
  padding: 20px 0;
  border-bottom: #d9d9d9 1px solid;
}

.page05__history th {
  vertical-align: top;
}
@media (min-width: 1100px) {
  .page05__history th.middle {
    vertical-align: middle;
  }
}

.page05__history th.page05__historyYear {
  color: #1d2088;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 24px;
  padding-right: 20px;
  white-space: nowrap;
  padding-top: 16px;
}

.page05__history th.page05__historyMonth {
  color: #1d2088;
  font-weight: 600;
  padding-right: 40px;
  white-space: nowrap;
}

@media screen and (max-width: 1280px) {
  .page05__ym {
    font-size: 2vw;
    width: 12vw;
  }
  .page05__ym::after {
    left: calc(140 / 1000 * 100vw);
  }
  .page05__timliene::before {
    left: calc(148 / 1000 * 100vw);
  }
  .page05__timliene::after {
    left: calc(133 / 1000 * 100vw);
  }
}
@media screen and (max-width: 1000px) {
  .page05__timliene::before {
    content: "";
    width: 4px;
    height: calc(100% + 60px);
    background-color: #1d2088;
    position: absolute;
    top: 0;
    /* left: calc(130 / 1000 * 100vw); */
  }
  .page05__timliene::after {
    content: "";
    border-right: 15px solid transparent;
    border-bottom: 20px solid #1d2088;
    border-left: 15px solid transparent;
    transform: rotate(180deg);
    position: absolute;
    bottom: -65px;
    /* left: calc(113 / 1000 * 100vw); */
  }
  .page05__ym {
    font-size: 2vw;
    /* text-align: left; */
    width: 10vw;
    line-height: 1;
  }
  .page05__ym::after {
    top: 5px;
    /* left: calc(125 / 1000 * 100vw); */
  }
  .page05__ym br {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .page05__ym::after {
    width: 13px;
    height: 13px;
  }
  .page05 {
    /* padding: 0 !important; */
    padding: 0 0 75px;
  }

  .page05__title {
    color: #1d2088;
    font-size: 23px;
    margin-bottom: 10px;
  }

  .page05__nav {
    flex-wrap: wrap;
    /* flex-direction: column; */
  }
  .page05__item.pc_none {
    display: block;
  }
  #page05Nav.fixed {
    width: 100%;
  }
  .page05__item {
    width: calc(100% / 3);
    text-align: center;
    border-top: 2px #fff solid;
    border-left: 1px #fff solid;
    border-right: 1px #fff solid;
  }
  /* .page05__nav li:first-child {
    border-top: none;
  } */
  .page05__item::before,
  .page05__item::after {
    content: none;
  }
  /* .page05__item::before {
    content: '';
    display: block;
    border-right: 16px solid transparent;
    border-bottom: 10px solid #fff;
    border-left: 16px solid transparent;
    transform: rotate(90deg);
    position: absolute;
    top: 0;
    bottom: 0;
    right: -32px;
    z-index: 3;
  }
  .page05__item::after {
    content: '';
    display: block;
    border-right: 16px solid transparent;
    border-bottom: 10px solid #ccc;
    border-left: 16px solid transparent;
    transform: rotate(90deg);
    position: absolute;
    top: 0;
    bottom: 0;
    right: -29px;
    z-index: 3;
  } */
  .page05__link {
    padding: 1rem 0.1rem;
    word-break: break-all;
  }
  /* .page05__link > span {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
    width: 100%;
    top: 0;
    bottom: 0;
    line-height: 2;
  } */
  .page05__link > span {
    font-size: 14px;
  }
  .page05__link > span::before {
    content: "";
    border-right: 5px solid transparent;
    border-bottom: 5px solid #1d1f87;
    border-left: 5px solid transparent;
    transform: rotate(180deg);
    position: absolute;
    right: 8px;
    bottom: 18px;
    margin: auto;
  }
  .page05__link > span::after {
    content: "";
    border-right: 5px solid transparent;
    border-bottom: 5px solid #ccc;
    border-left: 5px solid transparent;
    transform: rotate(180deg);
    position: absolute;
    right: 8px;
    bottom: 20px;
    margin: auto;
  }
  .page05__link.is-active > span::before {
    border-bottom: 5px solid #fff;
  }
  .page05__link.is-active > span::after {
    border-bottom: 5px solid #1d1f87;
  }
  .page05__item.pc_none .page05__link > span::before,
  .page05__item.pc_none .page05__link > span::after {
    content: none;
  }
  /* .page05__link > span::after {
    content: '';
    border-right: 5px solid transparent;
    border-bottom: 10px solid #1d2088;
    border-left: 5px solid transparent;
    transform: rotate(180deg);
    position: absolute;
    left: calc(113 / 1000 * 100vw);
  } */
  .page05__flex {
    flex-direction: column;
  }

  .page05__flex > .page05__txtbox {
    width: 100%;
  }
  .page05__timliene {
    position: relative;
  }

  .page05__p,
  .page05__txt {
    font-size: 12px;
  }
  .page05__imgbox {
    width: 100%;
  }
  .page05__txtbox + .page05__imgbox {
    margin-top: 10px;
  }
  .page05__blockSubLink a {
    font-size: 12px;
  }
  .page05__li::before {
    width: 8px;
    height: 8px;
  }

  .page05__blockSubLink a::after {
    width: 11px;
    height: 9px;
  }
  .page05__history {
    margin-bottom: 70px;
  }

  .page05__history th,
  .page05__history td {
    padding: 20px 0;
    border-bottom: #d9d9d9 1px solid;
  }

  .page05__history th {
    vertical-align: top;
  }

  .page05__history th.page05__historyYear {
    font-size: 16px;
    padding-right: 10px;
    padding-top: 18px;
  }

  .page05__history th.page05__historyMonth {
    padding-right: 20px;
    white-space: nowrap;
    font-size: 13px;
  }

  .page05__history td {
    font-size: 14px;
  }
}

@media screen and (max-width: 425px) {
  .page05__timliene::before {
    left: 53px;
  }
  .page05__timliene::after {
    left: 39px;
  }
  .page05__ym {
    font-size: 12px;
    width: 11vw;
  }
  .page05__ym::after {
    left: 48px;
  }
}

.page06 {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 25px;
}

.page06__inner {
  max-width: 800px;
  margin: 0 auto;
}

.page06__inner > section {
  margin-bottom: 60px;
}

.page06__inner > section + section {
  margin-bottom: 0;
}

.page06__inner > section > section {
  margin-bottom: 60px;
}

.page06__inner > section > section:last-child {
  margin-bottom: 0;
}

.page06__inner > section > section:last-child table {
  margin-bottom: 0;
}

.page06__title {
  color: #1d2088;
  font-weight: 600;
  font-size: 30px;
  margin-bottom: 25px;
}

.page06__title span {
  color: inherit;
  font-weight: inherit;
}

.page06__subTitle {
  color: #1d2088;
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 20px;
}

.page06__table {
  width: 100%;
  border-collapse: collapse;
  border-top: #1d2088 1px solid;
  border-bottom: #1d2088 1px solid;
}

.page06__table tr:last-child th,
.page06__table tr:last-child td {
  border: none;
}

.page06__table tr th,
.page06__table tr td {
  padding: 20px;
  border-bottom: #d9d9d9 1px solid;
}

.page06__table tr th {
  background: #f1f1f1;
  text-align: left;
  color: #1d2088;
  font-weight: 600;
}

.page06__table tr th:first-child {
  width: 20%;
  border-right: #d9d9d9 1px solid;
}

.page06__table tr td a {
  color: #222;
}

.page06__table tr td a::after {
  content: "PDF";
  margin-left: 10px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 13px;
  padding: 2px 7px;
  color: #e40000;
  border: #e40000 2px solid;
}

.page06__table tr td a span {
  font-size: 13px;
  color: #878787;
  display: inline-block;
  margin-left: 10px;
}

.page06__table tr td:first-child {
  width: 20%;
  border-right: #d9d9d9 1px solid;
}

@media screen and (max-width: 768px) {
  .page06 {
    padding: 0 !important;
    margin-bottom: 80px;
  }

  .page06__inner > section {
    margin-bottom: 30px;
  }

  .page06__inner > section > section {
    margin-bottom: 30px;
  }

  .page06__title {
    font-size: 23px;
    margin-bottom: 10px;
  }

  .page06__title span {
    color: inherit;
    font-weight: inherit;
    font-size: 14px;
    font-weight: 400;
  }

  .page06__subTitle {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.3;
  }

  .page06__subTitle::before,
  .page06__subTitle::after {
    content: "";
    display: block;
    height: 0;
    width: 0;
  }

  .page06__subTitle::before {
    margin-bottom: calc(-0.3462962963em + 0px);
  }

  .page06__subTitle::after {
    margin-top: calc(-0.1425925926em + 0px);
  }

  .page06__table {
    margin-bottom: 50px;
  }

  .page06__table tr th,
  .page06__table tr td {
    padding: 20px 10px;
    font-size: 14px;
  }

  .page06__table tr td a {
    font-size: 14px;
  }

  .page06__table tr td a::after {
    content: "PDF";
    margin-left: 10px;
    font-size: 9px;
    padding: 1px 5px;
  }

  .page06__table tr td a span {
    font-size: 10px;
    margin-left: 5px;
  }

  .page06__table tr td:first-child {
    width: 35%;
    border-right: #d9d9d9 1px solid;
    white-space: nowrap;
    font-weight: 600;
  }
}

.page07 {
  max-width: 1050px;
  padding: 0 25px;
  margin: 0 auto;
}

.page07__section.__first {
  margin-bottom: 100px;
}

.page07__section.__first p {
  text-align: center;
}

.page07__section.__first figure {
  text-align: center;
}

.page07__section.__first figure img {
  display: block;
  max-width: 100%;
  height: auto;
  width: 100% \9;
  margin: 0 auto;
}

.page07__lead {
  text-align: center;
  margin-bottom: 100px;
}

.page07__lead::before {
  content: url("../img/page07/tiger.png");
  display: block;
  text-align: center;
  border-bottom: #1d2088 1px solid;
  margin-bottom: 60px;
  line-height: 1;
  font-size: 0;
}

.page07__leadTitle {
  color: #1d2088;
  font-weight: 600;
  font-size: 30px;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.3;
}

.page07__leadTitle::before,
.page07__leadTitle::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}

.page07__leadTitle::before {
  margin-bottom: calc(-0.3462962963em + 0px);
}

.page07__leadTitle::after {
  margin-top: calc(-0.1425925926em + 0px);
}

.page07__leadTxt {
  font-size: 18px;
  font-weight: 600;
  line-height: 32px;
}

.page07__services {
  display: flex;
  border-bottom: #d9d9d9 1px solid;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.page07__services.__last {
  border-color: #1d2088;
}

.page07__service {
  width: 31.4%;
  margin-right: 3%;
  position: relative;
  padding-bottom: 0;
}
.page07__service.flex {
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
}

.page07__service:last-child {
  margin-right: 0;
}

.page07__service dl {
  margin-bottom: 150px;
}
@media screen and (max-width: 896px) {
  .page07__service dl {
    margin-bottom: 170px;
  }
}

.page07__serviceImage {
  margin-bottom: 20px;
}

.page07__serviceImage img {
  max-width: 100%;
  height: auto;
  width: 100% \9;
  display: block;
}

.page07__serviceImage a {
  transition-duration: 200ms;
  display: block;
}

.page07__serviceImage a:hover {
  opacity: 0.5;
}

.page07__serviceTitle {
  color: #1d2088;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

.page07__serviceTitle__block {
  color: #1d2088;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-left: 15px;
  text-align: center;
}

@media screen and (max-width: 896px) {
  .page07__serviceTitle__block {
    display: block;
    padding-left: 0;
  }
}

@media screen and (max-width: 768px) {
  .page07__serviceTitle__block {
    font-size: 18px;
    display: inline;
    padding-left: 10px;
  }
}

.page07__serviceTxt {
  font-size: 14px;
}
.page07__serviceTxt.height {
  min-height: 134px;
}
.page07__marginTop {
  margin-top: 58px;
}

@media screen and (max-width: 768px) {
  .page07__serviceTxt.height {
    min-height: auto;
  }
}

.page07__serviceTxt a {
  font-size: 14px;
}

.page07__serviceTxt._red {
  color: #ff0000;
}

.service__sns {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.service__sns a {
  display: inline-block;
  text-align: center;
}
.service__sns > a:nth-of-type(2) {
  margin: 0 5px;
}
.service__sns img {
  width: 80%;
  vertical-align: bottom;
}
.service__LinkBox {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 160px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (min-width: 769px) {
  .service__LinkBoxBottom {
    bottom: 70px;
  }
}
.service__LinkBox > .page07__serviceLink {
  margin-bottom: 0;
}

.page07__serviceLink a {
  font-size: 16px;
}

.page07__serviceLink a::after {
  content: none;
}

@media screen and (max-width: 768px) {
  .page07 {
    padding: 0 !important;
    margin-top: -10px;
    margin-bottom: 70px;
  }

  .page07__section.__first {
    margin-bottom: 70px;
  }

  .page07__section.__first p {
    text-align: left;
  }

  .page07__lead {
    text-align: center;
    margin-bottom: 70px;
  }

  .page07__lead::before {
    content: "";
    background: url("../img/page07/tiger.png") no-repeat 50% 0;
    background-size: 75px 65px;
    height: 65px;
    display: block;
    margin-bottom: 30px;
  }

  .page07__leadTitle {
    font-size: 23px;
    margin-bottom: 25px;
  }

  .page07__leadTxt {
    font-size: 14px;
    line-height: 26px;
    text-align: left;
  }

  .page07__services {
    display: block;
    border: none;
    margin-bottom: 0;
    padding-bottom: 0;
    border-color: #d9d9d9;
  }

  .page07__services.__last {
    border-color: #1d2088;
  }

  .page07__service {
    border-bottom: #d9d9d9 1px solid;
    /* padding-bottom: 15px; */
    padding: 15px 0 40px;
    /* margin-bottom: 40px; */
    width: auto;
    margin-right: 0;
    position: relative;
  }
  .page07__service dl {
    margin-bottom: 0;
  }

  .page07__service:last-child {
    border-color: #d9d9d9;
  }

  .page07__serviceImage {
    margin-bottom: 10px;
  }

  .page07__serviceImage img {
    max-width: 100%;
    height: auto;
    width: 100% \9;
    display: block;
    margin: 0 auto;
    width: 100%;
  }

  .page07__serviceTitle {
    color: #1d2088;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
  }

  .page07__serviceTxt {
    font-size: 12px;
    margin-bottom: 15px;
  }

  .page07__serviceTxt a {
    font-size: 12px;
  }

  .page07__serviceTxt._red {
    color: #ff0000;
  }

  .page07__serviceLink {
    display: block;
    bottom: 0;
    width: 100%;
  }

  .page07__serviceLink a {
    font-size: 14px;
  }

  .page07__serviceLink a::after {
    content: "";
  }
  .service__LinkBox {
    position: relative;
    display: block;
    height: auto;
  }
}

.page08 {
  max-width: 1050px;
  padding: 0 25px 70px !important;
  margin: 0 auto;
}

.page08__lead {
  text-align: center;
  margin-bottom: 60px;
}

.page08__lead::before {
  content: url("../img/page08/tiger.png");
  display: block;
  text-align: center;
  border-bottom: #1d2088 1px solid;
  margin-bottom: 60px;
  line-height: 1;
  font-size: 0;
}

.page08__leadTitle {
  color: #1d2088;
  font-weight: 600;
  font-size: 30px;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.3;
}

.page08__leadTitle::before,
.page08__leadTitle::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}

.page08__leadTitle::before {
  margin-bottom: calc(-0.3462962963em + 0px);
}

.page08__leadTitle::after {
  margin-top: calc(-0.1425925926em + 0px);
}

.page08__leadTxt {
  font-size: 18px;
  font-weight: 600;
  line-height: 32px;
  text-align: center;
}

.page08__brandings {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.page08__branding {
  width: 31.3%;
  margin-right: 3%;
  margin-bottom: 30px;
}

/*200814削除

.page08__branding:nth-child(2) a span {
  background: url("../img/page08/icon02.png") no-repeat 0 100%;
}
.page08__branding:nth-child(3) a span {
  background: url("../img/page08/icon03.png") no-repeat 0 100%;
}
.page08__branding:nth-child(4) a span {
  background: url("../img/page08/icon04.png") no-repeat 0 100%;
}
.page08__branding:nth-child(5) a span {
  background: url("../img/page08/icon05.png") no-repeat 0 100%;
}
.page08__branding:nth-child(6) a span {
  background: url("../img/page08/icon06.png") no-repeat 0 100%;
}
.page08__branding:nth-child(7) a span {
  background: url("../img/page08/icon07.png") no-repeat 0 100%;
}
*/

/*200814追加*/
.page08__branding:nth-child(1) a .page27__Linkicon {
  background: url("../img/page08/icon02.png") no-repeat 0 100%;
}

.page08__branding:nth-child(2) a .page27__Linkicon {
  background: url("../img/page08/icon03.png") no-repeat 0 100%;
}

.page08__branding:nth-child(3) a .page27__Linkicon {
  background: url("../img/page08/icon04.png") no-repeat 0 100%;
}

.page08__branding:nth-child(4) a .page27__Linkicon {
  background: url("../img/page08/icon05.png") no-repeat 0 100%;
}
/* 学生応援 */
.page08__branding:nth-child(5) a .page27__Linkicon {
  background: url("../img/page08/icon_gakuseichintiger.png") no-repeat 0 100%;
}
/* チンタイガー */
.page08__branding:nth-child(6) a .page27__Linkicon {
  background: url("../img/page08/icon06.png") no-repeat 0 100%;
}
/* TVCM */
.page08__branding:nth-child(7) a .page27__Linkicon {
  background: url("../img/page08/icon01.png") no-repeat 0 100%;
}
/* 芸術支援 */
/*.page08__branding:nth-child(8) a .page27__Linkicon {
  background: url("../img/page08/icon_balletchintiger.png") no-repeat 0 100%;
}*/
/* CSR活動・社会貢献活動 */
.page08__branding:nth-child(8) a .page27__Linkicon {
  background: url("../img/page08/ico_csr.png") no-repeat 0 100%;
}

/* .page08__branding:nth-child(6) a span {
  background: url('../img/page08/icon_athlete.png') no-repeat 0 100%;
} */

.page08__branding:nth-child(3n) {
  margin-right: 0;
}

.page08__branding:last-child {
  margin-right: 0;
}

.page08__brandingWrap {
  margin-bottom: 0;
}

.page08__brandingBtn {
  margin-bottom: 15px;
  position: relative;
  overflow: hidden;
}

.page08__brandingBtn::before {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 1;
  left: 0;
  top: 0;
  content: "";
  transition: all 0.6s cubic-bezier(0.05, 0.06, 0.05, 0.95);
  background: #1d2088;
  transform: translateX(-100%);
}

.page08__brandingBtn:hover a {
  color: #fff;
}

.page08__brandingBtn:hover a span {
  background-position: 0 0;
}

.page08__brandingBtn:hover a::after {
  background-image: url("../img/common/arrow_white.png");
}

.page08__brandingBtn:hover::before {
  transform: translateX(0);
}

.page08__brandingBtn a {
  border: #1d2088 2px solid;
  display: block;
  text-align: center;
  color: #1d2088;
  font-weight: 600;
  position: relative;
  font-size: 30px;
  padding: 20px 30px;
}

/*200814追加*/
/* .page08__branding:nth-child(6) .page08__brandingBtn a {
  font-size: 18px;
  padding: 30px;
} */

.page08__brandingBtn a span {
  display: block;
  width: 60px;
  height: 54px;
  margin: 0 auto;
}

.page08__brandingBtn a::after {
  content: "";
  background: url("../img/common/arrow_blue.png") no-repeat;
  width: 8px;
  height: 12px;
  background-size: contain;
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
}

.page08__brandingTxt {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .page08 {
    padding: 0 !important;
    margin-top: -10px;
    margin-bottom: 60px;
  }

  .page08__lead {
    text-align: center;
    margin-bottom: 30px;
  }

  .page08__lead::before {
    content: "";
    background: url("../img/page08/tiger.png") no-repeat 50% 0;
    display: block;
    background-size: 97px 62px;
    text-align: center;
    margin-bottom: 60px;
    height: 62px;
    margin: 0 auto 30px;
  }

  .page08__leadTitle {
    font-size: 23px;
    margin-bottom: 25px;
  }

  .page08__leadTxt {
    font-size: 14px;
    line-height: 26px;
    text-align: left;
  }

  .page08__brandings {
    display: block;
  }

  .page08__branding {
    width: auto;
    margin-right: 0;
    margin-bottom: 25px;
  }

  .page08__branding:nth-child(3n) {
    margin-right: 0;
  }

  .page08__branding:last-child {
    margin-right: 0;
  }

  .page08__brandingWrap {
    margin-bottom: 0;
  }

  .page08__brandingBtn {
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
  }

  .page08__brandingBtn::before {
    content: none;
  }

  .page08__brandingBtn:hover::before {
    transform: translateX(0);
  }

  .page08__brandingBtn:hover a {
    color: #1d2088;
  }

  .page08__brandingBtn:hover a::after {
    background-image: url("../img/common/arrow_blue.png");
  }

  .page08__brandingBtn a {
    font-size: 25px;
    padding: 20px 20px 16px;
  }

  .page08__brandingBtn a span {
    display: block;
  }

  .page08__brandingBtn a::after {
    content: "";
    background: url("../img/common/arrow_blue.png") no-repeat;
    width: 8px;
    height: 12px;
    background-size: contain;
    position: absolute;
    right: 23px;
    top: 50%;
    transform: translateY(-50%);
  }

  .page08__brandingTxt {
    font-size: 14px;
  }
}

.page09 .page__title {
  max-width: 1000px;
  margin: 0 auto;
}

.page09__movie {
  background: #1d2088;
  padding: 40px 0 1px;
  margin-bottom: 0;
}

.page09__movieInner {
  max-width: 1000px;
  margin: 0 auto;
}

.page09__movieTitle {
  color: #fff;
  text-align: center;
  font-weight: 600;
  font-size: 30px;
  margin-bottom: 40px;
}

.page09__movie p {
  color: #fff;
  font-weight: 500;
  margin-bottom: 40px;
  text-align: center;
}

.page09__movieList {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.page09__movieListItem {
  width: 47%;
  margin-bottom: 40px;
  text-align: center;
}

.page09__movieListItemLink {
  display: block;
}

.page09__movieListItemImg {
  margin-bottom: 30px;
}

.page09__movieListItemImg img {
  max-width: 100%;
  height: auto;
  width: 100% \9;
  display: block;
}

.page09__movieListItemInfoTitle {
  color: #fff;
  font-size: 22px;
}

.page09__movieListItemInfoSub {
  color: #fff;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .page09 {
    padding: 0 !important;
  }

  .page09 .page__title {
    margin-bottom: 30px;
  }

  .page09__movie {
    background: #1d2088;
    padding: 20px 0;
    margin: 0 -25px 70px;
  }

  .page09__movieInner {
    padding: 0 25px;
    margin: 0 auto;
  }

  .page09__movieTitle {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .page09__movie p {
    font-size: 14px;
  }

  .page09__movieList {
    display: block;
    margin-bottom: 0;
  }

  .page09__movieListItem {
    width: auto;
    text-align: center;
    margin-bottom: 35px;
  }

  .page09__movieListItem:last-child {
    margin-bottom: 0;
  }

  .page09__movieListItem:last-child .page09__movieListItemInfo {
    margin-bottom: 5px;
  }

  .page09__movieListItemLink {
    display: block;
  }

  .page09__movieListItemImg {
    margin-bottom: 15px;
  }

  .page09__movieListItemImg img {
    max-width: 100%;
    height: auto;
    width: 100% \9;
    display: block;
    margin: 0 auto;
  }

  .page09__movieListItemInfoTitle {
    color: #fff;
    font-size: 18px;
  }

  .page09__movieListItemInfoSub {
    color: #fff;
    font-size: 14px;
  }
}

.page10 {
  max-width: 1050px;
  padding: 0 25px;
  margin: 0 auto;
}

.page10__block {
  margin-bottom: 80px;
}

.page10__block:last-child {
  margin-bottom: 0;
}

.page10__block:last-child .page10__blockList {
  margin-bottom: 0;
}

.page10__blockTitle {
  color: #1d2088;
  font-weight: 600;
  font-size: 30px;
}

.page10__blockTxt {
  margin-bottom: 40px;
}

.page10__blockList {
  display: flex;
  flex-wrap: wrap;
}

.page10__blockListItem {
  width: 31.3%;
  margin-right: 3%;
}

.page10__blockListItem:nth-child(3) {
  margin-right: 0;
}

.page10__blockListItemInfoImg {
  margin-bottom: 20px;
}

.page10__blockListItemInfoImg img {
  max-width: 100%;
  height: auto;
  width: 100% \9;
  display: block;
  border: #fafafa 1px solid;
}

.page10__blockListItemInfoTxt {
  text-align: center;
  color: #1d2088;
  font-weight: 600;
  font-size: 20px;
}

@media screen and (max-width: 768px) {
  .page10 {
    padding: 0 !important;
  }

  .page10__block {
    margin-bottom: 40px;
  }

  .page10__blockTitle {
    font-size: 23px;
    text-align: center;
    line-height: 1.3;
  }

  .page10__blockTitle::before,
  .page10__blockTitle::after {
    content: "";
    display: block;
    height: 0;
    width: 0;
  }

  .page10__blockTitle::before {
    margin-bottom: calc(-0.3462962963em + 0px);
  }

  .page10__blockTitle::after {
    margin-top: calc(-0.1425925926em + 0px);
  }

  .page10__blockTxt {
    margin-bottom: 20px;
    font-size: 14px;
  }

  .page10__blockList {
    display: flex;
    flex-wrap: wrap;
  }

  .page10__blockListItem {
    width: 47.6923076923%;
    margin-right: 4.6153846154%;
  }

  .page10__blockListItem:nth-child(3) {
    margin-right: 4.6153846154%;
  }

  .page10__blockListItem:nth-child(even) {
    margin-right: 0;
  }

  .page10__blockListItemInfoImg {
    margin-bottom: 15px;
  }

  .page10__blockListItemInfoImg img {
    max-width: 100%;
    height: auto;
    width: 100% \9;
    display: block;
    border: #fafafa 1px solid;
  }

  .page10__blockListItemInfoTxt {
    font-size: 14px;
    line-height: 1.3;
  }

  .page10__blockListItemInfoTxt::before,
  .page10__blockListItemInfoTxt::after {
    content: "";
    display: block;
    height: 0;
    width: 0;
  }

  .page10__blockListItemInfoTxt::before {
    margin-bottom: calc(-0.3462962963em + 0px);
  }

  .page10__blockListItemInfoTxt::after {
    margin-top: calc(-0.1425925926em + 0px);
  }
}

.page11 {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 25px 120px;
}

.page11__inner {
  max-width: 800px;
  margin: 0 auto;
}

.page11__infoWrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}

.page11__info {
  text-align: center;
  width: 61.625%;
  margin-bottom: 0;
}

.page11__infoImg {
  margin-bottom: 40px;
}

.page11__infoImg img {
  max-width: 100%;
  height: auto;
  width: 100% \9;
  max-width: 343px;
}

.page11__infoTxt {
  font-size: 18px;
  font-weight: 500;
  line-height: 180%;
}

.page11__twitter {
  width: 28.125%;
  height: 585px;
  overflow-y: scroll;
  margin-bottom: 0;
}

.page11__profile {
  border-bottom: #1d2088 1px solid;
}

.page11__profileTitle {
  color: #1d2088;
  font-size: 38px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.3;
}

.page11__profileTitle::before,
.page11__profileTitle::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}

.page11__profileTitle::before {
  margin-bottom: calc(-0.3462962963em + 0px);
}

.page11__profileTitle::after {
  margin-top: calc(-0.1425925926em + 0px);
}

.page11__profileInner {
  border-top: #1d2088 1px solid;
  display: flex;
  justify-content: space-between;
  margin-bottom: 0;
}

.page11__profileInner table {
  width: 48.25%;
  margin-bottom: 0;
}

.page11__profileInner table tr.last th,
.page11__profileInner table tr.last td {
  border-bottom: none;
}

.page11__profileInner table tr th,
.page11__profileInner table tr td {
  text-align: left;
  padding: 20px 0;
  vertical-align: top;
  border-bottom: #d9d9d9 1px solid;
}

.page11__profileInner table tr th {
  color: #1d2088;
  font-weight: 600;
  white-space: nowrap;
  padding-right: 15px;
}

@media screen and (max-width: 768px) {
  .page11 {
    padding: 0 !important;
    margin-bottom: 80px;
  }

  .page11 .page__title {
    margin-bottom: 50px !important;
  }

  .page11__infoWrap {
    display: block;
    margin-bottom: 80px;
  }

  .page11__info {
    text-align: center;
    width: auto;
    margin-bottom: 0;
    margin-bottom: 50px;
  }

  .page11__infoImg {
    margin-bottom: 55px;
  }

  .page11__infoImg img {
    max-width: 100%;
    height: auto;
    width: 100% \9;
    max-width: 207px;
  }

  .page11__infoTxt {
    font-size: 14px;
    text-align: left;
    margin-bottom: 0;
  }

  .page11__twitter {
    width: auto;
    height: 500px;
    overflow-y: scroll;
    margin-bottom: 0;
  }

  .page11__profile {
    border-bottom: #1d2088 1px solid;
  }

  .page11__profileTitle {
    font-size: 25px;
    margin-bottom: 15px;
  }

  .page11__profileInner {
    display: block;
  }

  .page11__profileInner table {
    width: 100%;
    margin-bottom: 0;
    border-collapse: collapse;
  }

  .page11__profileInner table tr th,
  .page11__profileInner table tr td {
    font-size: 14px;
  }
}

.page12 {
  max-width: 1050px;
  padding: 0 25px 60px !important;
  margin: 0 auto;
}

.page12__block {
  border-bottom: #d9d9d9 1px solid;
  margin-bottom: 60px;
  padding-bottom: 60px;
}

.page12__blockInner {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0;
}

.page12__blockImg {
  width: 31.3%;
  text-align: center;
  margin-bottom: 0;
}

.page12__blockImg img {
  max-width: 100%;
  height: auto;
  width: 100% \9;
}

.page12__blockSub {
  margin-left: 18.5%;
  margin-top: 60px;
  margin-bottom: 0;
  display: flex;
  justify-content: space-between;
}

.page12__blockSub.sub01 .page12__blockSubInfo {
  background: url("../img/page12/sub01.png") no-repeat;
  padding-top: 20px;
}

.page12__blockSub.sub02 .page12__blockSubInfo {
  background: url("../img/page12/sub02.png") no-repeat;
  padding-top: 20px;
}
.page12__blockSub.sub03 .page12__blockSubInfo {
  background: url("../img/page12/sub03.png") no-repeat;
  padding-top: 20px;
}

.page12__blockSubImg {
  width: 34.7239263804%;
  margin-bottom: 0;
}

.page12__blockSubImg img {
  max-width: 100%;
  height: auto;
  width: 100% \9;
  display: block;
}

.page12__blockSubInfo {
  width: 61.3496932515%;
  margin-bottom: 0;
}

.page12__blockSubTitle {
  color: #1d2088;
  font-weight: 600;
  font-size: 30px;
  margin-bottom: 25px;
}

.page12__blockSubTitle span {
  background: #1d2088;
  color: #fff;
  font-size: 14px;
  padding: 4px 10px 6px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}

.page12__blockSubLink {
  margin-bottom: 0;
  line-height: 1.3;
  margin-bottom: 0;
}

.page12__blockSubLink::before,
.page12__blockSubLink::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}

.page12__blockSubLink::before {
  margin-bottom: calc(-0.3462962963em + 0px);
}

.page12__blockSubLink::after {
  margin-top: calc(-0.1425925926em + 0px);
}

.page12__blockSubLink a {
  text-decoration: underline;
  font-size: 14px;
  font-weight: 500;
}

.page12__blockSubLink a::after {
  background: url("../img/common/icon_new_blue.png") no-repeat;
  content: "";
  width: 14px;
  height: 12px;
  background-size: contain;
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}

.page12__blockSubPDFLink {
  margin-bottom: 0;
}

.page12__blockSubPDFLink a {
  text-decoration: underline;
  font-size: 14px;
  font-weight: 500;
}

.page12__blockSubPDFLink span {
  font-size: 13px;
  color: #878787;
  margin-left: 10px;
}

.page12__blockSubPDFLink::after {
  content: "PDF";
  margin-left: 10px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 13px;
  padding: 2px 7px;
  color: #e40000;
  border: #e40000 1px solid;
}

.page12__blockSubTxt {
  font-weight: 500;
  line-height: 26px;
  font-size: 14px;
}

.page12__info {
  width: 65.3%;
  margin-bottom: 0;
}

.page12__infoTitle {
  color: #1d2088;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.3;
}

.page12__infoTitle::before,
.page12__infoTitle::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}

.page12__infoTitle::before {
  margin-bottom: calc(-0.3462962963em + 0px);
}

.page12__infoTitle::after {
  margin-top: calc(-0.1425925926em + 0px);
}

.page12__infoTxt {
  font-weight: 500;
  margin-bottom: 30px;
  line-height: 28px;
}

.page12__infoLink {
  margin-bottom: 0;
}

.page12__infoLink a {
  font-weight: 500;
  text-decoration: underline;
}

.page12__infoLink a::after {
  background: url("../img/common/icon_new_blue.png") no-repeat;
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-size: contain;
  width: 14px;
  height: 12px;
  margin-left: 10px;
}

@media screen and (max-width: 768px) {
  .page12 {
    padding: 0 !important;
  }

  .page12 .page__title {
    margin-bottom: 15px !important;
  }

  .page12__block {
    margin-bottom: 30px;
    padding-bottom: 25px;
  }

  .page12__blockInner {
    display: block;
    margin-bottom: 0;
  }

  .page12__blockImg {
    width: auto;
    text-align: center;
    margin-bottom: 20px;
  }

  .page12__blockImg._narrow {
    margin: 0 25px 20px;
  }

  .page12__blockImg img {
    max-width: 100%;
    height: auto;
    width: 100% \9;
    display: block;
    margin: 0 auto;
  }

  .page12__blockSub {
    margin-top: 30px;
    margin-left: 0;
    display: block;
  }

  .page12__blockSub.sub01 .page12__blockSubInfo {
    background-size: contain;
    padding-top: 10px;
  }

  .page12__blockSub.sub02 .page12__blockSubInfo {
    background-size: contain;
    padding-top: 10px;
  }
  .page12__blockSub.sub03 .page12__blockSubInfo {
    background-size: contain;
    padding-top: 10px;
  }

  .page12__blockSubImg {
    width: auto;
    margin: 0 60px 15px;
  }

  .page12__blockSubImg img {
    max-width: 100%;
    height: auto;
    width: 100% \9;
    display: block;
    margin: 0 auto;
  }

  .page12__blockSubInfo {
    width: auto;
  }

  .page12__blockSubTitle {
    font-size: 21px;
    margin-bottom: 15px;
  }

  .page12__blockSubTitle span {
    font-size: 10px;
  }

  .page12__blockSubLink {
    margin-bottom: 0;
  }

  .page12__blockSubLink a {
    text-decoration: underline;
    font-size: 12px;
    font-weight: 500;
  }

  .page12__blockSubLink a::after {
    background: url("../img/common/icon_new_blue.png") no-repeat;
    content: "";
    width: 10px;
    height: 9px;
    background-size: contain;
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
  }

  .page12__blockSubPDFLink {
    margin-bottom: 0;
    margin-top: 5px;
  }

  .page12__blockSubPDFLink a {
    font-size: 12px;
  }

  .page12__blockSubPDFLink span {
    font-size: 10px;
  }

  .page12__blockSubPDFLink::after {
    font-size: 9px;
  }

  .page12__blockSubTxt {
    font-size: 12px;
  }

  .page12__info {
    width: auto;
    margin-bottom: 0;
  }

  .page12__infoTitle {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.3;
  }

  .page12__infoTitle::before,
  .page12__infoTitle::after {
    content: "";
    display: block;
    height: 0;
    width: 0;
  }

  .page12__infoTitle::before {
    margin-bottom: calc(-0.3462962963em + 0px);
  }

  .page12__infoTitle::after {
    margin-top: calc(-0.1425925926em + 0px);
  }

  .page12__infoTxt {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 26px;
  }

  .page12__infoLink {
    margin-bottom: 0;
  }

  .page12__infoLink a {
    font-size: 14px;
    font-weight: 600;
  }

  .page12__infoLink a::after {
    background: url("../img/common/icon_new_blue.png") no-repeat;
    content: "";
    width: 10px;
    height: 9px;
    background-size: contain;
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
  }
}

.page13 {
  max-width: 1050px;
  padding: 0 25px 60px !important;
  margin: 0 auto;
}

.page13__section {
  border-bottom: #d9d9d9 1px solid;
  margin-bottom: 60px;
}

.page13__sectionTitle {
  color: #1d2088;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 60px;
  line-height: 1.3;
}

.page13__sectionTitle::before,
.page13__sectionTitle::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}

.page13__sectionTitle::before {
  margin-bottom: calc(-0.3462962963em + 0px);
}

.page13__sectionTitle::after {
  margin-top: calc(-0.1425925926em + 0px);
}

.page13__blockInner {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}

.page13__blockImg {
  width: 31.3%;
  margin-bottom: 0;
  text-align: center;
}

.page13__blockImg img {
  max-width: 100%;
  height: auto;
  width: 100% \9;
}

.page13__info {
  width: 65.5%;
  margin-bottom: 0;
}

.page13__infoTitle {
  color: #1d2088;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 1.3;
}

.page13__infoTitle::before,
.page13__infoTitle::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}

.page13__infoTitle::before {
  margin-bottom: calc(-0.3462962963em + 0px);
}

.page13__infoTitle::after {
  margin-top: calc(-0.1425925926em + 0px);
}

.page13__infoTitle span {
  display: block;
  font-weight: 600;
  color: #1d2088;
}

.page13__infoTxt {
  line-height: 1.3;
  font-weight: 500;
  margin-bottom: 20px;
}

.page13__infoTxt::before,
.page13__infoTxt::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}

.page13__infoTxt::before {
  margin-bottom: calc(-0.3462962963em + 0px);
}

.page13__infoTxt::after {
  margin-top: calc(-0.1425925926em + 0px);
}

.page13__infoSubTxt {
  font-size: 14px;
  margin-bottom: 30px;
}

.page13__infoLink {
  margin-bottom: 0;
}

.page13__infoLink a {
  font-weight: 500;
  text-decoration: underline;
}

.page13__infoLink a::after {
  background: url("../img/common/icon_new_blue.png") no-repeat;
  content: "";
  width: 14px;
  height: 12px;
  background-size: contain;
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}

@media screen and (max-width: 768px) {
  .page13 {
    padding: 0 0 40px !important;
  }

  .page13__section {
    margin-bottom: 25px;
    padding-bottom: 25px;
  }

  .page13__sectionTitle {
    font-size: 23px;
    margin-bottom: 20px;
    text-align: center;
  }

  .page13__block {
    margin-bottom: 0;
  }

  .page13__block.last .page13__blockInner {
    margin-bottom: 0;
  }

  .page13__blockInner {
    display: block;
    margin-bottom: 30px;
  }

  .page13__blockImg {
    width: auto;
    margin-bottom: 20px;
  }

  .page13__blockImg img {
    max-width: 100%;
    height: auto;
    width: 100% \9;
  }

  .page13__info {
    width: auto;
  }

  .page13__infoTitle {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .page13__infoTitle span {
    display: block;
    font-size: 14px;
    color: inherit;
    font-weight: inherit;
  }

  .page13__infoTxt {
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 500;
  }

  .page13__infoSubTxt {
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 10px;
  }

  .page13__infoLink a {
    font-size: 14px;
    font-weight: 600;
  }

  .page13__infoLink a::after {
    content: "";
    background: url("../img/common/icon_new_blue.png") no-repeat;
    background-size: contain;
    width: 10px;
    height: 9px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
  }
}

.page14 {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 25px;
}

.page14__lead {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 70px;
}

.page14__block {
  margin-bottom: 0;
}

.page14__blockInner {
  display: flex;
  justify-content: space-between;
}

.page14__blockInner:last-child {
  margin-bottom: 0;
}

.page14__blockInner:last-child .page14__blockImg,
.page14__blockInner:last-child .page14__info {
  margin-bottom: 0;
}

.page14__blockImg {
  width: 31.3%;
  text-align: center;
}

.page14__blockImg img {
  max-width: 100%;
  height: auto;
  width: 100% \9;
}

.page14__info {
  width: 65.5%;
}

.page14__infoTitle {
  color: #1d2088;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.page14__infoTxt {
  font-weight: 500;
  margin-bottom: 10px;
}

.page14__infoSubTxt {
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .page14 {
    padding: 0 0 40px !important;
  }

  .page14__lead {
    font-size: 15px;
    margin-bottom: 25px;
  }

  .page14__blockInner {
    display: block;
  }

  .page14__blockImg {
    width: auto;
    margin-bottom: 10px;
  }

  .page14__blockImg img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    width: 100% \9;
  }

  .page14__info {
    width: auto;
    margin-bottom: 40px;
  }

  .page14__infoTitle {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .page14__infoTxt {
    font-size: 12px;
    margin-bottom: 10px;
    font-weight: 400;
  }

  .page14__infoSubTxt {
    font-size: 12px;
    font-weight: 500;
  }
}

.page15 {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 25px;
}

.page15__dropdown {
  margin-bottom: 60px;
}

.page15__dropdownWrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
}

.page15__dropdownTitle {
  color: #1d2088;
  font-weight: 600;
  font-size: 16px;
  margin-right: 10px;
}

.page15__dropdownContents {
  position: relative;
}

.page15__dropdownContents #irp-chintai-navi {
  position: absolute;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border: #1d2088 2px solid;
  text-align: center;
  z-index: 2000;
}

.page15__dropdownContents #irp-chintai-navi li {
  position: relative;
}

.page15__dropdownContents #irp-chintai-navi li:last-child {
  display: none;
}

.page15__dropdownContents #irp-chintai-navi li:nth-last-child(2),
.page15__dropdownContents #irp-chintai-navi li:nth-last-child(3),
.page15__dropdownContents #irp-chintai-navi li:nth-last-child(4),
.page15__dropdownContents #irp-chintai-navi li:nth-last-child(5) {
  display: none;
}

.page15__dropdownContents #irp-chintai-navi li:first-child::after {
  content: "";
  background: url("../img/common/arrow_blue.png") no-repeat;
  display: block;
  width: 8px;
  background-size: contain;
  height: 12px;
  transform-origin: 0 0;
  transform: rotate(-90deg) translateX(-50%);
  position: absolute;
  right: 20px;
  top: 50%;
}

.page15__dropdownContents #irp-chintai-navi li a {
  display: block;
  padding: 10px;
  font-weight: 600;
}

.page15__dropdownContents #irp-chintai-navi li a:hover {
  background: #f1f1f1;
}

.page15__dropdownContentsList {
  position: absolute;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border: #1d2088 2px solid;
  text-align: center;
}

.page15__dropdownContentsListItem {
  position: relative;
}

.page15__dropdownContentsListItem:first-child::after {
  content: "";
  background: url("../img/common/arrow_blue.png") no-repeat;
  background-size: contain;
  display: block;
  width: 8px;
  height: 12px;
  transform-origin: 0 0;
  transform: rotate(-90deg) translateX(-50%);
  position: absolute;
  right: 20px;
  top: 50%;
}

.page15__dropdownContentsListItem a {
  display: block;
  padding: 10px;
}

.page15__dropdownContentsListItem a:hover {
  background: #f1f1f1;
}

.page15__dropdownContentsCurrent {
  border: #1d2088 2px solid;
  width: 295px;
  cursor: pointer;
  text-align: center;
  font-weight: 600;
  padding: 10px 0;
  margin-bottom: 0;
  color: #1d2088;
  position: relative;
}

.page15__dropdownContentsCurrent::after {
  content: "";
  background: url("../img/common/arrow_blue.png") no-repeat;
  background-size: contain;
  display: block;
  width: 8px;
  height: 12px;
  transform: rotate(90deg) translateX(-50%);
  position: absolute;
  right: 20px;
  top: 50%;
}

.page15 .irp-press-list {
  border-top: #1d2088 1px solid;
  border-bottom: #1d2088 1px solid;
  width: 100%;
}

.page15 .irp-press-list .irp-item {
  display: flex;
  margin-bottom: 0;
}

.page15 .irp-press-list .irp-item:last-child .irp-date,
.page15 .irp-press-list .irp-item:last-child .irp-title-block {
  border-bottom: none;
}

.page15 .irp-press-list .irp-item .irp-date,
.page15 .irp-press-list .irp-item .irp-title-block {
  display: table-cell;
  padding: 20px 0;
  border-bottom: #d9d9d9 1px solid;
}

.page15 .irp-press-list .irp-item .irp-date {
  font-size: 18px;
  padding: 20px !important;
  white-space: nowrap;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  vertical-align: middle;
}

.page15 .irp-press-list .irp-item .irp-title-block {
  display: flex;
  margin-bottom: 0;
  align-items: center;
  width: 100%;
}

.page15 .irp-press-list .irp-item .irp-title-block .irp-title {
  border-left: #d9d9d9 1px solid;
  border-right: #d9d9d9 1px solid;
  display: block;
  width: 100%;
}

.page15 .irp-press-list .irp-item .irp-title-block .irp-title a {
  display: block;
  color: #222;
  padding: 0 20px;
}

.page15 .irp-press-list .irp-item .irp-title-block > a {
  display: none;
}

.page15 .irp-press-list .irp-item .irp-title-block .irp-fsize {
  color: #878787;
  font-size: 13px;
  white-space: nowrap;
  margin-left: 10px;
}

.page15 .irp-press-list .irp-item .irp-title-block .irp-fsize::after {
  content: "PDF";
  margin-left: 10px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 13px;
  display: inline-block;
  padding: 0 7px;
  color: #e40000;
  border: #e40000 2px solid;
  line-height: 150%;
}

.page15__news {
  border-top: #1d2088 1px solid;
  border-bottom: #1d2088 1px solid;
  width: 100%;
}

.page15__news tr:last-child td {
  border-bottom: none;
}

.page15__news td {
  padding: 20px 0;
  border-bottom: #d9d9d9 1px solid;
}

.page15__newsDate {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 18px;
  padding: 20px !important;
  white-space: nowrap;
}

.page15__newsTitle a {
  display: block;
  color: #222;
  padding: 0 20px;
  border-left: #d9d9d9 1px solid;
  border-right: #d9d9d9 1px solid;
}

.page15__newsInfo {
  padding: 20px !important;
  color: #878787;
  font-size: 13px;
  white-space: nowrap;
}

.page15__newsInfo::after {
  content: "PDF";
  margin-left: 10px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 13px;
  display: inline-block;
  padding: 0 7px;
  color: #e40000;
  border: #e40000 2px solid;
}
.page15 .area {
  padding: 50px 20px 0;
}
@media screen and (max-width: 768px) {
  .page15 {
    padding: 0 !important;
    margin-bottom: 70px;
  }

  .page15__dropdown {
    margin-bottom: 30px;
  }

  .page15__dropdownTitle {
    font-size: 14px;
  }

  .page15__dropdownContents {
    position: relative;
  }

  .page15__dropdownContentsListItem a {
    display: block;
    padding: 10px;
    font-size: 14px;
  }

  .page15__dropdownContentsCurrent {
    width: 160px;
    padding: 5px 0;
    font-size: 14px;
  }

  .page15__dropdownContentsCurrent::after {
    content: "";
    background: url("../img/common/arrow_blue.png") no-repeat;
    display: block;
    width: 6px;
    height: 10px;
    background-size: contain;
    transform: rotate(90deg) translateX(-50%);
    position: absolute;
    right: 11px;
    top: 50%;
  }

  .page15 .irp-press-list .irp-item {
    display: block;
    margin-bottom: 0;
    padding: 25px 0 0;
  }

  .page15 .irp-press-list .irp-item:last-child .irp-date,
  .page15 .irp-press-list .irp-item:last-child .irp-title-block {
    border-bottom: none;
  }

  .page15 .irp-press-list .irp-item .irp-date,
  .page15 .irp-press-list .irp-item .irp-title-block {
    display: block;
    padding: 20px 0;
  }

  .page15 .irp-press-list .irp-item .irp-date {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 700;
    letter-spacing: 0.05em;
    font-size: 14px;
    padding: 0 !important;
    white-space: nowrap;
    border: none;
    width: 100%;
    padding-bottom: 0;
  }

  .page15 .irp-press-list .irp-item .irp-title-block {
    display: flex;
    margin-bottom: 0;
    align-items: center;
    padding-top: 10px;
  }

  .page15 .irp-press-list .irp-item .irp-title-block .irp-title {
    border-left: none;
    border-right: #d9d9d9 1px solid;
    display: block;
  }

  .page15 .irp-press-list .irp-item .irp-title-block .irp-title a {
    padding-top: 10px;
    padding-left: 0;
    font-size: 14px;
  }

  .page15 .irp-press-list .irp-item .irp-title-block .irp-fsize {
    text-align: center;
    padding: 10px 5px !important;
    border-bottom: none;
    font-size: 10px;
  }

  .page15 .irp-press-list .irp-item .irp-title-block .irp-fsize::after {
    margin-left: 0;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 700;
    letter-spacing: 0.05em;
    font-size: 9px;
    display: block;
    padding: 0 7px;
    color: #e40000;
    border: #e40000 1px solid;
    line-height: 150%;
  }

  .page15__news {
    display: block;
  }

  .page15__news tr:last-child td {
    border-bottom: none !important;
  }

  .page15__news tr {
    display: flex;
    flex-wrap: wrap;
    padding: 25px 0 0;
  }

  .page15__news td {
    display: block;
    padding: 20px 0;
    border: none;
  }

  .page15__newsDate {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 700;
    letter-spacing: 0.05em;
    font-size: 14px;
    padding: 0 !important;
    white-space: nowrap;
    border: none;
    width: 100%;
    line-height: 1.3;
  }

  .page15__newsDate::before,
  .page15__newsDate::after {
    content: "";
    display: block;
    height: 0;
    width: 0;
  }

  .page15__newsDate::before {
    margin-bottom: calc(-0.3462962963em + 0px);
  }

  .page15__newsDate::after {
    margin-top: calc(-0.1425925926em + 0px);
  }

  .page15__newsTitle {
    width: 85%;
    border-bottom: #d9d9d9 1px solid !important;
    padding-right: 10px !important;
    padding-top: 10px !important;
  }

  .page15__newsTitle a {
    display: block;
    color: #222;
    padding-right: 10px !important;
    padding: 0;
    font-size: 14px;
    border-left: none;
  }

  .page15__newsInfo {
    width: 15%;
    text-align: center;
    padding: 10px 5px !important;
    border-bottom: #d9d9d9 1px solid !important;
    font-size: 10px;
  }

  .page15__newsInfo::after {
    content: "PDF";
    margin-left: 0;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 700;
    letter-spacing: 0.05em;
    font-size: 9px;
    display: block;
    text-align: center;
    padding: 0 5px;
    color: #e40000;
    border: #e40000 1px solid;
    white-space: nowrap;
  }
}
.page18 {
  max-width: 1000px;
  margin: 0 auto;
}

.page18__lead {
  text-align: center;
  margin-bottom: 60px;
}

.page18__lead::before {
  content: url("../img/page07/tiger.png");
  display: block;
  text-align: center;
  border-bottom: #1d2088 1px solid;
  margin-bottom: 60px;
  line-height: 1;
  font-size: 0;
}

.page18__leadTitle {
  color: #1d2088;
  font-weight: 600;
  font-size: 30px;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.3;
}

.page18__leadTitle::before,
.page18__leadTitle::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}

.page18__leadTitle::before {
  margin-bottom: calc(-0.3462962963em + 0px);
}

.page18__leadTitle::after {
  margin-top: calc(-0.1425925926em + 0px);
}

.page18__list {
  max-width: 800px;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  justify-content: center;
}

.page18__listItem {
  width: 48.125%;
  margin-right: 3.75%;
  margin-bottom: 30px;
}

.page18__listItem:nth-child(even) {
  margin-right: 0;
}

.page18__listItem a {
  text-align: center;
  font-size: 30px;
  line-height: 40px;
  padding: 40px 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
}

@media screen and (max-width: 768px) {
  .page18 {
    padding: 0 !important;
    margin-top: -10px;
    margin-bottom: 70px;
  }

  .page18__lead {
    text-align: center;
    margin-bottom: 35px;
  }

  .page18__lead::before {
    content: "";
    background: url("../img/page07/tiger.png") no-repeat 50% 0;
    background-size: 75px 65px;
    height: 65px;
    display: block;
    margin-bottom: 30px;
  }

  .page18__leadTitle {
    font-size: 23px;
    margin-bottom: 25px;
  }

  .page18__list {
    display: block;
  }

  .page18__listItem {
    width: auto;
    margin-right: 0;
    margin-bottom: 15px;
  }

  .page18__listItem a {
    text-align: center;
    font-size: 23px;
    line-height: 30px;
    padding: 20px 0;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: auto;
  }
}

.page19 {
  padding-bottom: 70px !important;
}

.page19__inner {
  max-width: 730px;
  margin: 0 auto;
}

.page19__lead {
  font-size: 18px;
  font-weight: 600;
  text-indent: 1em;
  margin-bottom: 50px;
}

.page19__section {
  margin-bottom: 50px;
}

.page19__title {
  color: #1d2088;
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 25px;
}

.page19__txt {
  font-size: 14px;
  text-indent: 1em;
}

.page19__link a {
  text-decoration: underline;
  font-size: 14px;
  font-weight: 600;
}

.page19__link a::after {
  content: "";
  background: url("../img/common/icon_new_blue.png") no-repeat;
  background-size: contain;
  width: 14px;
  height: 12px;
  display: inline-block;
  margin-left: 10px;
}

.page19__subSection h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.page19__subSection p {
  margin-bottom: 15px;
  margin-left: 30px;
  font-size: 14px;
}

.page19__subSection p.last {
  margin-bottom: 25px;
}

@media screen and (max-width: 768px) {
  .page19 {
    padding: 0 !important;
    margin-bottom: 60px;
  }

  .page19__lead {
    font-size: 14px;
    font-weight: 600;
    text-indent: 1em;
    margin-bottom: 20px;
  }

  .page19__section {
    margin-bottom: 10px;
  }

  .page19__title {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .page19__txt {
    font-size: 12px;
    text-indent: 1em;
  }

  .page19__link a {
    text-decoration: underline;
    font-size: 12px;
    font-weight: 600;
  }

  .page19__subSection h3 {
    font-size: 14px;
    font-weight: 600;
  }

  .page19__subSection p {
    margin-bottom: 15px;
    margin-left: 0;
    font-size: 12px;
  }
}

.page20__inner {
  max-width: 730px;
  margin: 0 auto;
}

.page20__inner h2 {
  color: #1d2088;
  font-weight: 600;
  font-size: 24px;
}

.page20__inner p {
  font-size: 14px;
  margin-bottom: 60px;
}

.page20__inner p.last {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .page20__inner {
    margin: 0 auto;
  }

  .page20__inner h2 {
    font-size: 18px;
  }

  .page20__inner p {
    font-size: 12px;
    margin-bottom: 30px;
  }
}

.page21__inner {
  text-align: center;
  margin: 30px 0;
}

.page21__inner h2 {
  color: #1d2088;
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 40px;
}

.page21__inner .u__btn {
  max-width: 295px;
  margin: 0 auto;
}

.page21__inner .u__btnLink {
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .page21__inner h2 {
    color: #1d2088;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 40px;
  }

  .page21__inner .u__btn {
    max-width: 295px;
    margin: 0 auto;
  }

  .page21__inner .u__btnLink {
    font-size: 14px;
  }
}

.page22 {
  margin-top: 30px;
  padding-bottom: 75px !important;
}

.page22__inner {
  max-width: 730px;
  margin: 0 auto 0;
}

.page22__listItem {
  margin-bottom: 35px;
}

.page22__listItemLink {
  font-weight: 600;
  color: #1d2088;
  line-height: 1.3;
  font-size: 24px;
}

.page22__listItemLink::before,
.page22__listItemLink::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}

.page22__listItemLink::before {
  margin-bottom: calc(-0.3462962963em + 0px);
}

.page22__listItemLink::after {
  margin-top: calc(-0.1425925926em + 0px);
}

.page22__listItemLink._ext::after {
  content: "";
  background: url("../img/common/icon_new_blue.png") no-repeat;
  background-size: contain;
  width: 14px;
  height: 12px;
  display: inline-block;
  margin-left: 10px;
}

.page22__subList {
  margin: 20px 0 0 20px;
}

.page22__subListItem {
  margin-bottom: 15px;
}

.page22__subListItemLink {
  color: #222 !important;
  line-height: 1.3;
}

.page22__subListItemLink::before,
.page22__subListItemLink::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}

.page22__subListItemLink::before {
  margin-bottom: calc(-0.3462962963em + 0px);
}

.page22__subListItemLink::after {
  margin-top: calc(-0.1425925926em + 0px);
}

.page22__subListItemLink._ext::after {
  content: "";
  background: url("../img/common/icon_new_blue.png") no-repeat;
  background-size: contain;
  width: 14px;
  height: 12px;
  display: inline-block;
  margin-left: 10px;
}

@media screen and (max-width: 768px) {
  .page22 {
    margin-top: 30px;
    padding-bottom: 50px !important;
  }

  .page22__listItem {
    margin-bottom: 15px;
  }

  .page22__listItemLink {
    font-size: 18px;
  }

  .page22__listItemLink._ext::after {
    width: 10px;
    height: 9px;
  }

  .page22__subList {
    margin: 10px 0 0 20px;
  }

  .page22__subListItem {
    margin-bottom: 5px;
  }

  .page22__subListItemLink {
    font-size: 14px;
  }

  .page22__subListItemLink._ext::after {
    width: 10px;
    height: 9px;
  }
}

@-webkit-keyframes slideAnim {
  0% {
    z-index: 200;
    transform: scale(1, 1);
  }

  40% {
    z-index: 400;
    transform: scale(1.2, 1.2);
  }

  100% {
    z-index: 400;
    transform: scale(1.2, 1.2);
  }
}

@keyframes slideAnim {
  0% {
    z-index: 200;
    transform: scale(1, 1);
  }

  40% {
    z-index: 400;
    transform: scale(1.2, 1.2);
  }

  100% {
    z-index: 400;
    transform: scale(1.2, 1.2);
  }
}

@-webkit-keyframes slideAnimOut {
  0% {
    z-index: 200;
    transform: scale(1.2, 1.2);
  }

  20% {
    z-index: 1;
    transform: scale(1, 1);
  }

  100% {
    z-index: 1;
    transform: scale(1, 1);
  }
}

@keyframes slideAnimOut {
  0% {
    z-index: 200;
    transform: scale(1.2, 1.2);
  }

  20% {
    z-index: 1;
    transform: scale(1, 1);
  }

  100% {
    z-index: 1;
    transform: scale(1, 1);
  }
}

.top {
  overflow: hidden;
}

.top__title {
  margin-bottom: 60px;
  text-align: center;
}

.top__title h2 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 54px;
  margin-bottom: 0;
  color: #1d2088;
  line-height: 1;
}

.top__title p {
  color: #1d2088;
  margin-bottom: 0;
  font-weight: 500;
}

.top__kv {
  text-align: center;
  margin-bottom: 0;
}

.top__kv img {
  max-width: 100%;
  height: auto;
  width: 100% \9;
  transition-duration: 0.5s;
  margin: 0 auto;
}

.top__kv img:hover {
  transform: scale(1.05, 1.05);
  cursor: pointer;
}

.top__slide {
  box-shadow: rgba(0, 0, 0, 0.3) 0 0 20px;
  position: relative;
  margin-bottom: 120px;
  display: inline-flex;
}

.top__slideWrap {
  position: relative;
  margin-bottom: 0;
}

.top__slide .slick-list {
  overflow: visible;
}

.top__slide .slick-arrow {
  position: absolute;
  top: 50%;
  /* left: 0%; */
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  /* top: 50px; */
  z-index: 200;
  width: 50px;
  height: 50px;
  border: #1d2088 2px solid;
  background: #fff;
  display: block;
  text-indent: -9999px;
}

.top__slide .slick-arrow.slick-prev {
  position: absolute;
  /* transform: translateY(-50%); */
  left: 40px;
  background: #fff url("../img/common/arrow_blue.png") no-repeat 50% 50%;
  background-size: 8px 12px;
  top: 50%;
  transform: translateY(-50%) rotate(-180deg);

  /* transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  position: absolute; */
}

.top__slide .slick-arrow.slick-next {
  right: 40px;
  position: absolute;
  background: #fff url("../img/common/arrow_blue.png") no-repeat 50% 50%;
  background-size: 8px 12px;
}

.top__slide .active img {
  -webkit-animation-name: slideAnim;
  animation-name: slideAnim;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  box-shadow: rgba(0, 0, 0, 0.3) 0 0 20px;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}

.top__slide div {
  margin-bottom: 0;
  position: relative;
  border-right: #ddd 1px solid;
}

.top__slide div img {
  display: block;
  position: relative;
}

.top__slideInfo {
  text-align: center;
  font-weight: 600;
  margin-bottom: 120px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #1d2088;
}

.top__slideInfo span {
  color: #1d2088;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  font-weight: 600;
  font-size: 30px;
}
.top__news {
  margin-bottom: 145px;
  position: relative;
}
.top__newsInner {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 25px;
}
.top__newsInner .top__title {
  margin-bottom: 50px;
}

.top__newsList2 {
  margin-bottom: 0;
}

.top__newsList2 .irp-press-list-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}

.top__newsList2 .irp-press-list-top .irp-item {
  width: 28%;
  margin-bottom: 0;
}

.top__newsList2 .irp-press-list-top .irp-item .irp-date {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #1d2088;
  font-size: 18px;
  margin-bottom: 15px;
  display: block;
}

.top__newsList2 .irp-press-list-top .irp-item .irp-title-block {
  margin-bottom: 0;
}

.top__newsList2 .irp-press-list-top .irp-item .irp-title-block a {
  display: inline-block;
}

.top__newsList2 .irp-press-list-top .irp-item .irp-title-block .irp-title {
  display: inline-block;
  margin-bottom: 5px;
}

.top__newsList2 .irp-press-list-top .irp-item .irp-title-block .irp-title a {
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  display: inline-block;
}

.top__newsList2 .irp-press-list-top .irp-item .irp-title-block .irp-icon-pdf::after {
  content: "PDF";
  margin-right: 10px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 13px;
  display: inline-block;
  line-height: 160%;
  padding: 0 7px;
  color: #e40000;
  border: #e40000 2px solid;
}

.top__newsList2 .irp-press-list-top .irp-item .irp-title-block .irp-fsize {
  color: #878787;
  font-size: 13px;
  display: inline-block;
}

.top__newsList2 .irp-press-list-top .irp-item:nth-child(4),
.top__newsList2 .irp-press-list-top .irp-item:nth-child(5) {
  display: none;
}

.top__newsList {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}

.top__newsListItem {
  width: 28%;
}

.top__newsListItemInfo {
  margin-bottom: 0;
}

.top__newsListItemDate {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #1d2088;
  font-size: 18px;
  margin-bottom: 15px;
}

.top__newsListItemTxt {
  color: #1d2088;
  font-weight: 600;
  font-size: 22px;
  display: inline-block;
}

.top__newsListItemFile {
  color: #878787;
  font-size: 13px;
}

.top__newsListItemFile::after {
  content: "PDF";
  margin-left: 10px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 13px;
  display: inline-block;
  padding: 0 7px;
  color: #e40000;
  border: #e40000 2px solid;
}

.top__news .u__btn {
  max-width: 294px;
  margin: 0 auto;
}

.top__coop {
  background: #f1f1f1;
  margin-bottom: 120px;
}

.top__coopInner {
  max-width: 1050px;
  background: #f1f1f1;
  margin: 0 auto;
  padding: 0 25px;
}

.top__coopInner::after {
  content: url("../img/top/tiger.png");
  margin: 0 auto;
  display: block;
  width: 147px;
  position: relative;
  bottom: -14px;
}

.top__coopInner .top__title {
  position: relative;
  top: -25px;
  margin-bottom: 30px;
}

.top__coopList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 0;
}

.top__coopListItem {
  width: 29.3%;
  margin-right: 8%;
  padding-bottom: 70px;
}

.top__coopListItem:nth-child(1) {
  background: url("../img/top/service01.png") 50% 0 no-repeat;
}

.top__coopListItem:nth-child(2) {
  background: url("../img/top/service02.png") 50% 0 no-repeat;
}

/* .top__coopListItem:nth-child(3) {
  background: url("../img/top/service03.png") 50% 0 no-repeat;
} */

.top__coopListItem:nth-child(3) {
  background: url("../img/top/service04.png") 50% 0 no-repeat;
}

.top__coopListItem:nth-child(4) {
  background: url("../img/top/service05.png") 50% 0 no-repeat;
}

.top__coopListItemImage {
  margin-bottom: 25px;
}

.top__coopListItemImage img {
  display: block;
}

.top__coopListItem:nth-child(2),
.top__coopListItem:last-child {
  margin-right: 0;
}

.top__coopListItem:nth-child(1),
.top__coopListItem:nth-child(2) {
  margin-bottom: 30px;
}


.top__coopListItem:nth-child(3),
.top__coopListItem:nth-child(4) {
  margin-bottom: 30px;
}

.top__coopListItemTitle {
  color: #1d2088;
  font-size: 34px;
  font-weight: 600;
}

.top__coopListItemTxt {
  margin-bottom: 25px;
  min-height: 50px;
}

.top__service {
  margin-bottom: 100px;
}

.top__serviceInner {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 25px;
}

.top__serviceInner .top__title {
  margin-bottom: 30px;
}

.top__serviceList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 50px;
}

/* .top__serviceList li:nth-child(10) {
    margin-right: 30px;
} */

.top__serviceList img {
  transition-duration: 0.5s;
}

.top__serviceList img:hover {
  transform: scale(1.2, 1.2);
  cursor: pointer;
}

.top__service .u__btn {
  max-width: 294px;
  margin: 0 auto;
}

.top__csr {
  padding-top: 120px;
  margin-bottom: 120px;
  /* padding-bottom: 60px; */
  background: #f1f1f1 url("../img/top/bg_scr.png") no-repeat;
  background-size: auto 100%;
}

.top__csrInner {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 25px;
}

.top__csrInner::after {
  content: url("../img/top/tiger.png");
  margin: 0 auto;
  display: block;
  width: 147px;
  position: relative;
  bottom: -14px;
}
.top__csrInner .top__title {
  margin-bottom: 60px;
  line-height: 1.3;
}

.top__csrInner .top__title::before,
.top__csrInner .top__title::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}

.top__csrInner .top__title::before {
  margin-bottom: calc(-0.3462962963em + 0px);
}

.top__csrInner .top__title::after {
  margin-top: calc(-0.1425925926em + 0px);
}

.top__csrInner .page08__brandingWrap {
  margin-bottom: 0;
}

.top__csrInner .page08__brandingBtn {
  margin-bottom: 0;
}

.top__campaign {
  margin-bottom: 100px;
}

.top__campaignInner {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 25px;
}

.top__campaignInner .top__title {
  margin-bottom: 30px;
}

.top__campaign .u__btn {
  max-width: 294px;
  margin: 0 auto;
}
.top__campaign img {
  max-width: 100%;
}
.top__campaign .page02__listItemTxt {
  margin: 20px auto 0;
}
.top__campaignBox {
  display: flex;
  margin-top: 20px;
  justify-content: center;
}
.top__campaignBox .top__campaignPic img {
  border: 0.5rem transparent solid;
  transition-duration: 0.5s;
  max-height: 163px;
}
.top__campaignBox .top__campaignPic img:hover {
  transform: scale(1.2, 1.2);
  cursor: pointer;
}
.campaign__slide {
  /* box-shadow: rgba(0, 0, 0, 0.3) 0 0 20px; */
  position: relative;
  margin: 50px 0;
  display: inline-flex;
}

.campaign__slideWrap {
  position: relative;
  margin-bottom: 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .campaign__slideWrap {
    overflow: visible;
  }
}

.campaign__slide .slick-list {
  overflow: visible;
}

.campaign__slide .slick-arrow {
  position: absolute;
  top: 50px;
  z-index: 200;
  width: 50px;
  height: 50px;
  border: #1d2088 2px solid;
  background: #fff;
  display: block;
  text-indent: -9999px;
}
@media screen and (max-width: 768px) {
  .campaign__slide .slick-arrow {
    position: absolute;
    width: 20px;
    height: 20px;
  }
}

.campaign__slide .slick-arrow.slick-prev {
  left: 40px;
  position: absolute;
  background: #fff url("../img/common/arrow_blue.png") no-repeat 50% 50%;
  background-size: 8px 12px;
  transform: rotate(-180deg);
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .campaign__slide .slick-arrow.slick-prev {
    left: -20px;
  }
}

.campaign__slide .slick-arrow.slick-next {
  right: 40px;
  position: absolute;
  background: #fff url("../img/common/arrow_blue.png") no-repeat 50% 50%;
  background-size: 8px 12px;
  top: 50px;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .campaign__slide .slick-arrow.slick-next {
    right: -20px;
    top: 10px;
  }
}

/* .campaign__slide .active img {
  -webkit-animation-name: slideAnim;
  animation-name: slideAnim;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  box-shadow: rgba(0, 0, 0, 0.3) 0 0 20px;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
} */

.campaign__slide div {
  margin-bottom: 0;
  position: relative;
  /* border-right: #ddd 1px solid; */
  border: 0.5rem transparent solid;
}

.campaign__slide div img {
  display: block;
  position: relative;
  max-height: 163px;
  transition-duration: 0.5s;
}
.campaign__slide div img:hover {
  transform: scale(1.2, 1.2);
  cursor: pointer;
  z-index: 9999;
  background-color: #fff;
}

.campaign__slideInfo {
  text-align: center;
  font-weight: 600;
  margin-bottom: 120px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #1d2088;
}

.campaign__slideInfo span {
  color: #1d2088;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  font-weight: 600;
  font-size: 30px;
}

@media screen and (max-width: 768px) {
  .top {
    margin: 0 !important;
    overflow: hidden;
  }

  .top__title {
    margin-bottom: 30px;
    text-align: center;
  }

  .top__title h2 {
    font-size: 40px;
  }

  .top__title p {
    font-size: 13px;
  }

  .top__kv {
    margin-bottom: 0;
  }

  .top__kv img {
    max-width: 100%;
    height: auto;
    width: 100% \9;
    transition-duration: 0.5s;
  }

  .top__kv img:hover {
    transform: scale(1, 1);
    cursor: pointer;
  }

  .top__slide {
    box-shadow: rgba(0, 0, 0, 0.4) 0 0 20px;
    position: relative;
    margin-bottom: 60px;
  }

  .top__slide .slick-arrow {
    top: calc(50% - 15px);
    width: 30px;
    height: 30px;
  }

  .top__slide .slick-arrow.slick-prev {
    left: 10px;
    background-size: 6px 10px;
  }

  .top__slide .slick-arrow.slick-next {
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    right: 10px;
    background-size: 6px 10px;
  }

  .top__slide div {
    margin-bottom: 0;
  }

  .top__slide div img {
    width: 160px;
  }

  .top__slideInfo {
    margin-bottom: 50px;
    font-size: 11px;
  }

  .top__slideInfo span {
    font-size: 20px;
  }

  .top__news {
    margin-bottom: 85px;
  }

  .top__newsInner {
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 25px;
  }

  .top__newsInner .top__title {
    margin-bottom: 30px;
  }

  .top__newsList2 {
    margin: 0;
  }

  .top__newsList2 .slick-track {
    margin-bottom: 0;
  }

  .top__newsList2 .irp-press-list-top {
    margin-bottom: 30px;
  }

  .top__newsList2 .irp-press-list-top .irp-item {
    width: auto;
    padding: 0 10px;
    margin-bottom: 0;
  }

  .top__newsList2 .irp-press-list-top .irp-item:nth-child(2),
  .top__newsList2 .irp-press-list-top .irp-item:nth-child(3) {
    display: none;
  }

  .top__newsList2 .irp-press-list-top .irp-item .irp-date {
    font-size: 14px;
    margin-bottom: 5px;
  }

  .top__newsList2 .irp-press-list-top .irp-item .irp-title-block {
    margin-bottom: 0;
  }

  .top__newsList2 .irp-press-list-top .irp-item .irp-title-block a {
    display: inline-block;
  }

  .top__newsList2 .irp-press-list-top .irp-item .irp-title-block .irp-title {
    display: inline-block;
    margin-bottom: 5px;
  }

  .top__newsList2 .irp-press-list-top .irp-item .irp-title-block .irp-title a {
    font-size: 14px;
    line-height: 23px;
  }

  .top__newsList2 .irp-press-list-top .irp-item .irp-title-block .irp-icon-pdf::after {
    font-size: 10px;
  }

  .top__newsList2 .irp-press-list-top .irp-item .irp-title-block .irp-fsize {
    font-size: 10px;
  }

  .top__newsList {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
  }

  .top__newsListItem {
    width: 28%;
    padding: 0 10px;
  }

  .top__newsListItemInfo {
    margin-bottom: 0;
  }

  .top__newsListItemDate {
    font-size: 14px;
    margin-bottom: 5px;
  }

  .top__newsListItemTxt {
    font-size: 17px;
  }

  .top__newsListItemFile {
    font-size: 10px;
    margin-left: 10px;
  }

  .top__newsListItemFile::after {
    font-size: 10px;
  }

  .top__news .u__btn {
    max-width: 220px;
    margin: 0 auto;
  }

  .top__coop {
    background: #f1f1f1;
    margin-bottom: 70px;
  }

  .top__coopInner {
    background: url("../img/top/bg_smp_service.png") no-repeat 0 5px;
    background-size: 100% auto;
    padding: 0 25px;
  }

  .top__coopInner::after {
    content: "";
    background: url("../img/top/tiger.png");
    width: 100px;
    height: 45px;
    background-size: 100px 45px;
    margin: 0 auto;
    display: block;
    position: relative;
    bottom: -5px;
  }

  .top__coopInner .top__title {
    top: -20px;
    margin-bottom: 0;
  }

  .top__coopList {
    display: block;
    margin-bottom: 40px;
  }

  .top__coopListItem {
    width: auto;
    margin-right: 0;
    margin-bottom: 10px;
    background: none !important;
    padding-bottom: 0;
  }

  .top__coopListItem:nth-child(2) {
    margin-top: 0;
  }

  .top__coopListItemWrap {
    margin-bottom: 10px;
  }

  .top__coopListItemImage {
    margin-bottom: 16px;
  }

  .top__coopListItemImage img {
    display: block;
    height: 48px;
  }

  .top__coopListItem:nth-child(2),
  .top__coopListItem:last-child {
    margin-right: 0;
  }

  .top__coopListItem:nth-child(even) {
    text-align: right;
  }

  .top__coopListItem:nth-child(even) .top__coopListItemImage img {
    margin-left: auto;
  }

  .top__coopListItem:nth-child(even) .u__btn {
    margin-left: auto;
  }

  .top__coopListItemTitle {
    font-size: 25px;
    line-height: 1.3;
    margin-bottom: 0;
  }

  .top__coopListItemTitle::before,
  .top__coopListItemTitle::after {
    content: "";
    display: block;
    height: 0;
    width: 0;
  }

  .top__coopListItemTitle::before {
    margin-bottom: calc(-0.3462962963em + 0px);
  }

  .top__coopListItemTitle::after {
    margin-top: calc(-0.1425925926em + 0px);
  }

  .top__coopListItemTxt {
    line-height: 1.3;
    margin-bottom: 15px;
    margin-top: -5px;
    font-size: 13px;
    line-height: 22px;
    min-height: 0;
  }

  .top__coopListItemTxt::before,
  .top__coopListItemTxt::after {
    content: "";
    display: block;
    height: 0;
    width: 0;
  }

  .top__coopListItemTxt::before {
    margin-bottom: calc(-0.3462962963em + 0px);
  }

  .top__coopListItemTxt::after {
    margin-top: calc(-0.1425925926em + 0px);
  }

  .top__coopListItem .u__btn {
    width: 235px;
    margin-bottom: 0;
  }

  .top__service {
    margin-bottom: 50px;
  }

  .top__serviceList {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 25px;
  }

  .top__serviceListItem {
    width: 50%;
  }

  .top__serviceList li:nth-child(10) {
    margin-right: 0;
  }

  .top__serviceList img {
    max-width: 100%;
    height: auto;
    width: 100% \9;
  }

  .top__service .u__btn {
    max-width: 235px;
  }

  .top__csr {
    padding-top: 70px;
    margin-bottom: 50px;
    padding-bottom: 0;
    background: #f1f1f1;
    background-size: contain;
  }

  .top__csrInner {
    max-width: 1050px;
    margin: 0 auto;
    padding: 0;
  }
  .top__csrInner::after {
    content: "";
    background: url("../img/top/tiger.png");
    width: 100px;
    height: 45px;
    background-size: 100px 45px;
    margin: 0 auto;
    display: block;
    position: relative;
    bottom: -5px;
  }
  .top__csrInner .top__title {
    padding: 0 25px;
    margin-bottom: 25px;
  }

  .top__csrInner .page08__branding {
    margin-bottom: 15px;
    padding: 0 25px;
  }

  .top__csrInner .page08__branding.advertising {
    background: url("../img/top/bg_smp02.png") no-repeat 0 50%;
    background-size: 100% auto;
  }

  .top__csrInner .page08__branding.sports {
    background: url("../img/top/bg_smp03.png") no-repeat 0 50%;
    background-size: 100% auto;
  }

  .top__csrInner .page08__branding.sponsor {
    background: url("../img/top/bg_smp04.png") no-repeat 0 50%;
    background-size: 100% auto;
  }

  .top__csrInner .page08__branding.events {
    background: url("../img/top/bg_smp05.png") no-repeat 0 50%;
    background-size: 100% auto;
  }

  .top__csrInner .page08__branding.student {
    background: url("../img/top/bg_smp_student.png") no-repeat 0 50%;
    background-size: 100% auto;
  }

  .top__csrInner .page08__branding.chintiger {
    background: url("../img/top/bg_smp07.png") no-repeat 0 50%;
    background-size: 100% auto;
  }

  .top__csrInner .page08__branding.cm {
    background: url("../img/top/bg_smp_cm.png") no-repeat 0 50%;
    background-size: 100% auto;
  }

  .top__csrInner .page08__branding.art {
    background: url("../img/top/bg_smp_art.png") no-repeat 0 50%;
    background-size: 100% auto;
  }

  .top__csrInner .page08__branding.csr {
    background: url("../img/top/bg_smp_csr.png") no-repeat 0 50%;
    background-size: 100% auto;
  }

  .top__csrInner .page08__branding a {
    padding: 15px 20px 12px;
  }

  .top__csrInner .page08__branding a img {
    width: 50px;
  }
  .top__campaign {
    margin-bottom: 50px;
  }

  .top__campaign .u__btn {
    max-width: 235px;
  }
}

/* 全ページSNS追加 */
.flexbox_icon ul {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  width: 100%;
  column-gap: 5px;
  margin: 30px 0px 0px 0px;
}

.flexbox_icon li {
  width: 50px;
  box-sizing: border-box;
  padding: 0px 5px 0px 0px;
  text-align: center;
}

.flexbox_icon li img {
  width: 35px;
  height: 35px;
  margin: 7px 7px 7px 7px;
}

.flexbox_icon li:last-of-type img {
  width: 50px;
  height: 50px;
  margin: 0px 5px 5px 5px;
}

/***********************************
*	キャンペーン	*
***********************************/
.page23 {
  max-width: 1050px;
  padding: 0 25px;
  margin: 0 auto;
}
.page23__section {
  margin-bottom: 0;
}
.page23__section.__first {
  margin-bottom: 100px;
}

.page23__section.__first p {
  text-align: center;
}

.page23__section.__first figure {
  text-align: center;
}

.page23__section.__first figure img {
  display: block;
  max-width: 100%;
  height: auto;
  width: 100% \9;
  margin: 0 auto;
}

.page23__lead {
  text-align: center;
  margin-bottom: 100px;
}

.page23__lead::before {
  content: url("../img/page02/tiger.png");
  display: block;
  text-align: center;
  border-bottom: #1d2088 1px solid;
  margin-bottom: 60px;
  line-height: 1;
  font-size: 0;
}

.page23__leadTitle {
  color: #1d2088;
  font-weight: 600;
  font-size: 30px;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.3;
}

.page23__leadTitle::before,
.page23__leadTitle::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}

.page23__leadTitle::before {
  margin-bottom: calc(-0.3462962963em + 0px);
}

.page23__leadTitle::after {
  margin-top: calc(-0.1425925926em + 0px);
}

.page23__flex {
  border: 1px #ededed solid;
  padding: 2%;
  /* margin-bottom: 0; */
  display: flex;
}
.page23__flexLeft {
  flex-basis: 18%;
  margin: 0 2% 0 0;
}
.page23__img {
  margin-bottom: 0;
  min-width: 290px;
  max-width: 290px;
}
.page23__img img {
  vertical-align: bottom;
  max-width: 100%;
}
.page23__img.-empty {
  width: 100%;
  height: 100%;
  background-color: #eeeeee;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page23__img.-empty img {
  width: 50%;
}
.page23__imgSpan {
  font-size: 24px;
  font-weight: bold;
  color: #a2a2a2;
}
.page23__flexDl {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 80%;
  margin-bottom: 0;
  align-content: flex-start;
}
.page23__flexDt {
  flex-basis: 20%;
  margin-bottom: 1em;
}
.page23__Span {
  border: 1px #1d2088 solid;
  padding: 1% 2%;
  color: #1d2088;
  font-weight: 600;
  display: block;
  text-align: center;
}
.page23__flexDd {
  flex-basis: 80%;
  font-weight: 600;
  padding-left: 1em;
  margin-bottom: 1em;
}
/* .page23__flexDd .sp_block {
  display: none;
} */
.page23__flexDl > dt:last-of-type,
.page23__flexDl > dd:last-of-type {
  margin-bottom: 0;
}
.page23__infoLink {
  margin-bottom: 0;
}
.page23__infoLink a {
  font-weight: 600;
  text-decoration: underline;
}
.page23__infoLink.-self {
  text-align: right;
}
.page23__infoLink.-blank a::after {
  background: url("../img/common/icon_new_blue.png") no-repeat;
  content: "";
  width: 14px;
  height: 12px;
  background-size: contain;
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}
.page23__infoLink.-blank.-right {
  text-align: right;
}
.page23__closeTxt {
  color: #c91a1a;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.25;
  display: inline-block;
  margin-top: 0.5em;
}
@media screen and (max-width: 768px) {
  .page23 {
    padding: 0 !important;
    margin-top: -10px;
    margin-bottom: 70px;
  }
  .page23__section.__first {
    margin-bottom: 70px;
  }

  .page23__section.__first p {
    text-align: left;
  }

  .page23__lead {
    text-align: center;
    margin-bottom: 70px;
  }

  .page23__lead::before {
    content: "";
    background: url("../img/page02/tiger.png") no-repeat 50% 0;
    background-size: auto 65px;
    height: 65px;
    display: block;
    margin-bottom: 30px;
  }

  .page23__flex {
    border: 1px #ededed solid;
    padding: 4%;
    flex-direction: column;
  }
  .page23__flexLeft {
    flex-basis: 100%;
    margin-right: 0;
  }
  .page23__img {
    min-width: inherit;
    max-width: inherit;
  }
  .page23__img.-empty {
    min-height: 145px;
    padding: 3% 0;
  }
  .page23__img.-empty img {
    width: 30%;
  }
  .page23__flexDl {
    margin-top: 10px;
  }
  .page23__flexDt {
    /* flex-basis: 32%; */
    flex-basis: 100%;
    margin-bottom: 0.5em;
    font-size: 14px;
  }
  .page23__Span {
    width: 30%;
    padding: 0 2%;
  }
  .page23__flexDd {
    font-size: 14px;
    /* flex-basis: 68%; */
    flex-basis: 100%;
    padding-left: 0;
    line-height: 1.25;
  }
  /* .page23__flexDd .sp_block {
    display: block;
  } */
  .page23__flexDl > dt:last-of-type {
    margin-bottom: 0.5em;
  }
  .page23__flexDl > dd:last-of-type {
    margin-bottom: 0;
  }
  .page23__leadTitle {
    font-size: 23px;
    margin-bottom: 25px;
  }

  .page23__infoLink a {
    font-size: 14px;
    font-weight: 600;
    text-align: left;
  }

  .page23__infoLink.-blank a::after {
    content: "";
    background: url("../img/common/icon_new_blue.png") no-repeat;
    background-size: contain;
    width: 10px;
    height: 9px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 4px;
  }
}

@media screen and (max-width: 425px) {
  .page23__Span {
    width: 50%;
  }
}
/***********************************
*	学生応援	*
***********************************/
.page24 {
  max-width: 1050px;
  padding: 0 25px 60px !important;
  margin: 0 auto;
}
/* ページコンテンツ直下のセクションの余白 */
.page24 > section + section {
  margin-top: 100px;
}
/* ページコンテンツ直下のセクションの子要素の余白 */
.page24 section .section + .section {
  margin-top: 50px;
}
.page24__mv img {
  width: 100%;
}
.page24__title {
  text-align: center;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page24__title::after {
  content: "";
  display: block;
  background-image: url(../img/page24/chintiger.png);
  width: 78px;
  height: 112px;
}
.page24__title-span {
  color: #1d2088;
  font-size: 30px;
  font-weight: 600;
}
.page24__leadTitle {
  color: #1d2088;
  font-weight: 600;
  font-size: 30px;
  text-align: center;
  margin: 40px auto 0;
  line-height: 1.3;
}
.page24__leadTitle.-md {
  font-size: 24px;
}

.page24__leadTitle::before,
.page24__leadTitle::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}

.page24__leadTitle::before {
  margin-bottom: calc(-0.3462962963em + 0px);
}

.page24__leadTitle::after {
  margin-top: calc(-0.1425925926em + 0px);
}
.page24__leadTxt {
  font-size: 18px;
  font-weight: 600;
  line-height: 32px;
  text-align: center;
}
/*
	サービス一覧
================================*/
.page24__servicesWrap-adjust {
  margin-bottom: 0;
}
.page24__servicesWrap {
  display: flex;
  flex-wrap: wrap;
  margin: auto auto 0 -20px;
}
.page24__servicesBox {
  width: calc(100% / 2);
  border-left: transparent 20px solid;
  border-top: transparent 20px solid;
  margin-bottom: 0;
  display: flex;
}
.page24__servicesInner {
  border: #ededed 1px solid;
  padding: 1em;
  margin-bottom: 0;
  width: 100%;
}
.page24__servicesTitle,
.page24__servicesLogo,
.page24__servicesLead,
.page24__servicesLink {
  text-align: center;
}
.page24__servicesTitleWrap {
  /* min-height: 60px; */
  display: flex;
  align-items: center;
  justify-content: center;
  /* line-height: 2; */
  margin-bottom: 0;
}
.page24__servicesTitle {
  font-size: 24px;
  color: #1d2088;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1.25;
}
.page24__servicesTitle.-line2 {
  line-height: 3;
}
.page24__servicesLogo {
  margin-bottom: 10px;
  height: 74px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page24__servicesLogo:hover {
  opacity: 0.5;
  transition-duration: 200ms;
}
.page24__servicesLogo img {
  /* border: #ededed 1px solid; */
  vertical-align: bottom;
}
.page24__servicesLead {
  font-size: 16px;
  margin-bottom: 0;
  font-weight: 600;
}
.page24__servicesLink {
  margin-bottom: 20px;
}
.page24__servicesInstaIcon {
  width: 15px;
}
.page24__servicesImage {
  text-align: center;
}
.page24__servicesImage img {
  vertical-align: bottom;
  max-width: 100%;
}
.page24__servicesMainTxt {
  margin-bottom: 0;
  text-align: center;
}
/*
	学生向け記事 PC
================================*/
.page24__articleWrap {
  display: flex;
  flex-wrap: wrap;
  margin-left: -2em;
}
.page24__articleBox {
  border-left: transparent 2em solid;
  margin-bottom: 0;
  /* flex-basis: calc(100% / 3); */
  width: calc(100% / 3);
}
.page24__article {
  border: #ededed 1px solid;
  display: flex;
  height: 100%;
}
.page24__article:hover {
  opacity: 0.5;
  transition-duration: 200ms;
}
.page24__articleImg img {
  width: 100%;
  vertical-align: bottom;
}
.page24__articleTxtBox {
  padding: 1em;
  margin-bottom: 0;
}
.page24__articleTitle {
  color: #1d2088;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}
.page24__articleText {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 5px;
}
.page24__articleMoreText {
  color: #1d2088;
  text-align: right;
  font-weight: 600;
  margin-bottom: 0;
}
@media screen and (max-width: 960px) {
  /*
	サービス一覧 TB
================================*/
  .page24__servicesImage img {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .page24 {
    padding: 0 !important;
  }
  .page24 > section + section {
    margin-top: 50px;
  }
  .page24 section .section + .section {
    margin-top: 50px;
  }
  .page24 .page__title {
    margin-bottom: 15px !important;
  }
  .page24__title {
    color: #1d2088;
    text-align: left;
    font-size: 23px;
    margin-bottom: 10px;
  }
  .page24__title::after {
    width: 47px;
    height: 68px;
    background-size: cover;
  }
  .page24__title-span {
    font-size: 24px;
  }
  .page24__leadTitle,
  .page24__leadTitle.-md {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .page24__leadTxt {
    font-size: 14px;
    line-height: 26px;
    text-align: left;
  }
  /*
	サービス一覧 SP
================================*/
  .page24__servicesWrap {
    flex-direction: column;
    margin: auto auto 0 0;
  }
  .page24__servicesBox {
    border-left: none;
    width: 100%;
    margin-bottom: 20px;
  }
  .page24__servicesInner {
    padding: 3vw;
  }
  .page24__servicesWrap > div:last-child {
    margin-bottom: 0;
  }
  .page24__servicesImage img {
    width: 100%;
  }
  .page24__servicesTitleWrap {
    min-height: inherit;
  }
  .page24__servicesTitle {
    font-size: 18px;
  }
  .page24__servicesLead,
  .page24__servicesMainTxt,
  .page24__servicesLink {
    font-size: 14px;
    margin-bottom: 5px;
    /* text-align: left; */
  }
  .page24__servicesImage {
    margin-bottom: 5px;
  }
  .page24__servicesInstaIcon {
    width: 10px;
  }
  /*
	学生向け記事 SP
================================*/
  .page24__articleWrap {
    flex-direction: column;
    width: 100%;
    margin: auto;
  }
  .page24__articleBox {
    width: 100%;
    border-left: 0;
  }
  .page24__articleBox + .page24__articleBox {
    margin-top: 20px;
  }
  .page24__articleWrap > div:last-child {
    margin-bottom: 20px;
  }
  .page24__articleTxtBox {
    padding: 1vw 3vw;
  }
  .page24__articleText {
    font-size: 14px;
  }
}

/***********************************
*	芸術支援	*
***********************************/
.page25__sp-block {
  display: none;
}

@media screen and (max-width: 768px) {
  .page25__sp-block {
    display: block;
  }
  .page25__pc-block {
    display: none;
  }
}

.page25__Title {
  color: #1d1f87;
  text-align: center;
  margin: 0 auto 30px;

  font-size: 32px;
  font-weight: 600;
  line-height: 46px;
}

@media screen and (max-width: 768px) {
  .page25__Title {
    margin: 0 auto 20px;

    font-size: 18px;
    line-height: 26px;
  }
}

.page25 {
  max-width: 1050px;
  padding: 0 25px 60px !important;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .page25 {
    max-width: 375px;
    padding: 0 0 60px !important;
    margin: 0 auto;
  }
}

.page25__margin30 {
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .page25__margin30 {
    margin-bottom: 20px;
  }
}
.page25__margin60 {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .page25__margin60 {
    margin-bottom: 40px;
  }
}
.page25__wrap-Kyosan {
  margin-bottom: 72px;
}

@media screen and (max-width: 768px) {
  .page25__wrap-Kyosan {
    margin-bottom: 20px;
  }
}

.page25__kyosanList {
  margin-bottom: 10px;
}

.page25__kyosanList {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .page25__kyosanList {
    display: block;
    margin-bottom: 20px;
    text-align: center;
  }
}

.page25__img {
  width: 485px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .page25__img {
    width: 325px;
    margin: 0 auto;
    text-align: center;
  }
}

.page25__img2 {
  width: 273px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .page25__img2 {
    width: 185px;
  }
}

.page25__leadTxt {
  font-size: 18px;
  font-weight: 600;
  line-height: 32px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .page25__leadTxt {
    font-size: 12px;
    line-height: 22px;
  }
}

.page25__leadTxt2 {
  font-size: 22px;
  font-weight: 600;
  line-height: 32px;
  text-align: left;
  display: block;
  width: 389px;
}

@media screen and (max-width: 768px) {
  .page25__leadTxt2 {
    font-size: 12px;
    font-weight: 600;
    line-height: 17px;
    text-align: center;
    margin: 0 auto;
    width: 325px;
  }
}
.page25__leadTxt3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  margin-left: 60px;
}

@media screen and (max-width: 768px) {
  .page25__leadTxt3 {
    font-size: 12px;
    font-weight: 600;
    line-height: 17px;
    text-align: left;
    margin: 0 auto;
  }
}

.page25__youtubeLink {
  font-weight: 600;
  text-decoration: underline !important;
}

@media screen and (max-width: 768px) {
  .page25__youtubeLink {
    font-size: 12px;
  }
}

.page25__wrap-jishi {
  margin-bottom: 72px;
}

@media screen and (max-width: 768px) {
  .page25__wrap-jishi {
    margin-bottom: 0px;
  }
}

.page25__jishi {
  display: flex;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .page25__jishi {
    display: block;
    margin-bottom: 40px;
  }
}

.page25__leadTitle {
  font-size: 24px;
  font-weight: 600;
  line-height: 35px;
  color: #1d1f87;
}

@media screen and (max-width: 768px) {
  .page25__leadTitle {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #1d1f87;
  }
}
.page25__img3 {
  width: 265px;
  margin-left: 21px;
}

@media screen and (max-width: 768px) {
  .page25__img3 {
    width: 325px;
    margin: 0 0 10px 0;
  }
}

.page25__listTitle {
  color: #1d1f87;
  text-align: center;
  margin: 0 auto 30px;

  font-size: 32px;
  font-weight: 600;
  line-height: 46px;
  border-top: #ededed 2px solid;
  border-bottom: #1d1f87 2px solid;
  padding: 30px 0;
}

@media screen and (max-width: 768px) {
  .page25__listTitle {
    text-align: left;
    margin: 0 auto 25px;

    font-size: 18px;
    line-height: 26px;
    border-top: #ededed 1px solid;
    border-bottom: #1d1f87 1px solid;
    padding: 15px 0;
  }
}

.page25__listBox {
  display: flex;
  padding-bottom: 23px;
  margin-bottom: 23px;
  border-bottom: #ededed 2px solid;
}

.page25__listBox-Noimg {
  width: 265px;
  height: 149px;
}

@media screen and (max-width: 768px) {
  .page25__listBox {
    display: block;
    margin: 25px 0;
    border-bottom: #ededed 1px solid;
  }
}

.page25__listBoxNavy {
  border-bottom: #1d1f87 2px solid;
}

@media screen and (max-width: 768px) {
  .page25__listBoxNavy {
    border-bottom: #1d1f87 1px solid;
  }
}

.page25__listBoxGray {
  border-bottom: #ededed 2px solid;
}

@media screen and (max-width: 768px) {
  .page25__listBoxGray {
    border-bottom: #ededed 1px solid;
  }
}

.page25__listRight {
  margin-left: 63px;
  position: relative;
  margin-bottom: 0;
  width: 667px;
}

@media screen and (max-width: 768px) {
  .page25__listRight {
    margin-left: 0;
    position: initial;
    width: 325px;
  }
}

.page25__listimg {
  width: 265px;
}

@media screen and (max-width: 768px) {
  .page25__listimg {
    width: 325px;
    margin-bottom: 15px;
  }
}

.page25__listForm {
  font-size: 20px;
  font-weight: 600;
  line-height: 29px;
  color: #1d1f87;
  position: absolute;
  top: 0;
}
@media screen and (max-width: 768px) {
  .page25__listForm {
    font-size: 16px;
    line-height: 24px;
    position: initial;
    margin-bottom: 10px;
  }
}
.page25__listRight {
  margin-left: 63px;
  position: relative;
  margin-bottom: 0;
  width: 667px;
}
@media screen and (max-width: 768px) {
  .page25__listRight {
    margin-left: 0;
    position: initial;
    width: 325px;
  }
}
.page25__listText1 {
  font-size: 18px;
  line-height: 27px;
  margin-bottom: 17px;
  position: absolute;
  top: 40%;
}
@media screen and (max-width: 768px) {
  .page25__listText1 {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 10px;
    position: initial;
  }
}
.page25__listText2 {
  font-size: 18px;
  line-height: 27px;
  margin-bottom: 0;
  position: absolute;
  bottom: 0;
}

@media screen and (max-width: 768px) {
  .page25__listText2 {
    font-size: 12px;
    line-height: 18px;
    position: initial;
  }
}

.page25__accordion {
  margin-bottom: 12px;
}

.page25__accordionBtn {
  display: block;
  width: 380px;
  background-color: #1d1f87;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  line-height: 35px;
  padding: 23px 0;
  text-align: center;
  margin: 0 auto;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .page25__accordionBtn {
    width: 190px;
    font-size: 18px;
    line-height: 26px;
    padding: 15px 0;
  }
}

.page25__accordion-content {
  display: none;
}

.page25__hidden {
  display: none;
}

.page25__visible {
  display: block;
}

/***********************************
*	CMギャラリー	*
***********************************/
.page26 {
  max-width: 1050px;
  /* padding: 0 25px 60px !important; */
  margin: 0 auto;
}
/* ページコンテンツ直下のセクションの余白 */
.page26 > section + section {
  margin-top: 50px;
}
.page26__mv img {
  width: 100%;
}
.page26__title {
  text-align: center;
  margin-bottom: 30px;
  color: #1d2088;
  font-size: 30px;
  font-weight: 600;
}

@media screen and (max-width: 980px) {
  .page26__title {
    color: #1d2088;
    margin-bottom: 10px;
    font-size: 24px;
  }
}
.page26__flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 0;
  gap: 20px;
}
@media screen and (max-width: 980px) {
  .page26__flex {
    flex-direction: column;
    gap: 0;
  }
}
.movie-area {
  background-color: #ffffff;
  padding: 0;
  margin-bottom: 0;
}
.page26__flex > .movie-area {
  max-width: 49%;
  width: 100%;
  border: 1px #ccc solid;
  padding: 1%;
}
@media screen and (max-width: 980px) {
  .page26__flex > .movie-area {
    max-width: 100%;
    width: 100%;
  }
  .page26__flex .movie-area + .movie-area {
    margin-top: 4rem;
  }
  .movie-area br {
    display: block;
  }
}
.movie-area br {
  display: none;
}
@media screen and (max-width: 980px) {
  .movie-area br {
    display: block;
  }
}

.movie-area .top-borderLine {
  text-align: center;
  margin-bottom: 30px;
  line-height: 0;
}
.movie-area .top-borderLine:last-child {
  margin-bottom: 0;
  /*	margin-top: 30px;*/
}
.movie-area .top-borderLine img {
  width: 90%;
}
.movie-area .movieInner {
  text-align: center;
}
.movieInner img {
  max-width: 100%;
}
.movie-area .movie-title {
  text-align: center;
  font-size: 22px;
  margin: 5px auto 0;
  font-weight: bold;
  color: #333333;
}
@media screen and (max-width: 980px) {
  .movie-area .movie-title {
    font-size: 18px;
  }
}
.movie-area .movie-title span {
  font-size: 14px;
  padding: 3px 12px 2px;
  border: 1px solid #f1616f;
  color: #f1616f;
  border-radius: 6px;
  line-height: 1;
  vertical-align: 2px;
  margin-left: 10px;
}
.movie-area .cm {
  margin: 0 auto;
  width: 100%;
}
.mov_thumb {
  position: relative;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  overflow: hidden;
}
.mov_paly_btn:before {
  display: block;
  content: "";
  position: absolute;
  pointer-events: none;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  margin-left: -25px;
  margin-top: -25px;
  box-shadow: 0px 9px 21px rgb(0 0 0 / 20%);
  z-index: 3;
}
.mov_paly_btn:after {
  display: block;
  content: "";
  position: absolute;
  pointer-events: none;
  top: 50%;
  left: 50%;
  width: 0px;
  height: 0px;
  border: 10px solid transparent;
  border-left: 16px solid #2a2f89;
  margin-left: -6px;
  margin-top: -10px;
  z-index: 3;
}

@media screen and (max-width: 980px) {
  .cm-contents .cm-title h3 {
    font-size: 20px;
  }
  .movie-area .movie-title {
    font-size: 18px;
  }
  .movie-area .movie-title span {
    font-size: 12px;
  }
  .cm-contents .cm-title p {
    left: 32%;
    position: absolute;
    top: -200%;
    width: 8%;
  }
  .cm-contents.making .cm-title p {
    left: 29%;
  }
}
@media screen and (max-width: 768px) {
  .cm-contents .cm-contentsInner {
    padding: 20px 10px;
  }
  .movie-area {
    padding: 10px 10px;
  }
  .movie-area .top-borderLine {
    margin-bottom: 20px;
  }
  .movie-area .top-borderLine:last-child {
    margin-bottom: 0;
    /*margin-top: 20px;*/
  }
  .comment-contents .inner {
    padding: 40px 10px 20px;
  }
  .comment-contents .comment-cast {
    top: -20px;
    bottom: auto;
    width: 30%;
  }
  .comment-label {
    text-align: right;
    margin: 0 20px 30px;
    letter-spacing: normal;
  }
  .comment-label h2 {
    margin-bottom: 0;
    font-size: 20px;
  }
  .comment-contents .outline-right {
    float: none;
    width: 100%;
  }
  .fbox {
    margin: auto;
    padding: 20px;
  }
  .fbox::after,
  .fbox::before {
    display: none;
  }
  .desc-contents .inner {
    padding: 40px 10px 20px;
  }
  .desc-contents .desc-title h2 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .desc-area {
    padding: 20px;
  }
  .movie-area .cm {
    width: auto;
  }
}
@media screen and (max-width: 680px) {
  /* .movie-area .movieInner {
		position: relative;
		width: 100%;
		padding-top: 56.25%;
		max-width: 640px;
		max-height: 360px;
	} */
  /* .movie-area .movieInner iframe {
		position: absolute;
		top: 0;
		right: 0;
		width: 100% !important;
		height: 100% !important;
	} */
  #main .main_inner p.logo a {
    width: 20%;
    padding: 6px;
  }
  #main .main_inner .catch-copy {
    width: 33%;
  }
  #main .main_inner p.label-large {
    width: 21%;
  }
  #main .main_inner p.label-small {
    right: 25%;
    width: 16%;
  }
  .cm-contents .cm-title {
    padding: 15px 0;
  }
  .cm-contents .cm-title p {
    left: 30%;
    top: -120%;
    width: 8%;
  }
  .cm-contents.making .cm-title p {
    left: 24%;
  }
  .spHide {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .cm-contents .cm-title {
    padding: 10px 0 8px;
  }
  .desc-area {
    padding: 35px 20px;
  }
}
@media screen and (max-width: 460px) {
  .cm-contents .cm-title p {
    left: 19%;
    top: -110%;
    width: 12%;
  }
  .cm-contents.making .cm-title p {
    left: 10%;
  }
  .comment-label {
    margin: 10px 10px 20px;
  }
  .comment-label h2 {
    text-align: left;
    background: url(../images/icon_pen.png) no-repeat 85px 29px;
    background-size: 22px;
    padding-right: 25px;
  }
  .comment-contents .inner,
  .desc-contents .inner {
    padding: 20px 10px;
  }
  .comment-contents .comment-cast {
    width: 40%;
  }
  .spShow {
    display: inline;
  }
  .desc-area .icon {
    width: 16%;
    right: 8px;
  }
  .desc-area {
    padding: 35px 20px;
  }
  #main .main_inner p.logo a {
    width: 19%;
    background: #fff;
    padding: 3px 6px;
  }
}
@media screen and (max-width: 425px) {
  .desc-area .icon {
    width: 20%;
  }
}
/* ラジオCM */
.cont-title-third {
  font-size: 22px;
  font-weight: bold;
  color: #333333;
  text-align: center;
  margin: auto;
  /* margin-top: 4.8rem; */
}
@media screen and (max-width: 980px) {
  .cont-inner {
    padding: 0 10px;
  }
}
.cont-flex {
  display: flex;
  width: 100%;
  max-width: 780px;
  margin: auto;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 980px) {
  .cont-flex {
    flex-direction: column;
    width: 100%;
  }
}
/* .cont-flex__inner {
  flex-basis: 50%;
  border: 15px transparent solid;
} */
.cont-flex__inner {
  margin-bottom: 0;
}
@media screen and (max-width: 980px) {
  .cont-flex__inner {
    flex-basis: 100%;
    border: none;
  }
}
.cont-flex__inner + .cont-flex__inner {
  margin-top: 2rem;
}
.cm-contents.radio {
  background: #feffde;
}
.cm-contents.radio .cm-title {
  background: #e1c32f;
}
.audio {
  margin: 0;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
  align-items: center;
}
.audio.center {
  justify-content: center;
}
.cp-container {
  margin-bottom: 0;
}
@media screen and (max-width: 980px) {
  .audio,
  .audio.center {
    justify-content: flex-end;
  }
}
.audio-content {
  text-align: center;
  font-weight: bold;
  font-size: 18px;
}
@media screen and (max-width: 980px) {
  .audio-content {
    text-align: left;
    font-size: 15px;
  }
}
.audio-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: -15px;
  margin-bottom: 0;
}
@media screen and (max-width: 980px) {
  .audio-list {
    margin: 0;
  }
}

.audio-list__item {
  width: 50%;
  border: 15px transparent solid;
}
.audio-list__item.w100 {
  width: 100%;
  border: 15px transparent solid;
}

.audio-list__item2.w100 {
  width: 100%;
  border: 1px transparent solid;
}

.audio-list__item.bb0 {
  border-bottom: none;
}
@media screen and (max-width: 980px) {
  .audio-list__item.bt0 {
    border-top: none;
  }
  /* .audio-list li:nth-last-of-type(2) {
    border-bottom: 15px transparent solid;
  } */
}

@media screen and (max-width: 980px) {
  .audio-list__item {
    width: 100%;
    border: none;
  }
  .audio-list__item.w100 {
    border: none;
  }
}
/* .audio-list__item + .audio-list__item {
  margin-top: 2rem;
} */

/* audioプレーヤースタイル */
.audiojs,
.audiojs > .play-pause,
.audiojs > .play-pause > p {
  width: 30px;
  height: 30px;
}

.audiojs {
  display: table;
  margin: 0px;
  background: none;
  box-shadow: none;
  border-radius: 3rem;
  margin-right: 1rem;
  background-color: #eee;
}

.audiojs > .play-pause {
  padding: 0px;
  border: none;
}

.audiojs > .play-pause > p {
  position: relative;
  background: none;
}

.audiojs > .play-pause > .play::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-25%) translateY(-50%);
  width: 0px;
  height: 0px;
  border: 8px solid transparent;
  border-left: 12px solid #009260;
  content: "";
}

.audiojs > .play-pause > .pause::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 4px;
  height: 12px;
  border-left: 4px solid #009260;
  border-right: 4px solid #009260;
  content: "";
}

.audiojs > .scrubber {
  display: none;
}

.audiojs > .time {
  display: none;
}
.spShow {
  display: none;
}
/***********************************
*	関連知識（チンタイガー）	*
***********************************/

.common__tigerWrap {
  position: relative;
  max-width: 1050px;
  margin: auto;
}
.page03 .common__tigerWrap {
  margin-bottom: 100px;
}
.common__tigerBox {
  position: absolute;
  width: 150px;
  height: 250px;
  margin-bottom: 0;
}
.common__tigerBox.top01,
.common__tigerBox.message01,
.common__tigerBox.advertising01,
.common__tigerBox.news01 {
  height: 270px;
}
@media screen and (max-width: 1365px) {
  .common__tigerBox,
  .common__tigerBox.top01,
  .common__tigerBox.message01,
  .common__tigerBox.advertising01,
  .common__tigerBox.news01 {
    position: relative;
    /* width: 150px;
    height: 250px; */
    width: calc(150 / 1365 * 100vw);
    height: calc(270 / 1365 * 100vw);
  }
}
@media screen and (max-width: 1024px) {
  .common__tigerBox,
  .common__tigerBox.top01,
  .common__tigerBox.message01,
  .common__tigerBox.advertising01,
  .common__tigerBox.news01 {
    width: calc(190 / 1024 * 100vw);
    height: calc(270 / 1024 * 100vw);
  }
}
@media screen and (max-width: 768px) {
  .common__tigerBox,
  .common__tigerBox.top01,
  .common__tigerBox.message01,
  .common__tigerBox.advertising01,
  .common__tigerBox.news01 {
    height: calc(350 / 1024 * 100vw);
  }
}
@media screen and (max-width: 560px) {
  .common__tigerBox,
  .common__tigerBox.top01,
  .common__tigerBox.message01,
  .common__tigerBox.advertising01,
  .common__tigerBox.news01 {
    height: calc(190 / 560 * 100vw);
  }
}
@media screen and (max-width: 768px) {
  .page03 .common__tigerWrap {
    margin-bottom: 70px;
  }
}
.common__tiger {
  position: absolute;
  width: 150px;
  height: 227px;
  margin-bottom: 0;
  text-align: center;
  animation: jump 1s infinite;
}
@media screen and (max-width: 1365px) {
  .common__tiger {
    /* width: 120px;
    height: 181px; */
    /* width: calc(100 / 1365 * 100vw);
    height: calc(185 / 1365 * 100vw); */
    width: 100%;
    height: auto;
    right: 0;
    left: 0;
    margin: 0 auto;
  }
}
/* @media screen and (max-width: 1024px) {
  .common__tiger {
    width: 60px;
    height: 91px;
  }
} */
@keyframes jump {
  0%,
  100% {
    top: 0;
    transform: scale(1);
  }
  30% {
    top: -5%;
  }
  90% {
    top: 0;
  }
}
.common__tigerAppeal {
  width: 100%;
  margin-bottom: 0;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  background-color: #e40000;
  padding: 0 1em;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .common__tigerAppeal {
    font-size: 2.4vw;
  }
}
.common__tigerAppealTxt {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .common__tigerAppealTxt {
    font-size: 2.4vw;
  }
}
.common__tigerAppeal::before {
  content: "";
  display: block;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #e40000;
  border-left: 10px solid transparent;
  /* transform: rotate(90deg); */
  position: absolute;
  top: -10px;
  right: calc(50% - 10px);
  margin: auto;
  z-index: 3;
}
.common__tigerModalImgBox {
  max-width: 200px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 1365px) {
  .common__tigerModalImgBox {
    max-width: 50%;
  }
}
.common__tigerImg,
.common__tigerModalImg {
  max-width: 100%;
}
.common__tigerImg {
  cursor: pointer;
}

.common__tigerTxt {
  /* max-width: 200px; */
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  font-size: 18px;
  margin: 20px auto 0;
  color: #1d1f87;
}
/* 共通 */
.tiger_common {
  top: 0;
  margin: auto;
  left: -200px;
}
@media screen and (max-width: 1365px) {
  .tiger_common {
    left: auto;
    margin: 40px auto;
  }
}
/* TOP用 */
.top01 {
  top: 0;
  bottom: 0;
  margin: auto;
  left: -200px;
}
@media screen and (max-width: 1365px) {
  .top01 {
    left: -140px;
  }
}
@media screen and (max-width: 1365px) {
  .top01 {
    top: auto;
    bottom: 0;
    left: 0;
    margin: 5vw auto 0;
  }
}
.top02 {
  top: 0;
  bottom: 0;
  margin: auto;
  right: -200px;
}
@media screen and (max-width: 1365px) {
  .top02 {
    right: -140px;
  }
}
@media screen and (max-width: 1365px) {
  .top02 {
    top: auto;
    bottom: 0;
    right: 0;
    margin: 5vw auto 0;
  }
}

/* MESSAGE用 */
.message01 {
  top: 0;
  margin: auto;
  left: -200px;
}
@media screen and (max-width: 1365px) {
  .message01 {
    left: auto;
    margin: 40px auto 0;
  }
}

/* SERVICE用 */
.service01 {
  top: 0;
  margin: auto;
  left: -200px;
}
@media screen and (max-width: 1365px) {
  .service01 {
    left: auto;
    margin: 40px auto 0;
  }
}

/* ADVERTISING用 */
.advertising01 {
  top: 0;
  margin: auto;
  left: -200px;
}
@media screen and (max-width: 1365px) {
  .advertising01 {
    left: auto;
  }
}

/* SPORTS用 */
.sports01 {
  top: 0;
  margin: auto;
  left: -200px;
}
@media screen and (max-width: 1365px) {
  .sports01 {
    left: auto;
    margin: 40px auto;
  }
}
.sports02 {
  top: 0;
  margin: auto;
  right: -200px;
}
@media screen and (max-width: 1365px) {
  .sports02 {
    right: auto;
    margin: 40px auto;
  }
}

/* SPONSOR用 */
.sponsor01 {
  top: 0;
  margin: auto;
  left: -200px;
}
@media screen and (max-width: 1365px) {
  .sponsor01 {
    left: auto;
    margin: 40px auto;
  }
}
/* NEWS用 */
.news01 {
  top: 0;
  margin: auto;
  left: -200px;
}
@media screen and (max-width: 1365px) {
  .news01 {
    left: auto;
  }
}

/* モーダルウィンドウ */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 9999;
  overflow-y: hidden;
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 0;
  border: 1px solid #888;
  position: absolute;
  width: 50vw;
  height: 50vw;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  max-width: 500px;
  max-height: 500px;
}

@media screen and (max-width: 768px) {
  .modal-content {
    width: 90%;
    /* height: 90vw; */
    height: auto;
  }
}

.modal-inner {
  height: 100%;
  padding: 10%;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  top: 20px;
  right: 20px;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
html.modal-open {
  overflow: hidden;
}

/***********************************
*	CSR活動・社会貢献活動	*
***********************************/
.page27__sp-block {
  display: none;
}

@media screen and (max-width: 768px) {
  .page27__sp-block {
    display: block;
  }
  .page27__pc-block {
    display: none;
  }
}

.page27__mv-1 {
  background-image: url(/img/page27/bg.png);
  background-repeat: repeat-x;
  background-color: #bef3f9;
  text-align: center;
  height: auto;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .page27__mv-1 {
    background-size: 375px;
  }
}

.page27__mv-1 img {
  max-width: 1000px;
  height: 100%;
  margin-bottom: 0;
  margin: 0 auto;
  display: block;
}

@media screen and (max-width: 768px) {
  .page27__mv-1 img {
    max-width: 305px;
  }
}

.page27__mv-2 {
  background-color: #fefedf;
  text-align: center;
  margin: 0 auto 0;
}

.page27__mv-2 img {
  margin: 12px auto;
}

@media screen and (max-width: 768px) {
  .page27__mv-2 img {
    max-width: 350px;
    margin: 0 auto;
    padding: 10px 0;
  }
}

.page27__title {
  text-align: center;
  margin-bottom: 30px;
  align-items: center;
  color: #1d2088;
  font-size: 30px;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .page27__title {
    font-size: 23px;
    margin-bottom: 25px;
    line-height: 1.3;
  }
}

.page27_contents {
  width: 1000px;
  text-align: center;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .page27_contents {
    width: 325px;
  }
}

.page27__News {
  display: flex;
  justify-content: center;
  border: #ededed 2px solid;
  border-radius: 12px;
  padding-top: 27px;
  padding-bottom: 27px;
  margin-bottom: 92px;
}

@media screen and (max-width: 768px) {
  .page27__News {
    padding: 12px 0;
    margin-bottom: 48px;
  }
}

.page27__News div {
  color: #1d2088;
  font-weight: 600;
  font-size: 24px;

  margin: 0;
}

@media screen and (max-width: 768px) {
  .page27__News div {
    font-size: 14px;
  }
}

.page27__News div::after {
  content: "▶";
  color: #1d2088;
  margin-left: 24px;
}

.page27__News a {
  text-decoration: none;
  color: #222;
  font-weight: normal;
  font-size: 24px;
  display: block;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .page27__News a {
    font-size: 14px;
  }
}

.page27__News a:hover {
  text-decoration: underline;
}

.page27__csrItem-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

@media screen and (max-width: 768px) {
  .page27__csrItem-wrap {
    display: block;
  }
}

.page27__csrItem {
  border: #ededed 1px solid;
  margin-bottom: 38px;
  width: 31%;
}

@media screen and (max-width: 768px) {
  .page27__csrItem {
    margin-bottom: 24px;
    width: 77%;
    margin: 0 auto 24px;
  }
}

.page27__csrItem-bottom {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .page27__csrItem-bottom {
    margin-bottom: 24px;
  }
}

.page27__csrItem-Link {
  width: 100%;
  height: 100%;
  display: block;
}

.page27__csrItem-img {
  width: 80%;
  margin-top: 24px;
}

.page27__csrItem-border {
  background-image: linear-gradient(to right, #ededed 7px, transparent 7px);
  background-size: 10px 2px;
  background-repeat: repeat-x;
  background-position: left top;
}

.page27__csrItem-title {
  color: #1d2088;
  font-size: 24px;
  font-weight: 600;
  padding-top: 20px;
}

@media screen and (max-width: 768px) {
  .page27__csrItem-title {
    font-size: 18px;
    padding-top: 14px;
    margin-bottom: 12px;
  }
}

.page27__csrItem-lead {
  color: #222;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .page27__csrItem-lead {
    font-size: 11px;
  }
}

.u__scrInnerItemLink2 {
  line-height: 1.2;
  display: flex;
  padding: 18px 18px;
  justify-content: center;
}

.u__scrInnerItemLink2 :hover .u__scrInnerItemText {
  color: #fff;
}

.u__scrInnerItemLinkTop {
  font-size: 22px;
}

.u__scrInnerItemText {
  color: #1d1f87;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.2;
  margin: 0 34px 0 0;
}

.u__scrInnerItemText:hover {
  color: #fff;
}

.u__scrInnerItemText2 {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .u__scrInnerItemLink2 {
    padding: 20px 20px;
    display: block;
  }
  .u__scrInnerItemLink2 .u__scrInnerItemText {
    margin: 0;
  }
}

.page27__Link {
  font-size: 26px !important;
  letter-spacing: -0.1rem !important;
  padding: 20px !important;
}

.page27__LinkiconMargin {
  margin-bottom: 7px !important;
}
.page15__flexbox {
  display: flex;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .page15__flexbox {
    display: block;
    margin-top: 50px;
  }
}
.page15__flexboxLeft {
  width: 146%;
}
@media screen and (max-width: 768px) {
  .page15__flexboxLeft {
    width: 100%;
    text-align: center;
  }
}
.page15__flexboxLeft h1 {
  color: #1d2088;
  font-weight: 600;
  font-size: 30px;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .page15__flexboxLeft h1 {
    font-size: 23px;
    line-height: 1.3;
  }
}
.page15__downloadWrap {
  display: flex;
}
.page15__DownloadImg {
  width: 3%;
  margin-right: 2%;
}
.page15__DownloadPdf {
  text-decoration: none;
  font-size: 1.8rem;
  width: 100%;
  color: #222 !important;
}
@media screen and (max-width: 768px) {
  .page15__DownloadPdf {
    font-size: 1.4rem;
  }
}

.page15__DownloadPdf::before {
  content: url(/img/page15/ico_download.svg);
  width: 12px;
  margin-right: 2%;
  display: inline-block;
}
.page15__factbookImg {
  width: 130%;
}
@media screen and (max-width: 768px) {
  .page15__factbookImg {
    width: 100%;
  }
}
.page15__Linkicon:nth-child(1) a span {
  background: url("../img/page15/icon01.png") no-repeat 0 100%;
}
.page15__Linkicon:nth-child(2) a span {
  background: url("../img/page15/icon02.png") no-repeat 0 100%;
}
.page15__Link a span {
  display: block;
  width: 60px;
  height: 58px;
  margin: 0 auto;
}
.header__subMenuNews {
  justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  .header__subMenuNews {
    justify-content: normal;
  }
}
.page15__LinkWrap {
  margin: 60px auto 0;
}
.page15__LinkBtn {
  width: 31.3%;
  margin-right: 3%;
}
@media screen and (max-width: 768px) {
  .page15__LinkBtn {
    width: auto;
    margin-right: 0;
  }
}
.page15__LinkBtns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .page15__LinkBtns {
    display: block;
  }
}
.header__subMenuItemMargin {
  margin-left: 60px;
}
.page15__sp-block {
  display: none;
}
@media screen and (max-width: 1040px) {
  .header__subMenuItemMargin {
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .header__subMenuItemLinkNews {
    border-bottom: #494d9f 1px solid !important;
  }
  .page15__sp-block {
    display: block;
  }
}
