@charset "UTF-8";
/* Scss Document */
/* Scss Document */
/* -------------------------------------------------- */
/* file   : base.css                                  */
/* update : 2024                                      */
/* -------------------------------------------------- */
/* -------------------------------------------------- */
/* 全デバイス共通(PC向け) */
/* --------------------------------------------------- */
/* reset */
/* -------------------------------------------------- */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
*:before, *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  padding: 0;
}

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

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #000;
  line-height: 1.62;
  font-weight: 400;
  letter-spacing: 0;
  -webkit-text-size-adjust: 100%;
}

input,
textarea,
button,
select {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #000;
  line-height: 1.62;
  font-weight: 400;
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
}

/* font */
/* -------------------------------------------------- */
/* -------------------------------------------------- */
/* tablet向け */
/* --------------------------------------------------- */
@media print, screen and (min-width: 560px) and (max-width: 1080px) {
  /* ---------------------tablet END----------------------------- */
}
/* -------------------------------------------------- */
/* sp向け */
/* --------------------------------------------------- */
@media screen and (max-width: 750px) {
  body {
    font-size: 14px;
    line-height: 2;
    font-weight: 400;
  }
  input,
  textarea,
  button,
  select {
    font-size: 14px;
    line-height: 2;
    font-weight: 400;
  }
  /* -------------------------------------------------- */
}
/* -------------------------------------------------- */
/* 全デバイス共通(PC向け) */
/* --------------------------------------------------- */
/* body */
/* -------------------------------------------------- */
img, svg {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: bottom;
  line-height: 1;
}

/* link */
/* -------------------------------------------------- */
a {
  color: #000;
}
a:link {
  text-decoration: none;
  word-break: break-all;
}
a:visited {
  text-decoration: none;
}
a:hover img {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/* ---------------全デバイス共通--------------------- */
.pc {
  display: block;
}

.sp {
  display: none;
}

.pc-inline {
  display: inline;
}

.sp-inline {
  display: none;
}

/* ---------------全デバイス共通(sp)--------------------- */
@media screen and (max-width: 750px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .pc-inline {
    display: none;
  }
  .sp-inline {
    display: inline;
  }
}
/* Scss Document */
/*　inview
----------------------------------------------- */
.view01 {
  position: relative;
  top: 30px;
  opacity: 0;
  -webkit-transition: all 750ms ease;
  transition: all 750ms ease;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.view01.fadeInDown {
  top: 0;
  opacity: 1;
  -webkit-transition: all 750ms ease;
  transition: all 750ms ease;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.view02 {
  position: relative;
  right: 30px;
  opacity: 0;
  -webkit-transition: all 750ms ease;
  transition: all 750ms ease;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.view02.fadeInLeft {
  right: 0;
  opacity: 1;
  -webkit-transition: all 750ms ease;
  transition: all 750ms ease;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.view03 {
  position: relative;
  left: 30px;
  opacity: 0;
  -webkit-transition: all 750ms ease;
  transition: all 750ms ease;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.view03.fadeInRight {
  left: 0;
  opacity: 1;
  -webkit-transition: all 750ms ease;
  transition: all 750ms ease;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.view04 {
  position: relative;
  bottom: 30px;
  opacity: 0;
  -webkit-transition: all 750ms ease;
  transition: all 750ms ease;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.view04.fadeInTop {
  bottom: 0;
  opacity: 1;
  -webkit-transition: all 750ms ease;
  transition: all 750ms ease;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.view05 {
  position: relative;
  opacity: 0;
  -webkit-transition: all 750ms ease;
  transition: all 750ms ease;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.view05.fadeInStay {
  opacity: 1;
  -webkit-transition: all 750ms ease;
  transition: all 750ms ease;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

@media screen and (min-width: 751px) {
  .view01 {
    -webkit-transition-delay: 0.6s;
            transition-delay: 0.6s;
  }
  .view01.fadeInDown {
    -webkit-transition-delay: 0.6s;
            transition-delay: 0.6s;
  }
  .view02 {
    -webkit-transition-delay: 0.6s;
            transition-delay: 0.6s;
  }
  .view02.fadeInLeft {
    -webkit-transition-delay: 0.6s;
            transition-delay: 0.6s;
  }
  .view03 {
    -webkit-transition-delay: 0.6s;
            transition-delay: 0.6s;
  }
  .view03.fadeInRight {
    -webkit-transition-delay: 0.6s;
            transition-delay: 0.6s;
  }
  .view04 {
    -webkit-transition-delay: 0.6s;
            transition-delay: 0.6s;
  }
  .view04.fadeInTop {
    -webkit-transition-delay: 0.6s;
            transition-delay: 0.6s;
  }
  .view05 {
    -webkit-transition-delay: 0.6s;
            transition-delay: 0.6s;
  }
  .view05.fadeInStay {
    -webkit-transition-delay: 0.6s;
            transition-delay: 0.6s;
  }
}
/* -------------------------------------------------- */
/* file   : common.css                                */
/* update : 2023                                      */
/* -------------------------------------------------- */
/*============================
    header
  ============================*/
/* -------------------------------------------------- */
/* pc向け */
/* --------------------------------------------------- */
.header {
  width: 100%;
  padding: 0 100px;
  background: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 22;
}
.header a, .header span {
  word-break: normal;
}

.header_inner {
  padding: 30px 0 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header_logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 16px;
}

.header_logo-img {
  width: 70px;
}

.header_logo-text {
  font-family: "Noto Serif JP", serif;
  font-size: 23px;
  font-weight: 500;
}

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

.header-nav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 34px;
}

.header-nav_item a, .header-nav_item span {
  font-weight: 500;
}
.header-nav_item a,
.header-nav_item span {
  font-size: 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 750px) {
  .header-nav_item a:hover,
  .header-nav_item span:hover {
    color: #4269BF;
  }
}
.header-nav_item a.hover-line,
.header-nav_item span.hover-line {
  position: relative;
}
.header-nav_item a.hover-line::before,
.header-nav_item span.hover-line::before {
  content: "";
  width: 1px;
  height: 0;
  display: block;
  background: #4269BF;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
@media screen and (min-width: 750px) {
  .header-nav_item a.hover-line:hover::before,
  .header-nav_item span.hover-line:hover::before {
    height: 100px;
  }
}

.header-nav_btn--no-link {
  font-weight: 500;
  cursor: pointer;
}

.pc-accordion {
  width: 100%;
  padding: 30px 0 50px;
  background: #FAFAFA;
  position: absolute;
  top: 108px;
  left: 0;
  display: none;
  z-index: 42;
}

.pc-accordion_inner {
  max-width: 1076px;
  width: 100%;
  margin: 0 auto;
}

.pc-accordion_ttl {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 600;
  color: #4269BF;
}

.pc-accordion_layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.pc-accordion_layout .pc-accordion_wrap {
  width: 55.39%;
}

.pc-accordion_link {
  width: 100%;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #1B1B1B;
}

.pc-accordion_wrap {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0 35px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.pc-accordion_wrap::after {
  content: "";
  width: calc(33.3333333333% - 35px);
  height: 0;
  display: block;
}
.pc-accordion_wrap .pc-accordion_list {
  width: calc(33.3333333333% - 35px);
}

.pc-accordion_list a {
  line-height: 2.5;
  display: inline-block;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 750px) {
  .pc-accordion_list a:hover {
    color: #4269BF;
  }
}

.pc-accordion_lis-flex {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 1.81%;
}
.pc-accordion_lis-flex li {
  width: 23.64%;
  border-bottom: 1px dotted #cfcfcf;
  line-height: 1.5;
  padding-bottom: 10px;
}
.pc-accordion_lis-flex a {
  font-size: 14px;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 750px) {
  .pc-accordion_lis-flex a:hover {
    color: #4269BF;
  }
}
.pc-accordion_lis-flex a img {
  margin-left: 4px;
  line-height: 1;
  vertical-align: middle;
  display: inline-block;
}

.pc-accordion_sub-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px 0;
}

.header_search {
  display: none;
}

.header_pc-access {
  margin-left: 44px;
}
.header_pc-access a {
  padding-left: 33px;
  font-weight: 500;
  display: block;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header_pc-access a::before {
  content: "";
  width: 24px;
  height: 33px;
  display: block;
  background: url(../img/access_icon.svg) no-repeat center/100% auto;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 750px) {
  .header_pc-access a:hover {
    color: #4269BF;
  }
}

.header_en-btn {
  width: 44px;
  height: 44px;
  margin-left: 25px;
}
.header_en-btn a {
  width: 100%;
  height: 100%;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #F2F2FC;
}

.header_search-btn {
  width: 27px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
}

.header_search-box {
  width: calc(100% - 40px);
  position: absolute;
  top: 80px;
  left: 50%;
  pointer-events: none;
  opacity: 0;
  -webkit-transform: translateX(-50%) translateY(-15px);
          transform: translateX(-50%) translateY(-15px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header_search-box.is-active {
  display: block;
  pointer-events: all;
  opacity: 1;
  -webkit-transform: translateX(-50%) translateY(0);
          transform: translateX(-50%) translateY(0);
}

.search input {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.search input.header_search_area {
  width: calc(100% - 40px);
  padding: 6px;
  font-size: 16px;
  border: 1px solid #3B5CA9;
  border-radius: 5px 0 0 5px;
}
.search input.header_search_bt {
  width: 50px;
  font-size: 12px;
  color: #FFF;
  background: #3B5CA9;
  border-radius: 0 5px 5px 0;
}

.header-btn {
  width: 40px;
  height: 25px;
  margin-left: 30px;
  position: relative;
  z-index: 22;
}

.menu-trigger {
  display: block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  width: 100%;
  height: 100%;
  background: none;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
.menu-trigger.active span {
  background: #FFF;
}
.menu-trigger span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  border-radius: 10px;
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #4269BF;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: 11px;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

.menu-trigger.active span:nth-of-type(1) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}

.menu-trigger.active span:nth-of-type(2) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

.menu-trigger.active span:nth-of-type(3) {
  opacity: 0;
}

.hidden {
  width: 100%;
  height: 100%;
  background: #3B5CA9;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
}

.header-main-menu {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}

.header-menu_inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 92px 20px;
}

.header-menu_box {
  padding: 58px 0;
  border-bottom: 1px solid #93C4F6;
}
.header-menu_box.header-menu_box--bd-none {
  padding-bottom: 0;
  border-bottom: none;
}

.header-menu_ttl {
  margin-bottom: 18px;
}
.header-menu_ttl a,
.header-menu_ttl span {
  padding-right: 22px;
  font-size: 20px;
  font-weight: 700;
  color: #FFAACB;
  display: inline-block;
  position: relative;
}
.header-menu_ttl a::after,
.header-menu_ttl span::after {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  background: url(../img/header_pc_arrow.svg) no-repeat center/100% auto;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.header-menu_ttl--no-link {
  font-size: 20px;
  font-weight: 700;
  color: #FFF;
  display: inline-block;
}

.header-menu_ttl--mb0 {
  margin: 0;
}

.header-menu_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px 1.835%;
}
.header-menu_list .header-menu_slist {
  padding-left: 0;
}

.header-menu_sbox {
  width: 32.11%;
}

.header-menu_sub {
  margin-top: 30px;
}
.header-menu_sub:first-child {
  margin-top: 0;
}

.header-menu_sttl {
  margin-bottom: 20px;
  font-size: 18px;
  color: #FFF;
  border-bottom: 1px dashed #6287E3;
  position: relative;
}
.header-menu_sttl::before {
  content: "";
  width: 50px;
  height: 1px;
  display: block;
  background: #FFF;
  position: absolute;
  bottom: -1px;
  left: 0;
}

.header-menu_slist.row02 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.header-menu_slist.row02 .header-menu_link {
  padding-right: 10px;
}

.header-menu_item {
  width: 50%;
  padding-right: 10px;
}
.header-menu_item.row03 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.header-menu_item.row03 .header-menu_link {
  width: 33.3333333333%;
  padding-right: 15px;
  line-height: 2.66;
}
.header-menu_item.row04 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.header-menu_item.row04 .header-menu_link {
  width: 25%;
  padding-right: 10px;
}

.header-sub-menu {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 60px 17.46%;
}

.header-sub-menu_item {
  width: 39.68%;
}

.header-sub-menu_ttl {
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px dashed #94A4C7;
  position: relative;
}
.header-sub-menu_ttl::after {
  content: "";
  width: 30px;
  height: 1px;
  display: block;
  background: #FFF;
  position: absolute;
  bottom: -1px;
  left: 0;
  z-index: 1;
}
.header-sub-menu_ttl a,
.header-sub-menu_ttl span {
  font-size: 18px;
  font-weight: 700;
  color: #FFF;
}

.header-menu_link a,
.header-menu_link span {
  padding-left: 21px;
  font-size: 15px;
  font-weight: 500;
  color: #FFF;
  line-height: 2.66;
  display: inline-block;
  position: relative;
}
.header-menu_link a::before,
.header-menu_link span::before {
  content: "";
  width: 10px;
  height: 10px;
  display: block;
  border-radius: 50%;
  line-height: 1;
  background: #FFAACB;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.header-menu_link--out a {
  padding-right: 23px;
  position: relative;
}
.header-menu_link--out a .header-menu_link-icon {
  padding-left: 0;
  line-height: 1;
  width: 15px;
  height: 15px;
  margin-left: 4px;
  display: inline-block;
  background: url(../img/out_link.svg) no-repeat center/100% auto;
}
.header-menu_link--out a .header-menu_link-icon::before {
  display: none;
}

.header-menu_sub-link {
  padding-left: 21px;
}
.header-menu_sub-link a {
  padding-left: 1em;
  font-size: 14px;
  font-weight: 500;
  color: #FFF;
  line-height: 1.85;
  display: inline-block;
  position: relative;
}
.header-menu_sub-link a::before {
  content: "・";
  display: block;
  border-radius: 50%;
  line-height: 1.85;
  color: #FFF;
  position: absolute;
  top: 0;
  left: 0;
}

.header-menu_language {
  width: 300px;
  margin: 0 auto;
  background: #FFF;
  border-radius: 10px;
}

.header-menu_language_btn {
  width: 100%;
  padding: 20px 0;
  font-size: 15px;
  font-weight: 700;
  color: #4269BF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 8px;
}
.header-menu_language_btn.active .header-menu_language_btn-arrow {
  -webkit-transform: rotate(180deg) translateY(-4px);
          transform: rotate(180deg) translateY(-4px);
}
.header-menu_language_btn span {
  display: block;
  line-height: 1;
}

.header-menu_language_btn-text {
  font-size: 16px;
  font-weight: 500;
}

.header-menu_language_btn-arrow {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header-menu_language_list {
  padding: 8px 20px 20px;
  display: none;
}

.header-menu_language_item {
  margin-top: 8px;
}
.header-menu_language_item:first-child {
  margin-top: 0;
}
.header-menu_language_item a {
  display: block;
  text-align: center;
  color: #4269BF;
}

.header-btns {
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px 50px;
}

.header-btns_item {
  max-width: 300px;
  width: 100%;
}
.header-btns_item a {
  min-height: 60px;
  padding: 9px 5px;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  color: #4269BF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 9px;
  background: #FFF;
  border: 1px solid #DBDBEE;
  border-radius: 10px;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 750px) {
  .header-btns_item a:hover {
    opacity: 0.7;
  }
  .header-btns_item a:hover img {
    opacity: 1;
  }
}

.header-sns {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 25px 50px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-language {
  width: 160px;
  position: absolute;
  top: 0;
  right: 100px;
  background: #4269BF;
  border-radius: 0 0 10px 10px;
}

.header-language__btn {
  width: 100%;
  padding: 6px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 8px;
}
.header-language__btn.active .header-language__btn-arrow {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.header-language__btn span {
  display: block;
  line-height: 1;
}

.header-language__btn-text {
  font-size: 16px;
  font-weight: 500;
  color: #FFF;
}

.header-language__btn-arrow {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header-language__list {
  padding: 8px 20px 20px;
  display: none;
}

.header-language__item {
  margin-top: 8px;
}
.header-language__item:first-child {
  margin-top: 0;
}
.header-language__item a {
  font-weight: 500;
  color: #FFF;
}

/* -------------------pc END------------------------------- */
/* -------------------------------------------------- */
/* tablet向け */
/* --------------------------------------------------- */
@media screen and (max-width: 1630px) {
  .header {
    padding: 0 70px;
  }
  .header_logo a {
    gap: 0 12px;
  }
  .header_logo-img {
    width: 50px;
  }
  .header_logo-text {
    font-size: 18px;
  }
  .header-nav_list {
    gap: 0 25px;
  }
  .header-nav_item a,
  .header-nav_item span {
    font-size: 14px;
  }
  .header_pc-access {
    margin-left: 30px;
  }
  .header_en-btn {
    width: 35px;
    height: 35px;
    margin-left: 20px;
  }
  .header-btn {
    margin-left: 20px;
  }
}
@media screen and (max-width: 1320px) {
  .header-nav_list {
    display: none;
  }
  .header_search {
    margin-left: 10px;
    display: block;
  }
  .header_search.is-active::after {
    content: "";
    width: 100%;
    height: 100vh;
    display: block;
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
  }
  .header_pc-access {
    display: none;
  }
  .header_en-btn {
    width: 44px;
    height: 44px;
    margin-left: 30px;
  }
  .header_en-btn a {
    width: 100%;
    height: 100%;
    font-size: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: #F2F2FC;
  }
  .header_search-btn {
    width: 32px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    display: block;
  }
  .header_search-box {
    width: calc(100% - 40px);
    position: absolute;
    top: 120px;
    left: 50%;
    z-index: 5;
    pointer-events: none;
    opacity: 0;
    -webkit-transform: translateX(-50%) translateY(-15px);
            transform: translateX(-50%) translateY(-15px);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .header_search-box.is-active {
    display: block;
    pointer-events: all;
    opacity: 1;
    -webkit-transform: translateX(-50%) translateY(0);
            transform: translateX(-50%) translateY(0);
  }
  .search input {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  .search input.header_search_area {
    width: calc(100% - 40px);
    padding: 6px;
    font-size: 16px;
    background: #FFF;
    border: 1px solid #3B5CA9;
    border-radius: 5px 0 0 5px;
  }
  .search input.header_search_bt {
    width: 50px;
    font-size: 12px;
    color: #FFF;
    background: #3B5CA9;
    border-radius: 0 5px 5px 0;
  }
}
/* ---------------------tablet END----------------------------- */
/* -------------------------------------------------- */
/* sp向け */
/* --------------------------------------------------- */
@media screen and (max-width: 750px) {
  .header {
    padding: 0;
  }
  .header_inner {
    padding: 11px 14px 11px 11px;
    background: #FFF;
    position: relative;
    z-index: 21;
  }
  .header_logo {
    width: auto;
    min-width: 0;
  }
  .header_logo a {
    gap: 0 5px;
  }
  .header_logo-img {
    width: 38px;
  }
  .header_logo-text {
    font-size: 13px;
  }
  .header_r {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header-nav {
    display: none;
  }
  .header_en-btn {
    width: 25px;
    height: 25px;
    margin-left: 0;
    display: none;
  }
  .header_en-btn a {
    font-size: 10px;
  }
  .header-btn {
    width: 35px;
    height: 25px;
    margin-left: 10px;
  }
  .menu-trigger span {
    height: 3px;
  }
  .menu-trigger span:nth-of-type(1) {
    top: 0;
  }
  .menu-trigger span:nth-of-type(2) {
    top: 11px;
  }
  .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }
  .menu-trigger.active span {
    background: #4269BF;
  }
  .menu-trigger.active span:nth-of-type(1) {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(-45deg);
            transform: translateY(-50%) rotate(-45deg);
  }
  .menu-trigger.active span:nth-of-type(2) {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
  }
  .menu-trigger.active span:nth-of-type(3) {
    opacity: 0;
  }
  .header-menu_inner {
    max-width: 100%;
    margin: 0;
    padding: 87px 18px 52px;
  }
  .header-menu_box {
    padding: 0;
    border-bottom: none;
  }
  .header-menu_ttl {
    margin-bottom: 0;
    border-bottom: 1px solid #94A4C7;
  }
  .header-menu_ttl.active {
    border-top: 1px solid #94A4C7;
  }
  .header-menu_ttl.active:first-child {
    border-top: none;
  }
  .header-menu_ttl.active a::before,
  .header-menu_ttl.active span::before {
    -webkit-transform: translateY(-50%) rotate(90deg);
            transform: translateY(-50%) rotate(90deg);
  }
  .header-menu_ttl a,
  .header-menu_ttl span {
    padding: 15px 0;
    font-size: 15px;
    color: #FFF;
    display: block;
    pointer-events: none;
  }
  .header-menu_ttl a::before,
  .header-menu_ttl span::before {
    content: "";
    width: 1px;
    height: 30px;
    display: block;
    background: #FFF;
    position: absolute;
    top: 50%;
    right: 14px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .header-menu_ttl a::after,
  .header-menu_ttl span::after {
    width: 30px;
    height: 1px;
    display: block;
    background: #FFF;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .header-menu_ttl--no-link {
    padding: 0;
    font-size: 15px;
    display: block;
  }
  .header-menu_ttl--sp-link a {
    pointer-events: all;
  }
  .header-menu_ttl--sp-link a::before {
    display: none;
  }
  .header-menu_ttl--sp-link a::after {
    content: "";
    width: 15px;
    height: 15px;
    display: block;
    background: url(../img/sp_arrow.svg) no-repeat center/100% auto;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .header-menu_wrap {
    margin-top: 10px;
    display: none;
  }
  .header-menu_top {
    margin-bottom: 15px;
    border-bottom: 1px dashed #94A4C7;
  }
  .header-menu_top a {
    padding: 0 0 15px 21px;
    font-size: 15px;
    font-weight: 500;
    color: #FFF;
    line-height: 1.42;
    display: block;
    position: relative;
  }
  .header-menu_top a::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #FFAACB;
    position: absolute;
    top: 6px;
    left: 0;
  }
  .header-menu_list {
    padding-left: 0;
    display: block;
  }
  .header-menu_list .header-menu_slist {
    padding-left: 0;
  }
  .header-menu_sbox {
    width: 100%;
    padding-bottom: 15px;
    border-bottom: 1px dashed #94A4C7;
  }
  .header-menu_sub {
    margin-top: 0;
  }
  .header-menu_sub:first-child {
    margin-top: 0;
  }
  .header-menu_sttl {
    margin-top: 15px;
    margin-bottom: 10px;
    padding-left: 32px;
    font-family: "Noto Serif JP", serif;
    font-size: 15px;
    font-weight: 600;
    border-bottom: none;
  }
  .header-menu_sttl::before {
    width: 20px;
    background: #FFAACB;
    position: absolute;
    bottom: auto;
    top: 50%;
    left: 0;
  }
  .header-menu_slist {
    padding: 0 0 15px;
  }
  .header-menu_slist.row02 {
    width: 100%;
    display: block;
  }
  .header-menu_slist.row02 .header-menu_link {
    padding-right: 10px;
  }
  .header-menu_item {
    width: 100%;
    margin-top: 10px;
    padding-right: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header-menu_item:first-child {
    margin-top: 0;
  }
  .header-menu_item.row03 {
    width: 100%;
    display: block;
  }
  .header-menu_item.row03 .header-menu_link {
    width: 100%;
    padding-right: 0;
  }
  .header-menu_item.row04 {
    width: 100%;
    display: block;
  }
  .header-menu_item.row04 .header-menu_link {
    width: 100%;
    padding-right: 0;
  }
  .header-sub-menu {
    margin-top: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px 0;
  }
  .header-sub-menu_item {
    width: 100%;
  }
  .header-sub-menu_ttl {
    margin-bottom: 10px;
    padding-bottom: 6px;
  }
  .header-sub-menu_ttl::after {
    width: 15px;
  }
  .header-sub-menu_ttl a,
  .header-sub-menu_ttl span {
    font-size: 15px;
  }
  .header-menu_link {
    margin-top: 10px;
  }
  .header-menu_link:first-child {
    margin-top: 0;
  }
  .header-menu_link a,
  .header-menu_link span {
    padding-left: 21px;
    line-height: 1.8;
    display: block;
  }
  .header-menu_link a::before,
  .header-menu_link span::before {
    top: 9px;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .header-menu_link--out a {
    padding-right: 23px;
    position: relative;
  }
  .header-menu_link--out a .header-menu_link-icon {
    width: 14px;
    height: 13px;
    background: url(../img/out_link.svg) no-repeat center/100% auto;
  }
  .header-menu_language {
    width: 160px;
    margin: 0 auto 15px;
  }
  .header-menu_language_btn {
    padding: 10px 0;
    gap: 0 9px;
  }
  .header-menu_language_btn.active .header-menu_language_btn-arrow {
    -webkit-transform: rotate(180deg) translateY(-4px);
            transform: rotate(180deg) translateY(-4px);
  }
  .header-menu_language_btn-text {
    font-size: 15px;
    font-weight: 700;
  }
  .header-btns {
    margin-top: 26px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 24px 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .header-btns_item {
    max-width: 100%;
    width: 47.06%;
  }
  .header-btns_item:first-child {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .header-btns_item:first-child a {
    height: 60px;
  }
  .header-btns_item:nth-child(2) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .header-btns_item:nth-child(2) a {
    height: 60px;
  }
  .header-btns_item:nth-child(3) {
    max-width: 100%;
    width: 100%;
    height: auto;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .header-btns_item:nth-child(3) a {
    padding: 4px 5px;
    border-radius: 50px;
  }
  .header-btns_item a {
    min-height: 0;
    padding: 12px 5px;
    border-radius: 10px;
    -webkit-transition: 0s;
    transition: 0s;
  }
  .header-sns {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0 20px;
  }
  .header-sns_item {
    width: 40px;
  }
  .header_search-box {
    top: 80px;
  }
  .header-language {
    display: none;
  }
}
/* -------------------sp END------------------------------- */
/* -------------------------------------------------- */
/* file   : common.css                                */
/* update : 2022                                      */
/* -------------------------------------------------- */
/*============================
    footer
  ============================*/
/* -------------------------------------------------- */
/* pc向け */
/* --------------------------------------------------- */
.sp-sns-list {
  display: none;
}

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

.forms_item {
  width: 50%;
  height: 350px;
}
.forms_item a {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}
.forms_item p {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  z-index: 1;
}
.forms_item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.forms_en {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 600;
  color: #FFF;
  display: block;
}

.forms_ja {
  margin-top: 20px;
  font-family: "Noto Serif JP", serif;
  font-size: 40px;
  letter-spacing: 0.1em;
  color: #FFF;
  display: block;
}

.footer {
  padding: 100px 0 36px;
  background: #474747;
}

.footer-sns {
  width: 100px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
}

.footer-sns_list {
  width: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  gap: 42px 0;
}

.footer-sns_search {
  position: relative;
}

.footer-sns_search-btn {
  width: 24px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
}

.footer-sns_search-box {
  position: absolute;
  top: 50%;
  left: 36px;
  pointer-events: none;
  opacity: 0;
  -webkit-transform: translateX(-20px) translateY(-50%);
          transform: translateX(-20px) translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer-sns_search-box.is-active {
  display: block;
  pointer-events: all;
  opacity: 1;
  -webkit-transform: translateX(0) translateY(-50%);
          transform: translateX(0) translateY(-50%);
}

#cse-search-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.search input {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.search input.search_area {
  width: 155px;
  padding: 6px;
  font-size: 16px;
  background: #FFF;
  border: 1px solid #3B5CA9;
  border-radius: 5px 0 0 5px;
}
.search input.search_bt {
  width: 50px;
  font-size: 12px;
  color: #FFF;
  background: #3B5CA9;
  border-radius: 0 5px 5px 0;
}

.footer-inner {
  max-width: 1290px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer-logo {
  font-family: "Noto Serif JP", serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #FFF;
}

.footer-address {
  margin-top: 14px;
  line-height: 2;
  color: #FFF;
}

.footer-menu {
  width: 34.9%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer-menu_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px 0;
}
.footer-menu_box:first-child {
  margin-right: 134px;
}
.footer-menu_box a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #FFF;
  display: inline-block;
  position: relative;
}
@media screen and (min-width: 750px) {
  .footer-menu_box a:hover::after {
    width: 100%;
  }
}
.footer-menu_box a::after {
  content: "";
  width: 0;
  height: 1px;
  display: block;
  background: #FFF;
  left: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.footer-copy {
  width: 100%;
  margin-top: 125px;
  font-size: 12px;
  color: #7C7C7C;
}

.page-top {
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 40px;
  right: 120px;
  z-index: 21;
}
.page-top a {
  width: 100%;
  height: 100%;
  display: block;
  background: #7C7C7C;
  border-radius: 50%;
  border: 1px solid #474747;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 750px) {
  .page-top a:hover {
    background: #4269BF;
  }
  .page-top a:hover::before {
    border-color: #FFF;
  }
}
.page-top a::before {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  border-top: 2px solid #474747;
  border-right: 2px solid #474747;
  position: absolute;
  top: 20px;
  left: 50%;
  -webkit-transform: translate(-50%, 0) rotate(-45deg);
          transform: translate(-50%, 0) rotate(-45deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/* -------------------pc END------------------------------- */
/* -------------------------------------------------- */
/* tablet向け */
/* --------------------------------------------------- */
@media screen and (max-width: 1190px) {
  .sp-sns-list {
    padding: 49px 0 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0 32px;
    background: #1B1B1B;
    line-height: 1;
  }
  .forms_en {
    font-size: 18px;
  }
  .forms_ja {
    font-size: 30px;
  }
  .footer-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer-menu {
    width: 100%;
    margin: 0 auto 25px;
    padding-right: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .footer-menu_box {
    width: 33.3333333333%;
    gap: 24px 0;
  }
  .footer-menu_box:first-child {
    margin-right: 0;
  }
  .footer-menu_box:nth-child(2) {
    margin-right: 0;
  }
  .footer-main {
    text-align: center;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .footer-copy {
    text-align: center;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
/* ---------------------tablet END----------------------------- */
/* -------------------------------------------------- */
/* sp向け */
/* --------------------------------------------------- */
@media screen and (max-width: 750px) {
  .forms {
    display: block;
  }
  .forms_item {
    width: 100%;
    height: 164px;
  }
  .forms_item p {
    width: 100%;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
    z-index: 1;
  }
  .forms_item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .forms_en {
    font-size: 14px;
  }
  .forms_ja {
    margin-top: 5px;
    font-size: 23px;
  }
  .footer {
    padding: 36px 0 28px;
    position: relative;
  }
  .footer-sns {
    display: none;
  }
  .footer-inner {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    display: block;
  }
  .footer-logo {
    font-size: 18px;
  }
  .footer-address {
    margin-top: 20px;
    font-size: 12px;
    line-height: 1.5;
  }
  .footer-menu {
    display: none;
  }
  .footer-copy {
    margin-top: 30px;
    font-size: 11px;
    text-align: center;
    display: block;
  }
  .page-top {
    bottom: auto;
    top: -25px;
    right: 20px;
  }
  .page-top a::before {
    width: 16px;
    height: 16px;
    border-top: 2px solid #474747;
    border-right: 2px solid #474747;
    top: 20px;
  }
  .footer-oc_ttl {
    font-family: "Abril Fatface", serif;
    font-size: 17px;
    font-weight: 400;
    text-align: center;
    color: #FFF;
  }
  .footer-oc_flex {
    margin-top: 6px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0 5px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .footer-oc_next {
    width: 30px;
  }
  .footer-oc_day {
    font-family: "Barlow", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #FFF;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0 3px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .footer-oc_day span {
    width: 11px;
    height: 11px;
    font-size: 8px;
    font-weight: 700;
    color: #FF8AA5;
    line-height: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: #FFF;
    border-radius: 50%;
  }
}
/* -------------------sp END------------------------------- */
/* -------------------------------------------------- */
/* file   : common.css                                */
/* update : 2024                                      */
/* -------------------------------------------------- */
/*============================
    共通パーツ
  ============================*/
/* -------------------------------------------------- */
/* pc向け */
/* --------------------------------------------------- */
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--scroll-padding-top);
}

body.js-on {
  overflow: hidden;
}

#container {
  padding-top: 120px;
  margin: 0 80px;
  position: relative;
}

main {
  overflow: hidden;
}

.bg {
  background: #FAFAFA;
}

.index .page-link.page-link--row3 {
  margin-bottom: 130px;
}

.no-link {
  pointer-events: none !important;
}

.inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-mv {
  background: url(../img/mv_bg.png) no-repeat top right/82.88% auto;
}
.page-mv .inner {
  padding: 0 5%;
}
.page-mv .inner:has(.page-mv_ttl) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page-mv #breadCrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 60px 0 50px;
}
.page-mv #breadCrumb ul {
  max-height: 100%;
  padding: 10px 0;
}
.page-mv #breadCrumb li {
  display: inline-block;
  position: relative;
  padding-right: 24px;
  word-break: keep-all;
}
.page-mv #breadCrumb li::after {
  content: "";
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #B1B1B1;
  border-right: solid 2px #B1B1B1;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 3px;
  right: 9px;
  bottom: 0;
  margin: auto;
}
.page-mv #breadCrumb li:last-child {
  padding-right: 0;
}
.page-mv #breadCrumb li:last-child::after {
  display: none;
}
.page-mv #breadCrumb li:last-child span,
.page-mv #breadCrumb li:last-child a {
  color: #3B5CA9;
}
.page-mv #breadCrumb span,
.page-mv #breadCrumb a {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #B1B1B1;
  word-break: keep-all;
}
.page-mv--position {
  position: relative;
  background: none;
}
.page-mv--position .page-mv_ttl {
  padding-bottom: 0;
}

.page-mv_bg {
  width: 67%;
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
}

.page-mv_ttl {
  padding: 60px 0 50px;
  margin-right: 20px;
}

.page-mv_ttl-small {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
  display: block;
}

.page-mv_ttl-department {
  margin-top: 10px;
  font-family: "Noto Serif JP", serif;
  font-size: 50px;
  font-weight: 500;
  line-height: 1.44;
  letter-spacing: 0.1em;
  display: block;
}

.page-mv_img {
  margin: 0 auto 100px;
}
.page-mv_img img {
  width: 100%;
}

.page-mv_img-small {
  width: calc(50% + 630px);
  margin: 0 0 100px auto;
}
.page-mv_img-small img {
  width: 100%;
}

.note {
  font-size: 12px;
}

.contents-row2 {
  margin-top: 70px;
  padding-bottom: 130px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  z-index: 2;
}

.contents-main {
  max-width: 1260px;
  width: calc(100% - 270px);
  padding: 0 130px 0 130px;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.contents-side {
  max-width: 270px;
  width: 27%;
  min-width: 255px;
  background: #3B5CA9;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  padding: 0 20px;
  border-radius: 0 10px 10px 0;
}

.contents-side_ttl {
  padding: 20px 0;
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
  color: #FFF;
  border-bottom: 1px solid #FFF;
}

.flex01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.flex01.col2 > div {
  width: calc(50% - 35px);
}
.flex01.col3 div {
  width: calc(33.3333333333% - 20px);
}

.contents-side_sbox:last-child .contents-side_link::before {
  display: none;
}

.contents-side_btn {
  width: 100%;
  padding: 20px 0;
  background-color: transparent;
  border: none;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #FFF;
  text-align: left;
  letter-spacing: 0.1em;
  display: block;
  cursor: pointer;
  position: relative;
}
.contents-side_btn::after {
  content: "";
  width: 8px;
  height: 8px;
  display: block;
  border-bottom: 1px solid #FFAACB;
  border-right: 1px solid #FFAACB;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  pointer-events: none;
}
.contents-side_btn.active::after {
  -webkit-transform: translateY(-50%) rotate(225deg);
          transform: translateY(-50%) rotate(225deg);
}

.contents-side_btn--bd {
  position: relative;
}
.contents-side_btn--bd::before {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.25);
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.contents-side_sbox:last-child .contents-side_btn--bd::before {
  border-bottom: none;
}
.contents-side_sbox:last-child .contents-side_btn--bd.active::before {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.25);
}

.contents-side_list {
  padding: 10px 0 20px;
  display: none;
  position: relative;
}
.contents-side_list::before {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.25);
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.contents-side_sub-link {
  line-height: 1.8;
  margin-top: 5px;
  padding-left: 13px;
  position: relative;
}
.contents-side_sub-link::before {
  content: "";
  width: 8px;
  height: 1px;
  display: block;
  background: #FFAACB;
  position: absolute;
  top: 50%;
  left: 0;
}
.contents-side_sub-link a {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #FFF;
  line-height: 1.8;
}
.contents-side_sub-link a.icon--blank::after {
  content: "";
  display: inline-block;
  background: url(/common/img/img_blank_hover.svg) no-repeat center center/contain;
  width: 13px;
  height: 13px;
  margin-left: 8px;
}
.contents-side_sub-link a.current {
  color: #FFAACB;
}

.contents-side_link {
  position: relative;
}
.contents-side_link::before {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.25);
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.contents-side_link:last-child a {
  border: none;
}
.contents-side_link a {
  padding: 20px 0;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.1em;
  color: #FFF;
  display: block;
}
.contents-side_link a.icon--blank::after {
  content: "";
  display: inline-block;
  background: url(/common/img/img_blank_hover.svg) no-repeat center center/contain;
  width: 13px;
  height: 13px;
  margin-left: 8px;
}
.contents-side_link a.current {
  color: #FFAACB;
}

.page-ttl01 {
  padding-top: 6px;
  font-family: "Noto Serif JP", serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
  position: relative;
}
.page-ttl01::before {
  content: "";
  width: 80px;
  height: 2px;
  display: block;
  background: #1B1B1B;
  position: absolute;
  bottom: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.page-ttl01 .page-ttl01_base {
  display: block;
}

.page-ttl01_small {
  font-size: 20px;
  line-height: 1.6;
  display: block;
}

.page-ttl02 {
  margin-bottom: 20px;
  position: relative;
}
.page-ttl02::before {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  border-bottom: 1px dashed #DDC5D5;
  position: absolute;
  top: 50%;
  left: 0;
}
.page-ttl02.page-ttl02--literature::before {
  border-bottom: 1px dashed #FFB5BA;
}
.page-ttl02.page-ttl02--human::before {
  border-bottom: 1px dashed #A6DDD0;
}

.page-ttl02_base {
  padding-right: 30px;
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.1em;
  display: inline-block;
  background: #FAFAFA;
  position: relative;
  z-index: 1;
}

.page-ttl03 {
  margin-bottom: 20px;
  padding-right: 32px;
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.page-ttl04 {
  margin-bottom: 20px;
  padding-left: 15px;
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 600;
  color: #4269BF;
  line-height: 1.6;
  letter-spacing: 0.1em;
  border-left: 3px solid #4269BF;
}
.page-ttl04.page-ttl04--literature {
  color: #FF5963;
  border-color: #FF5963;
}
.page-ttl04.page-ttl04--human {
  color: #0EB48E;
  border-color: #0EB48E;
}
.page-ttl04.page-ttl04--international {
  color: #B7709F;
  border-color: #B7709F;
}
.page-ttl04.page-ttl04--information-design {
  color: #669BD1;
  border-color: #669BD1;
}

.page-ttl05 {
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  font-weight: 600;
  color: #4269BF;
}
.page-ttl05.page-ttl05--literature {
  color: #FF5963;
}
.page-ttl05.page-ttl05--human {
  color: #0EB48E;
}
.page-ttl05.page-ttl05--international {
  color: #B7709F;
}
.page-ttl05.page-ttl05--information-design {
  color: #669BD1;
}

.page-ttl06 {
  margin-bottom: 5px;
  font-size: 17px;
  font-weight: 600;
  color: #4269BF;
  letter-spacing: 0.1em;
}
.page-ttl06.page-ttl06--literature {
  color: #FF5963;
}
.page-ttl06.page-ttl06--human {
  color: #0EB48E;
}
.page-ttl06.page-ttl06--international {
  color: #B7709F;
}
.page-ttl06.page-ttl06--information-design {
  color: #669BD1;
}

.page-ttl07 {
  padding-bottom: 8px;
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #BCCBF2;
  position: relative;
}
.page-ttl07::before {
  content: "";
  width: 50px;
  height: 1px;
  display: block;
  background: #4269BF;
  position: absolute;
  bottom: -1px;
  left: 0;
}
.page-ttl07.page-ttl07--literature {
  border-color: #FFB5BA;
}
.page-ttl07.page-ttl07--literature::before {
  background: #FF5963;
}
.page-ttl07.page-ttl07--human {
  border-color: #A6DDD0;
}
.page-ttl07.page-ttl07--human::before {
  background: #0EB48E;
}
.page-ttl07.page-ttl07--international {
  border-color: #DDC5D5;
}
.page-ttl07.page-ttl07--international::before {
  background: #B7709F;
}
.page-ttl07.page-ttl07--information-design {
  border-color: #A6C4E2;
}
.page-ttl07.page-ttl07--information-design::before {
  background: #669BD1;
}
.page-ttl07.page-ttl07--graduate {
  border-color: #ADE4FF;
}
.page-ttl07.page-ttl07--graduate::before {
  background: #30B9FE;
}
.page-ttl07 .text-s {
  font-size: 18px;
}

.page-ttl08 {
  margin-bottom: 53px;
  font-family: "Noto Serif JP", serif;
  font-size: 34px;
  font-weight: 700;
  color: #4269BF;
  text-align: center;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #DBDBEE;
  position: relative;
}
.page-ttl08::before {
  content: "";
  width: 39px;
  height: 3px;
  display: block;
  background: #4269BF;
  position: absolute;
  bottom: -4px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.page-ttl08.page-ttl08--literature {
  color: #FF5963;
  border-color: #FFB5BA;
}
.page-ttl08.page-ttl08--literature::before {
  background: #FF5963;
}
.page-ttl08.page-ttl08--human {
  color: #0EB48E;
  border-color: #A6DDD0;
}
.page-ttl08.page-ttl08--human::before {
  background: #0EB48E;
}
.page-ttl08.page-ttl08--international {
  color: #B7709F;
  border-color: #DDC5D5;
}
.page-ttl08.page-ttl08--international::before {
  background: #B7709F;
}
.page-ttl08.page-ttl08--information-design {
  color: #669BD1;
  border-color: #A6C4E2;
}
.page-ttl08.page-ttl08--information-design::before {
  background: #669BD1;
}

.page-ttl09 {
  margin-bottom: 60px;
  position: relative;
}
.page-ttl09::before {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  border-bottom: 1px dashed #DDC5D5;
  position: absolute;
  top: 50%;
  left: 0;
}

.page-ttl10 {
  margin-bottom: 96px;
  line-height: 1.31;
  position: relative;
}

.page-ttl10_base {
  font-family: "Noto Serif JP", serif;
  font-size: 38px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
  display: block;
}

.page-ttl10_sub {
  line-height: 1;
  position: absolute;
  top: 45px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
}

.page-ttl11 {
  margin-bottom: 60px;
  text-align: center;
  line-height: 1.31;
  position: relative;
}
.page-ttl11::before {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  border-bottom: 1px dashed #DDC5D5;
  position: absolute;
  top: 50%;
  left: 0;
}

.page-ttl11--literature::before {
  border-color: #FFB5BA;
}

.page-ttl11--human::before {
  border-color: #A6DDD0;
}

.page-ttl11--international::before {
  border-color: #DDC5D5;
}

.page-ttl11--information-design::before {
  border-color: #A6C4E2;
}

.page-ttl11_base {
  padding: 0 20px;
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.1em;
  display: inline-block;
  background: #FAFAFA;
  position: relative;
  z-index: 1;
}

.page-ttl12 {
  background: #EBEBFF;
  margin-bottom: 30px;
  padding: 8px 15px;
  line-height: 1.31;
  border-radius: 3px;
}

.page-ttl12_base {
  color: #4269BF;
}

.page-ttl12--literature {
  background: #FFDEE0;
}
.page-ttl12--literature .page-ttl12_base {
  color: #FF5963;
}
.page-ttl12--literature .page-ttl12_base::before {
  background: #FF5963;
}

.page-ttl12--human {
  background: #DFF2EE;
}
.page-ttl12--human .page-ttl12_base {
  color: #0EB48E;
}
.page-ttl12--human .page-ttl12_base::before {
  background: #0EB48E;
}

.page-ttl12--international {
  background: #F8EAF3;
}
.page-ttl12--international .page-ttl12_base {
  color: #B7709F;
}
.page-ttl12--international .page-ttl12_base::before {
  background: #B7709F;
}

.page-ttl12--information-design {
  background: #E1EBF4;
}
.page-ttl12--information-design .page-ttl12_base {
  color: #669BD1;
}
.page-ttl12--information-design .page-ttl12_base::before {
  background: #669BD1;
}

.page-ttl12--graduate {
  background: #D5F1FF;
}
.page-ttl12--graduate .page-ttl12_base {
  color: #30B9FE;
}
.page-ttl12--graduate .page-ttl12_base::before {
  background: #30B9FE;
}

.page-ttl12_base {
  padding: 0 15px;
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.1em;
  position: relative;
}
.page-ttl12_base::before {
  content: "";
  width: 1px;
  height: calc(100% - 8px);
  display: block;
  background: #4269BF;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.under-nav {
  border-top: 1px solid #000;
  margin: 140px 0 60px;
}

.under-nav_ttl {
  margin: 38px 0;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

.btn {
  width: 201px;
}
.btn.btn--literature a {
  color: #FF5963;
  border-color: #FFB5BA;
}
@media screen and (min-width: 750px) {
  .btn.btn--literature a:hover {
    color: #FFF;
    background: #FF5963;
    border-color: #FF5963;
  }
}
.btn.btn--human a {
  color: #0EB48E;
  border-color: #A6DDD0;
}
@media screen and (min-width: 750px) {
  .btn.btn--human a:hover {
    color: #FFF;
    background: #0EB48E;
    border-color: #0EB48E;
  }
}
.btn.btn--international a {
  color: #B7709F;
  border-color: #DDC5D5;
}
@media screen and (min-width: 750px) {
  .btn.btn--international a:hover {
    color: #FFF;
    background: #B7709F;
    border-color: #B7709F;
  }
}
.btn.btn--information-design a {
  color: #669BD1;
  border-color: #A6C4E2;
}
@media screen and (min-width: 750px) {
  .btn.btn--information-design a:hover {
    color: #FFF;
    background: #669BD1;
    border-color: #669BD1;
  }
}
.btn a {
  padding: 16px 5px;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  text-align: center;
  line-height: 1.33;
  color: #4269BF;
  display: block;
  background: #FFF;
  border: 1px solid #DBDBEE;
  border-radius: 32px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 750px) {
  .btn a:hover {
    color: #FFF;
    background: #4269BF;
  }
}

.icon--pdf {
  display: inline-block;
}
.icon--pdf::after {
  content: "";
  display: inline-block;
  background: url(/common/img/img_pdf.svg) no-repeat center center/contain;
  width: 38px;
  height: 18px;
  margin: 0 0 -2px 8px;
}

.icon--blank {
  display: inline-block;
}
.icon--blank::after {
  content: "";
  display: inline-block;
  background: url(/common/img/img_blank.svg) no-repeat center center/contain;
  width: 13px;
  height: 13px;
  margin-left: 8px;
}

.link-list_item a,
.btn a,
.arrow-btn a {
  word-break: keep-all;
}
@media screen and (min-width: 750px) {
  .link-list_item a:hover .icon--pdf::after,
  .btn a:hover .icon--pdf::after,
  .arrow-btn a:hover .icon--pdf::after {
    background: url(/common/img/img_pdf_hover.svg) no-repeat center center/contain;
  }
  .link-list_item a:hover .icon--blank::after,
  .btn a:hover .icon--blank::after,
  .arrow-btn a:hover .icon--blank::after {
    background: url(/common/img/img_blank_hover.svg) no-repeat center center/contain;
  }
}

.link-list_item a {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-right: 32px;
}
.link-list_item .link-list_item--small {
  width: 100%;
  margin-top: 5px;
  font-size: 14px;
  display: block;
}

.arrow-btn {
  max-width: 358px;
}
.arrow-btn a {
  padding: 10px 25px 10px 5px;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  text-align: center;
  color: #4269BF;
  background: #FFF;
  border: 1px solid #DBDBEE;
  border-radius: 50px;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: 100%;
}
@media screen and (min-width: 750px) {
  .arrow-btn a:hover {
    color: #FFF;
    background: #4269BF;
    border-color: #4269BF;
  }
  .arrow-btn a:hover .arrow-btn_icon {
    border-color: #FFF;
  }
  .arrow-btn a:hover.icon--pdf::after {
    background: url(/common/img/img_pdf_hover.svg) no-repeat center center/contain;
    width: 38px;
    height: 18px;
  }
  .arrow-btn a:hover.icon--blank::after {
    background: url(/common/img/img_blank_hover.svg) no-repeat center center/contain;
    width: 13px;
    height: 13px;
  }
}

.arrow-btn_icon {
  width: 7px;
  height: 7px;
  display: block;
  border-top: 1px solid #4269BF;
  border-right: 1px solid #4269BF;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

.arrow-btn--literature a {
  color: #FF5963;
  border-color: #FFB5BA;
}
@media screen and (min-width: 750px) {
  .arrow-btn--literature a:hover {
    color: #FFF;
    background: #FF5963;
    border-color: #FF5963;
  }
  .arrow-btn--literature a:hover .arrow-btn_icon {
    border-color: #FFF;
  }
}
.arrow-btn--literature .arrow-btn_icon {
  border-color: #FF5963;
}

.arrow-btn--human a {
  color: #0EB48E;
  border-color: #A6DDD0;
}
@media screen and (min-width: 750px) {
  .arrow-btn--human a:hover {
    color: #FFF;
    background: #0EB48E;
    border-color: #0EB48E;
  }
  .arrow-btn--human a:hover .arrow-btn_icon {
    border-color: #FFF;
  }
}
.arrow-btn--human .arrow-btn_icon {
  border-color: #0EB48E;
}

.arrow-btn--international a {
  color: #B7709F;
  border-color: #DDC5D5;
}
@media screen and (min-width: 750px) {
  .arrow-btn--international a:hover {
    color: #FFF;
    background: #B7709F;
    border-color: #B7709F;
  }
  .arrow-btn--international a:hover .arrow-btn_icon {
    border-color: #FFF;
  }
}
.arrow-btn--international .arrow-btn_icon {
  border-color: #B7709F;
}

.arrow-btn--information-design a {
  color: #3C5CA9;
  border-color: #DBDBEE;
}
@media screen and (min-width: 750px) {
  .arrow-btn--information-design a:hover {
    color: #FFF;
    background: #669BD1;
    border-color: #669BD1;
  }
  .arrow-btn--information-design a:hover .arrow-btn_icon {
    border-color: #FFF;
  }
}
.arrow-btn--information-design .arrow-btn_icon {
  border-color: #3C5CA9;
}

.arrow-btn--graduate a {
  color: #30B9FE;
  border-color: #ADE4FF;
}
@media screen and (min-width: 750px) {
  .arrow-btn--graduate a:hover {
    color: #FFF;
    background: #30B9FE;
    border-color: #30B9FE;
  }
  .arrow-btn--graduate a:hover .arrow-btn_icon {
    border-color: #FFF;
  }
}
.arrow-btn--graduate .arrow-btn_icon {
  border-color: #30B9FE;
}

.arrow-sbtn {
  max-width: 358px;
}
.arrow-sbtn a {
  padding: 6px 5px;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  text-align: center;
  color: #4269BF;
  display: block;
  background: #FFF;
  border: 1px solid #DBDBEE;
  border-radius: 30px;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.arrow-sbtn_icon {
  width: 7px;
  height: 7px;
  display: block;
  border-top: 1px solid #4269BF;
  border-right: 1px solid #4269BF;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

.arrow-sbtn--literature a {
  color: #FF5963;
  border-color: #FFB5BA;
}
@media screen and (min-width: 750px) {
  .arrow-sbtn--literature a:hover {
    color: #FFF;
    background: #FF5963;
    border-color: #FF5963;
  }
  .arrow-sbtn--literature a:hover .arrow-sbtn_icon {
    border-color: #FFF;
  }
}
.arrow-sbtn--literature .arrow-sbtn_icon {
  border-color: #FF5963;
}

.arrow-sbtn--human a {
  color: #0EB48E;
  border-color: #A6DDD0;
}
@media screen and (min-width: 750px) {
  .arrow-sbtn--human a:hover {
    color: #FFF;
    background: #0EB48E;
    border-color: #0EB48E;
  }
  .arrow-sbtn--human a:hover .arrow-sbtn_icon {
    border-color: #FFF;
  }
}
.arrow-sbtn--human .arrow-sbtn_icon {
  border-color: #0EB48E;
}

.arrow-sbtn--international a {
  color: #B7709F;
  border-color: #DDC5D5;
}
@media screen and (min-width: 750px) {
  .arrow-sbtn--international a:hover {
    color: #FFF;
    background: #B7709F;
    border-color: #B7709F;
  }
  .arrow-sbtn--international a:hover .arrow-sbtn_icon {
    border-color: #FFF;
  }
}
.arrow-sbtn--international .arrow-sbtn_icon {
  border-color: #B7709F;
}

.arrow-sbtn--information-design a {
  color: #3C5CA9;
  border-color: #DBDBEE;
}
@media screen and (min-width: 750px) {
  .arrow-sbtn--information-design a:hover {
    color: #FFF;
    background: #669BD1;
    border-color: #669BD1;
  }
  .arrow-sbtn--information-design a:hover .arrow-sbtn_icon {
    border-color: #FFF;
  }
}
.arrow-sbtn--information-design .arrow-sbtn_icon {
  border-color: #3C5CA9;
}

.link-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.link-list.link-list--literature .link-list_item a {
  border-color: #FFB5BA;
}
@media screen and (min-width: 750px) {
  .link-list.link-list--literature .link-list_item a:hover {
    color: #FFF;
    background: #FF5963;
    border-color: #FF5963;
  }
  .link-list.link-list--literature .link-list_item a:hover .link-list_icon {
    background: #FFF;
  }
  .link-list.link-list--literature .link-list_item a:hover .link-list_icon::before {
    border-color: #FF5963;
  }
}
.link-list.link-list--literature .link-list_item .link-list_icon {
  background: #FF5963;
}
.link-list.link-list--literature .link-list_item-w a {
  color: #FF5963;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-color: #FFB5BA;
}
@media screen and (min-width: 750px) {
  .link-list.link-list--literature .link-list_item-w a:hover {
    color: #FFF;
    background: #FF5963;
  }
  .link-list.link-list--literature .link-list_item-w a:hover .link-list_icon {
    background: #FFF;
  }
  .link-list.link-list--literature .link-list_item-w a:hover .link-list_icon::before {
    border-color: #FF5963;
  }
}
.link-list.link-list--literature .link-list_item-w .link-list_icon {
  background: #FFF;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.link-list.link-list--literature .link-list_item-w .link-list_icon::before {
  border-color: #FF5963;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.link-list.link-list--human .link-list_item a {
  border-color: #A6DDD0;
}
@media screen and (min-width: 750px) {
  .link-list.link-list--human .link-list_item a:hover {
    color: #FFF;
    background: #0EB48E;
    border-color: #0EB48E;
  }
  .link-list.link-list--human .link-list_item a:hover .link-list_icon {
    background: #FFF;
  }
  .link-list.link-list--human .link-list_item a:hover .link-list_icon::before {
    border-color: #0EB48E;
  }
}
.link-list.link-list--human .link-list_item .link-list_icon {
  background: #0EB48E;
}
.link-list.link-list--human .link-list_item-w a {
  color: #0EB48E;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-color: #A6DDD0;
}
@media screen and (min-width: 750px) {
  .link-list.link-list--human .link-list_item-w a:hover {
    color: #FFF;
    background: #0EB48E;
  }
  .link-list.link-list--human .link-list_item-w a:hover .link-list_icon {
    background: #FFF;
  }
  .link-list.link-list--human .link-list_item-w a:hover .link-list_icon::before {
    border-color: #0EB48E;
  }
}
.link-list.link-list--human .link-list_item-w .link-list_icon {
  background: #FFF;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.link-list.link-list--human .link-list_item-w .link-list_icon::before {
  border-color: #0EB48E;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.link-list.link-list--international .link-list_item a {
  border-color: #DDC5D5;
}
@media screen and (min-width: 750px) {
  .link-list.link-list--international .link-list_item a:hover {
    color: #FFF;
    background: #B7709F;
    border-color: #B7709F;
  }
  .link-list.link-list--international .link-list_item a:hover .link-list_icon {
    background: #FFF;
  }
  .link-list.link-list--international .link-list_item a:hover .link-list_icon::before {
    border-color: #B7709F;
  }
}
.link-list.link-list--international .link-list_item .link-list_icon {
  background: #B7709F;
}
.link-list.link-list--international .link-list_item-w a {
  color: #B7709F;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-color: #DDC5D5;
}
@media screen and (min-width: 750px) {
  .link-list.link-list--international .link-list_item-w a:hover {
    color: #FFF;
    background: #B7709F;
  }
  .link-list.link-list--international .link-list_item-w a:hover .link-list_icon {
    background: #FFF;
  }
  .link-list.link-list--international .link-list_item-w a:hover .link-list_icon::before {
    border-color: #B7709F;
  }
}
.link-list.link-list--international .link-list_item-w .link-list_icon {
  background: #FFF;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.link-list.link-list--international .link-list_item-w .link-list_icon::before {
  border-color: #B7709F;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.link-list.link-list--information-design .link-list_item a {
  border-color: #A6C4E2;
}
@media screen and (min-width: 750px) {
  .link-list.link-list--information-design .link-list_item a:hover {
    color: #FFF;
    background: #669BD1;
    border-color: #669BD1;
  }
  .link-list.link-list--information-design .link-list_item a:hover .link-list_icon {
    background: #FFF;
  }
  .link-list.link-list--information-design .link-list_item a:hover .link-list_icon::before {
    border-color: #669BD1;
  }
}
.link-list.link-list--information-design .link-list_item .link-list_icon {
  background: #669BD1;
}
.link-list.link-list--information-design .link-list_item-w a {
  border-color: #A6C4E2;
  color: #669BD1;
}
@media screen and (min-width: 750px) {
  .link-list.link-list--information-design .link-list_item-w a:hover {
    color: #FFF;
    background: #669BD1;
    border-color: #669BD1;
  }
  .link-list.link-list--information-design .link-list_item-w a:hover .link-list_icon {
    background: #FFF;
  }
  .link-list.link-list--information-design .link-list_item-w a:hover .link-list_icon::before {
    border-color: #669BD1;
  }
}
.link-list.link-list--information-design .link-list_item-w .link-list_icon {
  background: #FFF;
}
.link-list.link-list--information-design .link-list_item-w .link-list_icon::before {
  border-color: #669BD1;
}
.link-list.link-list--graduate .link-list_item a {
  border-color: #30B9FE;
}
@media screen and (min-width: 750px) {
  .link-list.link-list--graduate .link-list_item a:hover {
    color: #FFF;
    background: #30B9FE;
    border-color: #30B9FE;
  }
  .link-list.link-list--graduate .link-list_item a:hover .link-list_icon {
    background: #FFF;
  }
  .link-list.link-list--graduate .link-list_item a:hover .link-list_icon::before {
    border-color: #30B9FE;
  }
}
.link-list.link-list--graduate .link-list_item .link-list_icon {
  background: #30B9FE;
}
.link-list.link-list--graduate .link-list_item-w a {
  border-color: #ADE4FF;
  color: #30B9FE;
}
@media screen and (min-width: 750px) {
  .link-list.link-list--graduate .link-list_item-w a:hover {
    color: #FFF;
    background: #30B9FE;
    border-color: #30B9FE;
  }
  .link-list.link-list--graduate .link-list_item-w a:hover .link-list_icon {
    background: #FFF;
  }
  .link-list.link-list--graduate .link-list_item-w a:hover .link-list_icon::before {
    border-color: #30B9FE;
  }
}
.link-list.link-list--graduate .link-list_item-w .link-list_icon {
  background: #FFF;
}
.link-list.link-list--graduate .link-list_item-w .link-list_icon::before {
  border-color: #30B9FE;
}

.link-list_item a,
.link-list_item-w a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: 20px 32px 20px 20px;
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  line-height: 1.33;
  letter-spacing: 0.1em;
  text-align: center;
  background: #FFF;
  border-radius: 50px;
  border: 1px solid #DBDBEE;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 750px) {
  .link-list_item a:hover,
  .link-list_item-w a:hover {
    color: #FFF;
    background: #4269BF;
    border-color: #4269BF;
  }
  .link-list_item a:hover .link-list_icon,
  .link-list_item-w a:hover .link-list_icon {
    background: #FFF;
  }
  .link-list_item a:hover .link-list_icon::before,
  .link-list_item-w a:hover .link-list_icon::before {
    border-color: #4269BF;
  }
}

.link-list_item-w a {
  color: #4269BF;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 750px) {
  .link-list_item-w a:hover {
    color: #FFF;
    background: #4269BF;
    border-color: #4269BF;
  }
  .link-list_item-w a:hover .link-list_icon {
    background: #FFF;
  }
  .link-list_item-w a:hover .link-list_icon::before {
    border-color: #4269BF;
  }
}

.link-list_icon {
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #4269BF;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.link-list_icon::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 3px;
  display: block;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.row4 {
  gap: 30px 2.44%;
}
.row4 .link-list_item,
.row4 .link-list_item-w {
  width: 23.17%;
}

.row2 {
  gap: 30px 3.17%;
}
.row2 .link-list_item,
.row2 .link-list_item-w {
  width: 48.41%;
}

.row3 {
  gap: 30px 2.375%;
}
.row3 .link-list_item,
.row3 .link-list_item-w {
  width: 31.75%;
}

.page-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.page-link a {
  word-break: normal;
}

.page-link--row2 {
  gap: 30px 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page-link--row2 .page-link_item {
  width: 48%;
}
.page-link--row2 a {
  word-break: normal;
}

.page-link--row3 li:nth-child(-n+3) {
  border-top: 1px solid #D3D3D3;
}
.page-link--row3 .page-link_item a {
  border-bottom-color: #D3D3D3;
}
.page-link--row3 a {
  word-break: normal;
}
.page-link--row3::after {
  content: "";
  width: 30%;
  height: 0;
  display: block;
}
.page-link--row3 .page-link_item {
  width: 30%;
}
.page-link--row3 .page-link_item a {
  height: 100%;
  padding: 25px 30px 29px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
}
.page-link--row3 .page-link_item .link-list_icon {
  width: 16px;
  height: 16px;
}
.page-link--row3 .page-link_item .link-list_icon::before {
  width: 6px;
  height: 6px;
}

.page-link--literature .page-link_item a {
  border-color: #FF5963;
}
.page-link--literature .page-link_icon {
  background: #FF5963;
}

.page-link--human .page-link_item a {
  border-color: #0EB48E;
}
.page-link--human .page-link_icon {
  background: #0EB48E;
}

.page-link--graduate .page-link_item a {
  border-color: #30B9FE;
}
.page-link--graduate .page-link_icon {
  background: #30B9FE;
}

.page-link--international .page-link_item a {
  border-color: #B7709F;
}
.page-link--international .page-link_icon {
  background: #B7709F;
}

.page-link--information-design .page-link_item a {
  border-color: #669BD1;
}
.page-link--information-design .page-link_icon {
  background: #669BD1;
}

.page-link_item a {
  padding: 0 25px 10px 0;
  letter-spacing: 0.1em;
  line-height: 1.2;
  display: block;
  border-bottom: 1px solid #4269BF;
  position: relative;
}
.page-link_item .text-s {
  font-size: 12px;
}

.page-link_icon {
  width: 15px;
  height: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  background: #4269BF;
  position: absolute;
  bottom: 10px;
  right: 0;
}
.page-link_icon::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-bottom: 2px;
  display: block;
  border-bottom: 1px solid #FFF;
  border-right: 1px solid #FFF;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.text-link_item {
  position: relative;
  width: 100%;
}
.text-link_item a {
  display: block;
  border-bottom: 1px dashed #4269BF;
  line-height: 1.8;
  padding: 0 0 7px 30px;
  font-size: 15px;
}

.text-link_icon {
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #4269BF;
  border-radius: 50%;
  position: absolute;
  top: 25%;
  left: 0;
  -webkit-transform: translateY(-25%);
          transform: translateY(-25%);
  pointer-events: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.text-link_icon::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 3px;
  display: block;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.text-link--row2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 40px 0;
}
.text-link--row2 .text-link_item {
  width: 48%;
}

.text-link--row3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 40px 0;
}
.text-link--row3::after {
  content: "";
  width: 30%;
  height: 0;
  display: block;
}
.text-link--row3 .text-link_item {
  width: 30%;
}

.text-link--literature .text-link_item a {
  border-color: #FF5963;
}
.text-link--literature .text-link_icon {
  background: #FF5963;
}

.text-link--human .text-link_item a {
  border-color: #0EB48E;
}
.text-link--human .text-link_icon {
  background: #0EB48E;
}

strong {
  font-weight: 700;
}

/* -------------------pc END------------------------------- */
@media screen and (max-width: 1800px) {
  .contents-main {
    max-width: 1060px;
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
  }
  .contents-side {
    min-width: 0;
  }
}
@media screen and (max-width: 1200px) {
  .page-mv .inner {
    padding: 0px 5%;
  }
  .page-mv_img {
    margin: 0 auto 70px;
  }
  .page-mv_ttl {
    padding: 40px 0 35px;
    margin-right: 0;
  }
  .page-mv_ttl-department {
    font-size: 36px;
  }
}
@media screen and (max-width: 1000px) {
  .contents-row2 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .flex01.col2 > div {
    width: 100%;
    margin-top: 20px;
  }
  .flex01.col2 > div:first-child {
    margin-top: 0;
  }
  .flex01.col3 div {
    width: 100%;
    margin-top: 20px;
  }
  .flex01.col3 div:first-child {
    margin-top: 0;
  }
  .contents-side {
    max-width: 100%;
    width: calc(100% - 40px);
    min-width: 0;
    margin: 50px 20px 0;
    border-radius: 10px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .contents-side_ttl {
    padding: 20px 0;
    font-size: 18px;
  }
  .contents-side_btn {
    width: 100%;
    padding: 20px 0;
    font-size: 14px;
  }
  .contents-side_btn::after {
    width: 8px;
    height: 8px;
    top: 50%;
    right: 20px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .contents-side_btn.active::after {
    -webkit-transform: translateY(-50%) rotate(225deg);
            transform: translateY(-50%) rotate(225deg);
  }
  .contents-side_list {
    padding: 10px 0 20px;
    display: none;
  }
  .contents-side_sub-link {
    margin-top: 5px;
    padding-left: 13px;
    position: relative;
  }
  .contents-side_sub-link::before {
    content: "";
    width: 8px;
    height: 1px;
    display: block;
    background: #DDF0D9;
    position: absolute;
    top: 50%;
    left: 0;
  }
  .contents-side_sub-link a {
    font-size: 12px;
    letter-spacing: 0.1em;
    color: #FFF;
  }
  .contents-side_link:last-child a {
    border: none;
  }
  .contents-side_link a {
    padding: 20px 0;
    font-size: 14px;
    letter-spacing: 0.1em;
    color: #FFF;
    display: block;
    border-bottom: 1px dashed #FFF;
  }
}
/* -------------------------------------------------- */
/* tablet向け */
/* --------------------------------------------------- */
@media screen and (max-width: 900px) {
  .page-ttl01 {
    font-size: 30px;
  }
  .page-ttl01:before {
    bottom: -20px;
  }
  .link-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .link-list_item a,
  .link-list_item-w a {
    padding: 10px 5px;
    font-size: 14px;
    line-height: 1.33;
    border-radius: 50px;
    -webkit-transition: 0s;
    transition: 0s;
  }
  .link-list_icon {
    width: 20px;
    height: 20px;
    right: 10px;
  }
  .link-list_icon::before {
    content: "";
    width: 7px;
    height: 7px;
    margin-right: 3px;
    display: block;
    border-top: 1px solid #FFF;
    border-right: 1px solid #FFF;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .row4 {
    gap: 15px 0;
  }
  .row4 .link-list_item,
  .row4 .link-list_item-w {
    width: 100%;
  }
  .row3 {
    gap: 15px 0;
  }
  .row3 .link-list_item,
  .row3 .link-list_item-w {
    width: 100%;
  }
  .under-nav {
    margin: 90px 0 60px;
  }
}
/* ---------------------tablet END----------------------------- */
/* -------------------------------------------------- */
/* sp向け */
/* --------------------------------------------------- */
@media screen and (max-width: 750px) {
  #container {
    margin: 0;
    padding-top: 60px;
  }
  .page-mv #breadCrumb {
    display: none;
  }
  .page-mv .inner {
    max-width: 100%;
    margin: 0;
    padding: 0 20px;
  }
  .page-mv {
    background: url(../img/mv_bg_sp.png) no-repeat top right/82.88% auto;
  }
  .page-mv--position {
    background: none;
  }
  .page-mv--position .page-mv_ttl {
    padding-bottom: 0;
  }
  .page-mv_bg {
    width: 57%;
  }
  .page-mv_ttl {
    padding: 10px 0 9px;
    text-align: center;
  }
  .page-mv_ttl-small {
    font-size: 15px;
    line-height: 1.6;
  }
  .page-mv_ttl-department {
    margin-top: 5px;
    font-size: 28px;
    line-height: 1.44;
  }
  .page-mv_img {
    margin: 0 auto 34px;
  }
  .page-mv_img img {
    width: 100%;
  }
  .page-mv_img-small {
    width: 100%;
    margin: 0;
  }
  .note {
    font-size: 11px;
  }
  .contents-row2 {
    margin-top: 50px;
    padding-bottom: 50px;
    display: block;
  }
  .contents-main {
    max-width: 100%;
    width: 100%;
    padding: 0 20px;
  }
  .page-ttl01 {
    padding-top: 6px;
    font-family: "Noto Serif JP", serif;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    position: relative;
  }
  .page-ttl01::before {
    content: "";
    width: 40px;
    height: 2px;
    display: block;
    position: absolute;
    bottom: -15px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .page-ttl01_base {
    font-size: 20px;
    display: block;
  }
  .page-ttl01_small {
    font-size: 20px;
    line-height: 1;
    display: block;
  }
  .page-ttl02 {
    margin-bottom: 20px;
    text-align: center;
    position: relative;
  }
  .page-ttl02::before {
    content: "";
    width: 100%;
    height: 1px;
    display: block;
    border-bottom: 1px dashed #DDC5D5;
    position: absolute;
    top: 50%;
    left: 0;
  }
  .page-ttl02_base {
    padding: 0 10px;
    font-size: 20px;
  }
  .page-ttl03 {
    margin-bottom: 5px;
    padding-right: 0;
    font-size: 20px;
  }
  .page-ttl04 {
    margin-bottom: 15px;
    padding-left: 8px;
    font-size: 16px;
    line-height: 1.2;
    border-left: 2px solid #4269BF;
  }
  .page-ttl05 {
    font-size: 18px;
  }
  .page-ttl06 {
    margin-bottom: 5px;
    font-size: 15px;
  }
  .page-ttl07 {
    padding-bottom: 10px;
    font-size: 16px;
  }
  .page-ttl07::before {
    width: 25px;
  }
  .page-ttl07 .text-s {
    font-size: 16px;
  }
  .page-ttl08 {
    margin-bottom: 30px;
    font-size: 17px;
  }
  .page-ttl08::before {
    width: 20px;
    height: 2px;
    bottom: -3px;
  }
  .page-ttl09 {
    margin-bottom: 60px;
    position: relative;
  }
  .page-ttl09::before {
    content: "";
    width: 100%;
    height: 1px;
    display: block;
    border-bottom: 1px dashed #DDC5D5;
    position: absolute;
    top: 50%;
    left: 0;
  }
  .page-ttl10 {
    margin-bottom: 40px;
    line-height: 1.31;
  }
  .page-ttl10_base {
    font-size: 24px;
  }
  .page-ttl10_sub {
    width: 60px;
    line-height: 1;
    top: 25px;
  }
  .page-ttl11 {
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.31;
    position: relative;
  }
  .page-ttl11::before {
    content: "";
    width: 100%;
    height: 1px;
    display: block;
    border-bottom: 1px dashed #DDC5D5;
    position: absolute;
    top: 50%;
    left: 0;
  }
  .page-ttl11--international::before {
    border-color: #DDC5D5;
  }
  .page-ttl11_base {
    padding: 0 15px;
    font-size: 20px;
  }
  .page-ttl12 {
    margin-bottom: 15px;
    padding: 5px 10px;
  }
  .page-ttl12_base {
    padding: 0 10px;
    font-size: 18px;
    display: block;
  }
  .btn {
    width: 245px;
  }
  .btn.btn--international a {
    color: #B7709F;
    border-color: #DDC5D5;
  }
  .btn a {
    padding: 18px 5px;
    border-radius: 32px;
    -webkit-transition: 0s;
    transition: 0s;
  }
  .link-list_item .link-list_item--small {
    margin-top: 2px;
    font-size: 12px;
  }
  .arrow-btn {
    max-width: 350px;
  }
  .arrow-btn a {
    padding: 13px 23px 13px 5px;
    border-radius: 30px;
    -webkit-transition: 0s;
    transition: 0s;
  }
  .arrow-btn_icon {
    width: 7px;
    height: 7px;
    display: block;
    border-top: 1px solid #4269BF;
    border-right: 1px solid #4269BF;
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
  }
  .arrow-sbtn {
    max-width: 350px;
  }
  .arrow-sbtn a {
    padding: 13px 5px;
    border-radius: 30px;
    -webkit-transition: 0s;
    transition: 0s;
  }
  .arrow-sbtn_icon {
    width: 7px;
    height: 7px;
    right: 20px;
  }
  .link-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .link-list_item a,
  .link-list_item-w a {
    padding: 15px 30px 15px 15px;
    font-size: 14px;
    line-height: 1.33;
    border-radius: 50px;
    -webkit-transition: 0s;
    transition: 0s;
  }
  .link-list_icon {
    width: 20px;
    height: 20px;
    right: 10px;
  }
  .link-list_icon::before {
    content: "";
    width: 7px;
    height: 7px;
    margin-right: 3px;
    display: block;
    border-top: 1px solid #FFF;
    border-right: 1px solid #FFF;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .row4 {
    gap: 15px 0;
  }
  .row4 .link-list_item,
  .row4 .link-list_item-w {
    width: 100%;
  }
  .row2 {
    gap: 15px 0;
  }
  .row2 .link-list_item,
  .row2 .link-list_item-w {
    width: 100%;
  }
  .row3 {
    gap: 15px 0;
  }
  .row3 .link-list_item,
  .row3 .link-list_item-w {
    width: 100%;
  }
  .under-nav {
    margin: 70px 0 30px;
  }
  .under-nav_ttl {
    margin: 20px 0;
    font-size: 16px;
  }
  .page-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .page-link--row2 {
    gap: 15px 0;
  }
  .page-link--row2 .page-link_item {
    width: 100%;
  }
  .page-link--row3 li:nth-child(-n+3) {
    border-top: none;
  }
  .page-link--row3 li:first-child {
    border-top: 1px solid #D3D3D3;
  }
  .page-link--row3::after {
    display: none;
  }
  .page-link--row3 .page-link_item {
    width: 100%;
  }
  .page-link--row3 .page-link_item a {
    padding: 15px 27px 14px 0;
  }
  .page-link_item a {
    padding: 0 25px 10px 0;
    letter-spacing: 0.1em;
    line-height: 1.2;
    display: block;
    border-bottom: 1px solid #4269BF;
    position: relative;
  }
  .page-link_icon {
    width: 15px;
    height: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 50%;
    background: #4269BF;
    position: absolute;
    bottom: 10px;
    right: 0;
  }
  .page-link_icon::before {
    content: "";
    width: 6px;
    height: 6px;
    margin-bottom: 2px;
    display: block;
    border-bottom: 1px solid #FFF;
    border-right: 1px solid #FFF;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .text-link_item a {
    padding: 0 0 5px 25px;
    font-size: 13px;
  }
  .text-link_icon {
    width: 15px;
    height: 15px;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .text-link_icon::before {
    content: "";
    width: 6px;
    height: 6px;
  }
  .text-link--row2 {
    gap: 20px 0;
  }
  .text-link--row2 .text-link_item {
    width: 100%;
  }
  .text-link--row3 {
    gap: 20px 0;
  }
  .text-link--row3::after {
    content: "";
    width: 100%;
    height: 0;
    display: block;
  }
  .text-link--row3 .text-link_item {
    width: 100%;
  }
}
/* -------------------sp END------------------------------- */