@charset "UTF-8";

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  background-repeat: no-repeat;
}

*::before,
*::after {
  vertical-align: inherit;
  text-decoration: inherit;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

summary {
  display: list-item;
}

[hidden],
template {
  display: none;
}

abbr[title] {
  text-decoration: none;
  border-bottom: 1px dotted;
}

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

a:active,
a:hover {
  outline-width: 0;
}

b,
strong {
  font-weight: bolder;
}

mark {
  color: #000;
  background-color: #ff0;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

input,
button,
select,
textarea {
  font: inherit;
  color: inherit;
  background-color: transparent;
  border: none;
  outline: none;
}

button,
[type=button],
[type=reset],
[type=submit],
[role=button] {
  cursor: pointer;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
}

[disabled] {
  cursor: default;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  resize: vertical;
}

/* img border reset */
img {
  border-style: none;
  display: block;
  max-width: 100%;
  height: auto;
}

/* svg overflow fix - optional */
svg:not(:root) {
  overflow: hidden;
}

/* ::selection - optional */
::-moz-selection {
  background-color: #b3d4fc;
  color: #000;
  text-shadow: none;
}

::selection {
  background-color: #b3d4fc;
  color: #000;
  text-shadow: none;
}

::-moz-selection {
  background-color: #b3d4fc;
  color: #000;
  text-shadow: none;
}

/* # =================================================================
#	リンク
# ================================================================= */
.c-page-header {
  background: -webkit-gradient(linear, left top, right top, from(#82A5A5), to(#4D6262));
  background: -webkit-linear-gradient(left, #82A5A5 0%, #4D6262 100%);
  background: linear-gradient(90deg, #82A5A5 0%, #4D6262 100%);
}

/* # =================================================================
#	ベース
# ================================================================= */
:root {
  --vh: 100vh;
  --sp_mv_vh: 100vh;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #333;
  letter-spacing: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-weight: 400;
  background: #E2F0FF url(../img/common/bg_01.png) repeat;
}

body * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a,
button {
  color: #333;
  text-decoration: none;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

button:hover {
  opacity: 0.5;
}

@media screen and (max-width: 767px) {
  button:hover {
    opacity: unset;
  }
}

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

ul li,
ol li {
  list-style-type: none;
}

table {
  border-collapse: collapse;
}

/* # =================================================================
#	レイアウト PC/SP
# ================================================================= */
body {
  min-width: 1000px;
}

@media screen and (max-width: 767px) {
  body {
    min-width: auto;
  }
}

.for-sp {
  display: none !important;
}

.for-pc {
  display: inline-block !important;
}

/* ベースのカラム設定 */
.c-column {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 1320px;
  margin: 0 auto;
  min-width: 1000px;
  padding: 0 25px;
}

.c-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

/* スマホ用カラム設定 */
.c-column-s {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  padding: 0 15px;
}

/* メディアクエリ（タブレットサイズ） */
@media screen and (max-width: 767px) {
  .c-column {
    padding: 0 15px;
    min-width: auto;
  }

  .c-wrapper {
    min-width: auto;
  }

  .c-column-s {
    padding: 0 15px;
  }
}

/* モバイル用の設定 */
@media screen and (max-width: 360px) {
  .for-sp {
    display: block !important;
    /* スマホ用に表示 */
  }

  .for-pc {
    display: none !important;
    /* PC用非表示 */
  }

  .c-column,
  .c-column-s {
    max-width: 100%;
    /* モバイルサイズに合わせる */
    padding: 0 10px;
    /* モバイルのパディング調整 */
  }
}

/* # =================================================================
#	ヘッダー
# ================================================================= */
/* トップページだけ変える */
.is-home .c-header__nav a {
  color: #fff;
}

.is-home .c-header__menubtn {
  background: rgba(255, 255, 255, 0.5);
}

.c-header {
  position: fixed;
  width: 100%;
  z-index: 1001;
  background: transparent;
  -webkit-transition: background 0.3s ease, color 0.3s ease;
  transition: background 0.3s ease, color 0.3s ease;
  padding: 0 40px;
}

@media screen and (max-width: 767px) {
  .c-header {
    min-width: auto;
    padding: 0 15px;
  }
}

.c-header.is-scrolled {
  background: #b4daff;
}

.c-header__inner {
  height: 110px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .c-header__inner {
    height: 55px;
  }
}

@media screen and (max-width: 767px) {
  .c-header__logo {
    width: 80%;
  }
}

.c-header__nav {
  margin: 0 auto;
}

.c-header__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: 'Poppins';
}

/* テキストがかぶったりしてしまうため1050px以下に設定 */
@media screen and (max-width: 1050px) {
  .c-header__list {
    display: none;
  }
}

.c-header__item {
  margin-left: 25px;
}

.c-header__item:first-of-type {
  margin-left: 0;
}

.c-header__item a {
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 1px;
  position: relative;
  -webkit-transition: border-bottom 0.3s ease;
  transition: border-bottom 0.3s ease;
  color: #0041A7;
}

.c-header__item .a__text-en {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  display: inline-block;
}

.c-header__item a:hover .c-header__text-en {
  border-bottom: 1px solid #fff;
  opacity: 0.6;
  color: #fff;
}

.c-header__item a::after {
  content: attr(data-text);
  position: absolute;
  bottom: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  pointer-events: none;
  font-size: 18px;
}

.c-header__item a:hover::after {
  opacity: 1;
}

.c-header__menubtn {
  background: white;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 1000;
}

.c-header__menubtn.is-active .c-header__menuicon {
  background: transparent;
}

.c-header__menubtn.is-active .c-header__menuicon::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 0;
}

.c-header__menubtn.is-active .c-header__menuicon::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 0;
}

@media screen and (max-width: 767px) {
  .c-header__menubtn {
    width: 52px;
    height: 52px;
  }
}

.c-header__menuicon {
  width: 37px;
  height: 5px;
  background: #0041A7;
  position: relative;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  border-radius: 10px;
}

@media screen and (max-width: 767px) {
  .c-header__menuicon {
    width: 25px;
    height: 3px;
  }
}

.c-header__menuicon::before,
.c-header__menuicon::after {
  content: "";
  position: absolute;
  width: 37px;
  height: 5px;
  background: #0041A7;
  left: 0;
  -webkit-transition: top 0.3s ease, -webkit-transform 0.3s ease;
  transition: top 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, top 0.3s ease;
  transition: transform 0.3s ease, top 0.3s ease, -webkit-transform 0.3s ease;
  border-radius: 10px;
}

@media screen and (max-width: 767px) {

  .c-header__menuicon::before,
  .c-header__menuicon::after {
    width: 25px;
    height: 3px;
  }
}

.c-header__menuicon::before {
  top: -11px;
}

@media screen and (max-width: 767px) {
  .c-header__menuicon::before {
    top: -6px;
  }
}

.c-header__menuicon::after {
  top: 11px;
}

@media screen and (max-width: 767px) {
  .c-header__menuicon::after {
    top: 6px;
  }
}

.c-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 40%;
  min-width: 420px;
  height: 100vh;
  background: #fff;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  z-index: 999;
  padding-left: 50px;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  overflow: auto;
}

@media screen and (max-width: 767px) {
  .c-drawer {
    width: 100%;
    min-width: unset;
    padding: 0 15px;
  }
}

.c-drawer.is-open {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.c-drawer__inner {
  max-width: 600px;
  margin: 0 auto;
  margin-top: 130px;
  font-family: 'Poppins'
}

@media screen and (max-width: 767px) {
  .c-drawer__inner {
    margin-top: 35px;
  }
}

.c-drawer__menu {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.c-drawer__menu li {
  margin-bottom: 5px;
}

@media screen and (max-width: 767px) {
  .c-drawer__menu li {
    margin-bottom: 20px;
  }
}

.c-drawer__menu li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-weight: 700;
  font-size: 18px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 15%;
}

@media screen and (max-width: 767px) {
  .c-drawer__menu li a {
    gap: 0 35px;
    font-size: 16px;
  }
}

.c-drawer__menu li a .en {
  font-size: 32px;
  min-width: 165px;
}

@media screen and (max-width: 767px) {
  .c-drawer__menu li a .en {
    font-size: 25px;
    width: 130px;
  }
}

.c-drawer__menu li a .ja {
  font-size: 16px;
}

.c-drawer__topic {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 25px 0;
}

.c-drawer__topic h2 {
  color: #0041A7;
  font-weight: 700;
  font-size: 32px;
  font-family: Poppins;
  margin-bottom: 5px;
}

.c-drawer__topic p {
  color: #333;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .c-drawer__topic {
    padding: 25px 0;
  }

  .c-drawer__topic h2 {
    font-size: 25px;
  }

  .c-drawer__topic p {
    font-size: 14px;
  }
}

.c-drawer__footer-links {
  list-style: none;
  padding: 25px 0;
  font-weight: 700;
}

.c-drawer__footer-links li {
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .c-drawer__footer-links li {
    margin-bottom: 5px;
    font-size: 14px;
  }
}

.is-active {
  border: 1px solid #333;
}

/* # =================================================================
#	見出し
# ================================================================= */
.c-head01 {
  font-size: 28px;
  color: #0041a7;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 115px 0 56px;
  background: url(../img/common/bg_head_01.jpg) center/100% 100% no-repeat;
}

.c-head01 span {
  font-size: 82px;
  font-family: Poppins;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .c-head01 {
    font-size: 16px;
    padding: 50px 0 35px;
  }

  .c-head01 span {
    font-size: 40px;
  }
}

.c-head02 {
  font-size: 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.c-head02 span {
  font-size: 75px;
  font-family: Poppins;
  color: #0041a7;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .c-head02 {
    font-size: 18px;
  }

  .c-head02 span {
    font-size: 35px;
  }
}

.c-head03 {
  font-size: 32px;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .c-head03 {
    font-size: 20px;
  }
}

.c-head04 {
  font-size: 32px;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .c-head04 {
    font-size: 20px;
  }
}

/* # =================================================================
#	下層ページネーション
# ================================================================= */
.c-pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 160px;
  gap: 0 20px;
}

@media screen and (max-width: 767px) {
  .c-pagination {
    margin-top: 50px;
    gap: 0 15px;
  }
}

.c-pagination__item {
  width: 60px;
  height: 60px;
  border: 1px solid #0044ad;
  border-radius: 50%;
  background-color: white;
  color: #0044ad;
  font-weight: 700;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 18px;
}

@media screen and (max-width: 767px) {
  .c-pagination__item {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }
}

.c-pagination__item:hover {
  background-color: #0044ad;
  color: white;
}

.c-pagination__item.is-active {
  background-color: #0044ad;
  color: white;
  pointer-events: none;
}

/* # =================================================================
#	フッター
# ================================================================= */
footer {
  background: #fff;
  margin-top: 157px;
}

@media screen and (max-width: 767px) {
  footer {
    margin-top: 80px;
    padding: 0 15px;
  }
}

.c-copy {
  text-align: center;
  padding-bottom: 25px;
}

.f-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 145px;
}

.f-wrapper img {
  height: 66px;
}

@media screen and (max-width: 767px) {
  .f-wrapper {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: unset;
    -webkit-justify-content: unset;
    -ms-flex-pack: unset;
    justify-content: unset;
    padding-top: 70px;
    flex-direction: column;
  }

  .f-wrapper img {
    height: 30px;
    margin-right: 45px;
  }
}

.f-wrapper__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 20px;
  font-weight: 700;
  gap: 0 130px;
  margin-left: 100px;
  position: relative;
  font-family: 'Poppins';
}

@media screen and (max-width: 767px) {
  .f-wrapper__box {
    margin-left: unset;
    font-size: 16px;
    gap: 0;
    margin-top: 30px;
    flex-direction: column;
  }

  .f-wrapper__box ul {
    width: 100%;
  }
}

.f-wrapper__item {
  margin-top: 40px;
}

.f-wrapper__item:first-child {
  margin: unset;
}

@media screen and (max-width: 767px) {
  .f-wrapper__item {
    margin-top: 30px;
  }

  .f-wrapper__item:last-child {
    margin-bottom: 30px;
  }
}

.f-wrapper__btn {
  margin-top: 46px;
}

@media screen and (max-width: 767px) {
  .f-wrapper__btn {
    margin-top: 15px;
  }
}

.f-rules {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0 42px;
  margin-top: 83px;
  padding: 38px 0;
  border-top: 1px solid #9E9E9E;
}

@media screen and (max-width: 767px) {
  .f-rules {
    gap: 0;
    margin-top: 35px;
    padding: 25px 0;
    font-size: 14px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .f-rules li {
    margin-bottom: 12px;
  }

  .f-rules li:last-child {
    margin-bottom: unset;
  }
}

.f-wrapper__item a {
  position: relative;
  transition: opacity 0.3s ease;
}

.f-wrapper__item a span:hover {
  opacity: 0.5;
  border-bottom: 1px solid #000;
}

.f-wrapper__item a::after {
  content: attr(data-text);
  position: absolute;
  bottom: -30px;
  left: 0;
  font-size: 16px;
  white-space: nowrap;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  pointer-events: none;
  display: block;
}

.f-wrapper__item a:hover::after {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .f-wrapper__item a span:hover {
    opacity: 1;
    border-bottom: unset;
  }

  .f-wrapper__item a:hover::after {
    display: none;
  }
}

/* # =================================================================
#	ボタン
# ================================================================= */
.c-btn01 {
  width: 255px;
  height: 65px;
  background: #0041A7;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  position: relative;
  padding: 0 25px;
  border-radius: 33px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.c-btn01::after {
  content: "";
  display: inline-block;
  background: url(../img/common/icon_common_01.png) center/cover no-repeat;
  width: 25px;
  height: 25px;
  position: absolute;
  right: 25px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.c-btn01:hover::after {
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
}

@media screen and (max-width: 767px) {
  .c-btn01 {
    max-width: 174px;
    font-size: 14px;
    height: 40px;
    padding: 0 20px;
  }

  .c-btn01::after {
    width: 17.5px;
    height: 17.5px;
  }
}

.c-btn02 {
  width: 285px;
  height: 60px;
  background: #fff;
  font-size: 18px;
  font-weight: 700;
  position: relative;
  padding: 0 25px;
  border-radius: 30px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.c-btn02::after {
  content: "";
  display: inline-block;
  background: url(../img/common/icon_common_02.png) center/cover no-repeat;
  width: 25px;
  height: 25px;
  position: absolute;
  right: 25px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.c-btn02:hover::after {
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
}

@media screen and (max-width: 767px) {
  .c-btn02 {
    max-width: 174px;
    font-size: 14px;
    height: 40px;
    padding: 0 25px;
  }

  .c-btn02::after {
    width: 15px;
    height: 15px;
  }
}

.c-btn03 {
  width: 325px;
  height: 65px;
  background: #ea8f34;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  position: relative;
  padding: 0 35px;
  border-radius: 38.5px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.c-btn03::after {
  content: "";
  display: inline-block;
  background: url(../img/common/icon_common_01.png) center/cover no-repeat;
  width: 25px;
  height: 25px;
  position: absolute;
  right: 25px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.c-btn03:hover::after {
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
}

@media screen and (max-width: 767px) {
  .c-btn03 {
    max-width: 256px;
    font-size: 14px;
    height: 41px;
    padding: 11.5px 25px;
  }

  .c-btn03::after {
    width: 17.5px;
    height: 17.5px;
    right: 25px;
  }
}

.c-btn04 {
  width: 210px;
  height: 45px;
  font-weight: 700;
  padding: 0 25px;
  border-radius: 30px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #333;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: absolute;
  right: 0px;
  top: -70px;
  font-family: 'Poppins';
}

.c-btn04::after {
  content: "";
  display: inline-block;
  background: url(../img/common/icon_common_03.png) center/cover no-repeat;
  width: 25px;
  height: 25px;
  position: absolute;
  right: 25px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.c-btn04:hover::after {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

@media screen and (max-width: 767px) {
  .c-btn04 {
    max-width: 150px;
    font-size: 14px;
    height: 35px;
    padding: 0 10px;
    top: -60px;
    right: 0px;
  }

  .c-btn04::after {
    width: 15px;
    height: 15px;
  }
}

/* # =================================================================
#	改行
# ================================================================= */
.c-brpc {
  display: block;
}

@media screen and (max-width: 767px) {
  .c-brpc {
    display: none;
  }
}

.c-brsp {
  display: none;
}

@media screen and (max-width: 767px) {
  .c-brsp {
    display: block;
  }
}

/* # =================================================================
#	画像変更
# ================================================================= */
.pc-img {
  display: block;
}

@media screen and (max-width: 767px) {
  .pc-img {
    display: none;
  }
}

.sp-img {
  display: none;
}

@media screen and (max-width: 767px) {
  .sp-img {
    display: block;
  }
}

/* # =================================================================
# ボックス（プライバシー的な奴）
# ================================================================= */
.c-box01 {
  background: #fff;
  border-radius: 30px;
  padding: 120px 100px 140px;
  -webkit-box-shadow: 4px 4px 16px rgba(131, 157, 197, 0.8980392157);
  box-shadow: 4px 4px 16px rgba(131, 157, 197, 0.8980392157);
  margin: 15px 10px;
}

.c-box01__label {
  margin-top: 60px;
}

.c-box01 h4 {
  margin-top: 24px;
}

.c-box01 h4 span {
  padding-left: 1em;
}

@media screen and (max-width: 767px) {
  .c-box01 {
    padding: 60px 15px 70px;
    margin: 20px 0;
  }

  .c-box01__label {
    margin-top: 25px;
  }
}

.c-privacy {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
  margin-right: 10px;
}

.c-privacy span {
  padding-left: 1em;
}

.c-privacy>div {
  margin-right: 25px;
}

.c-privacy img {
  height: 92px;
  position: relative;
  top: 32px;
}

@media screen and (max-width: 767px) {
  .c-privacy {
    margin-bottom: 0;
    margin-right: 0;
    margin-top: 20px;
  }

  .c-privacy>div {
    margin-right: 0;
  }
}

/* # =================================================================
#	アスタリスク
# ================================================================= */
.c-asterisk {
  position: relative;
  padding-left: 1em;
}

.c-asterisk::before {
  display: inline-block;
  content: "※";
  position: absolute;
  left: 0;
}

/* # =================================================================
#	ぱんくず
# ================================================================= */
.c-brd {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 35px 0;
  font-size: 18px;
  font-weight: 700;
  padding-left: 30px;
}

.c-brd li+li::before {
  content: "＞";
  display: inline-block;
  color: #0041A7;
  margin: 0 18px;
}

.c-brd li a {
  display: inline-block;
  text-decoration: underline;
  color: #0041A7;
  text-decoration: none;
}

.c-brd li:last-child a {
  pointer-events: none;
  text-decoration: none;
  color: #0041A7;
}

@media screen and (max-width: 767px) {
  .c-brd {
    font-size: 1.4rem;
    padding-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .c-main {
    margin-top: 119px;
  }
}

/* # =================================================================
#	スライドイン
# ================================================================= */
.slidein {
  -webkit-transition: 1s cubic-bezier(0.75, 0, 0.25, 1);
  transition: 1s cubic-bezier(0.75, 0, 0.25, 1);
}

.slide_left {
  -webkit-transform: translateX(calc(-50vw - 50%));
  transform: translateX(calc(-50vw - 50%));
}

.slide_right {
  -webkit-transform: translateX(calc(50vw + 50%));
  transform: translateX(calc(50vw + 50%));
}

.show {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.fadein-start {
  opacity: 0;
  -webkit-transition: opacity 1.5s ease;
  transition: opacity 1.5s ease;
}

.fadein-end {
  opacity: 1;
}

/* # =================================================================
#	ボタン矢印
# ================================================================= */
.c-arrow {
  position: absolute;
  left: 95px;
  bottom: 15px;
}

@media screen and (max-width: 767px) {
  .c-arrow {
    bottom: 20px;
    right: 20px;
    left: unset;
    width: 8%;
  }
}

.icon-pc {
  display: block !important;
}

@media screen and (max-width: 767px) {
  .icon-pc {
    display: none !important;
  }
}

.icon-sp {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .icon-sp {
    display: block !important;
    width: 55px;
    height: 65px;
  }
}

/* # =================================================================
#	カテゴリーデザイン
# ================================================================= */
.mark {
  color: #fff;
  width: 150px;
  text-align: center;
  border-radius: 45px;
  font-weight: 700;
  font-size: 16px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .mark {
    font-size: 11px;
    height: 18px;
    width: 100px;
  }
}

.release {
  background: #0041A7;
}

.notice {
  background: #EA8F34;
}

.import {
  background: #CA4B4D;
}

.c-link-pdf {
  margin-top: 50px;
  display: inline-block;
  font-weight: 600;
  color: #0041A7;
  border-bottom: 1px solid;}

.c-link-pdf:hover {
  opacity: 0.5;
}

@media screen and (max-width: 767px) {
  .c-link-pdf {
    margin-top: 30px;
  }

  .c-link-pdf:hover {
    opacity: 1;
  }
}