@charset "UTF-8";

/* リセットCSSの読み込み */
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

html {
  overflow-y: scroll;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

fieldset,
img {
  border: 0;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

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

caption,
th {
  text-align: left;
}

a {
  text-decoration: none;
  color: #000;
}

a:focus {
  outline: none;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: normal;
}

* {
  box-sizing: border-box;
}

input,
textarea,
select {
  /*
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  */
  border: 0;
}

:root {
  --white: #fff;
  --black: #000;
  --table_stripe: #efefef;
  --table_hover: #c5c5c5;
  --border_color: #dee2e6;
  --primary: #0d6efd;
  --secondary: #6c757d;
  --success: #198754;
  --danger: #dc3545;
  --warning: #ffc107;
  --info: #0dcaf0;
  --light: #f8f9fa;
  --dark: #212529;
  --info: #0d6efd;
  --site_color1: #e1642f;
  --site_color2: #e60012;
  --site_color3: #f29c9f;
  --site_color4: #d4bba9;
  --site_color5: #f5f5f5;
  --site_color6: #f5f5f5;
}

body {
  overflow: hidden;
  line-height: 1.5;
  word-break: break-word;
  line-break: strict;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  color: var(--site_letter_base);
  font-size: 1.6rem;
  position: relative;
}

@media (min-width: 1367px) {
  body {
    font-size: 16px;
  }
}

@media (max-width: 1024px) {
  body {
    font-size: 1.4545454545rem;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 1.3333333333rem;
  }
}

/* ===============================================
改行用
=============================================== */
.on1366,
.on1024,
.on768,
.on480,
.on375 {
  display: none;
}

@media (min-width: 1367px) {
  .off1366 {
    display: none;
  }

  .on1366 {
    display: block;
  }
}

@media (max-width: 1024px) {
  .off1024 {
    display: none;
  }

  .on1024 {
    display: block;
  }
}

@media (max-width: 768px) {
  .off768 {
    display: none;
  }

  .on768 {
    display: block;
  }
}

@media (max-width: 480px) {
  .off480 {
    display: none;
  }

  .on480 {
    display: block;
  }
}

/* -----------------------------------------------
文字位置
----------------------------------------------- */
.tc {
  text-align: center;
}

.tr {
  text-align: right;
}

.tl {
  text-align: left;
}

.tj {
  text-align: justify;
}

/* -----------------------------------------------
文字太さ
----------------------------------------------- */
.fb {
  font-weight: 700;
}

.fsb {
  font-weight: 600;
}

.fm {
  font-weight: 500;
}

.fr {
  font-weight: 400;
}

.fl {
  font-weight: 300;
}

/* -----------------------------------------------
line-hight
----------------------------------------------- */
.lh1 {
  line-height: 1;
}

.lh1\.25 {
  line-height: 1.25;
}

.lh1\.5 {
  line-height: 1.5;
}

.lh1\.75 {
  line-height: 1.75;
}

.lh2 {
  line-height: 2;
}

/* -----------------------------------------------
縦書き
----------------------------------------------- */
.ver {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
}

.ver.ver_part {
  text-orientation: sideways;
}

/* -----------------------------------------------
要素の位置指定
----------------------------------------------- */
.mc {
  margin: auto;
}

.mxc {
  margin-left: auto;
  margin-right: auto;
}

.myc {
  margin-top: auto;
  margin-bottom: auto;
}

.mr {
  margin-left: auto;
  margin-right: 0;
}

.ml {
  margin-left: 0;
  margin-right: auto;
}

/* -----------------------------------------------
アニメーション
----------------------------------------------- */
.opa {
  transition: 0.3s !important;
  cursor: pointer;
}

.opa:hover {
  opacity: 0.6 !important;
}

.u_line {
  transition: 0.3s;
  border-bottom: 1px solid transparent;
}

.u_line:hover {
  border-bottom: 1px solid;
}

/* -----------------------------------------------
その他
----------------------------------------------- */
.short {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* -----------------------------------------------
ボーダー
----------------------------------------------- */
.bc1 {
  border-color: var(--site_color1);
}

.bc2 {
  border-color: var(--site_color2);
}

.bc3 {
  border-color: var(--site_color3);
}

.bc4 {
  border-color: var(--primary);
}

.bc5 {
  border-color: var(--secondary);
}

.bc6 {
  border-color: var(--success);
}

.bc7 {
  border-color: var(--danger);
}

.bc8 {
  border-color: var(--warning);
}

.bc9 {
  border-color: var(--light);
}

.bc10 {
  border-color: var(--dark);
}

.b1 {
  border: 1px solid;
}

.b1t {
  border-top: 1px solid;
}

.b1r {
  border-right: 1px solid;
}

.b1b {
  border-bottom: 1px solid;
}

.b1l {
  border-left: 1px solid;
}

.b2 {
  border: 2px solid;
}

.b2t {
  border-top: 2px solid;
}

.b2r {
  border-right: 2px solid;
}

.b2b {
  border-bottom: 2px solid;
}

.b2l {
  border-left: 2px solid;
}

.b3 {
  border: 3px solid;
}

.b3t {
  border-top: 3px solid;
}

.b3r {
  border-right: 3px solid;
}

.b3b {
  border-bottom: 3px solid;
}

.b3l {
  border-left: 3px solid;
}

.btn {
  transition: 0.2s;
}

.btn:hover {
  opacity: 0.7;
}

.btn_primary {
  display: block;
  width: 150px;
  border: 1px solid var(--primary);
  text-align: center;
  padding: 10px 0;
  border-radius: 10px;
  margin: auto;
  background: var(--primary);
  color: var(--white);
}

.under_common_section {
  max-width: 1100px;
  width: 98%;
  margin-left: auto;
  margin-right: auto;
  padding: 7% 0 5%;
}

.under_common_section .title_en {
  margin-top: 10px;
}

.paging {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5%;
}

.paging .page-numbers {
  display: block;
  line-height: 1;
  padding: 5px 5px;
  margin: 0 5px;
  border: 1px solid var(--site_color1);
  color: var(--site_color1);
  border-radius: 3px;
  transition: 0.2s;
  cursor: pointer;
}

.paging .page-numbers:hover,
.paging .page-numbers.current {
  background-color: var(--site_color1);
  color: var(--white);
}

.paging .page-numbers.dots {
  border: 0;
  cursor: auto;
  pointer-events: none;
}

/* font */
body {
  font-family: "noto-sans-cjk-jp", sans-serif;
}

.arial {
  font-family: "Arial", sans-serif;
}

/* 共通 */
.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.pc-none {
  display: none;
}

@media (max-width: 1024px) {
  .pc-none {
    display: block;
  }
}

.sp-none {
  display: block;
}

@media (max-width: 1024px) {
  .sp-none {
    display: none;
  }
}

.l-con {
  width: 90%;
  margin: 0 auto;
  max-width: 1160px;
}

.text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}

.pagetitle_container {
  background-image: url(../regi/img/reason/title-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0 70px;
  margin-top: 120px;
}

@media (max-width: 1024px) {
  .pagetitle_container {
    padding: 50px 0;
    margin-top: 82px;
  }
}

a {
  transition: 0.3s;
}

a:hover {
  opacity: 0.6;
}

img {
  width: 100%;
  max-width: 100%;
  vertical-align: baseline;
}

/* page-title */
.pagetitle_container .pagetitle_item {
  font-size: 38px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}

@media (max-width: 1024px) {
  .pagetitle_container .pagetitle_item {
    font-size: 30px;
  }
}

.pagetitle_container .pagetitle_item img {
  width: 161px;
}

@media (max-width: 1024px) {
  .pagetitle_container .pagetitle_item img {
    width: 130px;
  }
}

/* breadcrumbs */
.alignwide {
  background-color: #FFE3D9;
  padding: 15px 0 15px 13%;
}

@media (max-width: 1024px) {
  .alignwide {
    padding: 2% 0 2% 5%;
  }
}

.alignwide .breadcrumbs li {
  color: #222;
  font-size: 12px;
  font-weight: 500;
}

.alignwide .breadcrumbs li:first-of-type a {
  border-bottom: 1px solid #222;
}

/* hamburger */
.header_button {
  width: 42px;
  height: 42px;
}

@media (min-width: 1025px) {
  .header_button {
    display: none;
  }
}

.header_button button {
  position: relative;
  width: inherit;
  height: inherit;
  margin: 0;
  border: unset;
  background: unset;
  cursor: pointer;
}

.header_button button span {
  display: block;
  position: relative;
  left: 50%;
  width: 40px;
  height: 3px;
  transform: translateX(-50%);
  background: #222;
  transition: all 0.4s;
  z-index: 10;
}

.header_button button span:nth-of-type(1) {
  top: -10px;
}

.header_button button span:nth-of-type(2) {
  top: 0;
}

.header_button button span:nth-of-type(3) {
  top: 10px;
}

.header_button button.is-active span:nth-of-type(1) {
  top: 0;
  transform: translateX(-50%) rotate(225deg);
}

.header_button button.is-active span:nth-of-type(2) {
  opacity: 0;
}

.header_button button.is-active span:nth-of-type(3) {
  top: -6px;
  transform: translateX(-50%) rotate(-225deg);
}

.header_nav {
  display: flex;
  z-index: 3;
  position: absolute;
  top: 0;
  right: -100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  background: transparent;
  font-weight: 700;
  opacity: 0;
  transition: 0.6s;
  padding: 72px 0;
}

@media (min-width: 1025px) {
  .header_nav {
    position: static;
    height: auto;
    opacity: initial;
    padding: 0;
  }
}

.header_nav.is-active {
  position: fixed;
  top: 0;
  right: 0;
  background: #fff;
  opacity: 1;
  transition: 0.6s;
}

.header_nav .header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  padding: 13px 20px;
}

.header_nav .header__inner .header_nav-box {
  display: block;
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  background: lightblue;
}

@media (min-width: 1025px) {
  .header_nav .header__inner .header_nav-box {
    display: flex;
    background: #fff;
    padding-right: 0;
  }
}

.header_nav .header__inner .header_nav-box .header_nav-item {
  position: relative;
  width: 100%;
}

.header_nav .header__inner .header_nav-box .header_nav-item a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 20px;
  text-align: center;
}

.header_nav .header__inner .header_nav-box .header_nav-item a:hover {
  opacity: 1;
}

/* header */
header {
  background-color: #fff;
  padding: 0 0 20px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  height: 120px;
}

@media (max-width: 1024px) {
  header {
    height: auto;
    padding: 0;
  }
}

header .header_container {
  max-width: 1260px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  header .header_container {
    align-items: end;
    padding: 10px 2%;
    width: 90%;
  }
}

header .header_container .logo {
  padding: 15px 0 0 15px;
}

@media (max-width: 1024px) {
  header .header_container .logo {
    padding-top: 0;
  }
}

header .header_container .header_wrapper {
  width: 78%;
}

@media (max-width: 1024px) {
  header .header_container .header_wrapper {
    width: auto;
  }
}

header .header_container .header_wrapper .header_flexbox {
  width: 100%;
}

@media (max-width: 1024px) {
  header .header_container .header_wrapper .header_flexbox {
    display: none;
  }
}

header .header_container .header_wrapper .header_flexbox .header_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-left: 2%;
  width: 100%;
}

header .header_container .header_wrapper .header_flexbox .header_box ul:first-of-type {
  align-items: center;
  padding-top: 15px;
}

header .header_container .header_wrapper .header_flexbox .header_box ul:first-of-type li:first-of-type {
  background-color: #FCCB00;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  margin-right: 24px;
  padding: 10px;
  position: relative;
}

header .header_container .header_wrapper .header_flexbox .header_box ul:first-of-type li:first-of-type::after {
  content: "";
  display: block;
  background-color: #FCCB00;
  height: calc(22.5px * tan(60deg));
  width: 20px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  position: absolute;
  top: 0;
  right: -18px;
}

header .header_container .header_wrapper .header_flexbox .header_box ul:first-of-type li:nth-of-type(2) {
  display: flex;
  align-items: center;
  width: 23px;
}

header .header_container .header_wrapper .header_flexbox .header_box ul:first-of-type li:nth-of-type(3) {
  display: block;
  font-size: 28px;
  font-weight: 700;
  margin-left: 6px;
}

header .header_container .header_wrapper .header_flexbox .header_box ul:first-of-type li:last-of-type {
  font-size: 12px;
  font-weight: 400;
  margin-left: 12px;
}

header .header_container .header_wrapper .header_flexbox .header_box .header_contact_buttons {
  justify-content: flex-end;
  margin-left: auto;
}

header .header_container .header_wrapper .header_flexbox .header_box ul:last-of-type li:first-of-type a {
  background-color: #0070C0;
  border-radius: 0 0 10px 10px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  padding: 15px 10px 15px 10px;
  width: 164px;
}

header .header_container .header_wrapper .header_flexbox .header_box ul:last-of-type li:first-of-type a:hover {
  opacity: 0.4;
}

header .header_container .header_wrapper .header_flexbox .header_box ul:last-of-type li:first-of-type a img {
  width: 18px;
  margin: 0 3px 0 0;
}

header .header_container .header_wrapper .header_flexbox .header_box ul:last-of-type li:not(:first-of-type) {
  margin: 0 0 0 10px;
}

header .header_container .header_wrapper .header_flexbox .header_box ul:last-of-type li:not(:first-of-type) a {
  background-color: #FF0066;
  border-radius: 0 0 10px 10px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  padding: 15px 5px 15px 5px;
  width: 150px;
}

header .header_container .header_wrapper .header_flexbox .header_box ul:last-of-type li:not(:first-of-type) a:hover {
  opacity: 0.4;
}

header .header_container .header_wrapper .header_flexbox .header_box ul:last-of-type li:not(:first-of-type) a img {
  width: 20px;
  margin: 0 7px 0 0;
}

header .header_container .header_wrapper .header_flexbox .header_box ul:last-of-type li:last-of-type a {
  background-color: #b21c2ff2;
}

header .header_container .header_wrapper .header_flexbox .header_box .header_contact_buttons li:nth-of-type(1) a,
header .header_container .header_wrapper .header_flexbox .header_box .header_contact_buttons li:nth-of-type(2) a {
  background-color: #FF0066 !important;
  width: 164px;
  white-space: nowrap;
}

header .header_container .header_wrapper .header_flexbox .header_box .header_contact_buttons li:nth-of-type(3) a {
  background-color: #b21c2ff2 !important;
  width: 164px;
  white-space: nowrap;
}

header .header_container .header_wrapper .header_nav {
  margin-top: 20px;
}

@media (max-width: 1024px) {
  header .header_container .header_wrapper .header_nav {
    margin-top: 0;
  }
}

header .header_container .header_wrapper .header_nav .header_nav-inner {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  line-height: 1;
  width: 100%;
}

@media (max-width: 1024px) {
  header .header_container .header_wrapper .header_nav .header_nav-inner {
    width: 85%;
    margin: 0 auto;
  }
}

header .header_container .header_wrapper .header_nav .header_nav-inner .header_nav-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  line-height: 1;
}

@media (max-width: 1024px) {
  header .header_container .header_wrapper .header_nav .header_nav-inner .header_nav-box {
    width: 220px;
    margin: 0 auto;
  }
}

header .header_container .header_wrapper .header_nav .header_nav-inner .header_nav-box .header_nav-item {
  padding: 0 15px;
  position: relative;
}

@media (max-width: 1024px) {
  header .header_container .header_wrapper .header_nav .header_nav-inner .header_nav-box .header_nav-item {
    width: 100%;
    padding: 0;
  }
}

header .header_container .header_wrapper .header_nav .header_nav-inner .header_nav-box .header_nav-item:first-of-type {
  padding: 0 15px 0 0;
}

@media (max-width: 1024px) {
  header .header_container .header_wrapper .header_nav .header_nav-inner .header_nav-box .header_nav-item:first-of-type {
    padding: 0;
  }
}

header .header_container .header_wrapper .header_nav .header_nav-inner .header_nav-box .header_nav-item:last-of-type {
  padding: 0 0 0 15px;
}

@media (max-width: 1024px) {
  header .header_container .header_wrapper .header_nav .header_nav-inner .header_nav-box .header_nav-item:last-of-type {
    padding: 0;
  }
}

@media (max-width: 1024px) {
  header .header_container .header_wrapper .header_nav .header_nav-inner .header_nav-box .header_nav-item:not(:first-of-type) {
    margin: 30px auto 0;
  }
}

header .header_container .header_wrapper .header_nav .header_nav-inner .header_nav-box .header_nav-item a {
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}

header .header_container .header_wrapper .header_nav .header_nav-inner .header_nav-box .header_nav-item a::before {
  content: "";
  background: #FF0066;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}

header .header_container .header_wrapper .header_nav .header_nav-inner .header_nav-box .header_nav-item a:hover {
  color: #FF0066;
}

header .header_container .header_wrapper .header_nav .header_nav-inner .header_nav-box .header_nav-item a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

header .header_container .header_wrapper .header_nav .header_nav-inner .header_nav-box .header_nav-item:not(:last-of-type) a::after {
  content: "";
  display: block;
  background-color: #222;
  height: 20px;
  width: 1px;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(16px, -2px);
}

@media (max-width: 1024px) {
  header .header_container .header_wrapper .header_nav .header_nav-inner .header_nav-box .header_nav-item:not(:last-of-type) a::after {
    content: none;
  }
}

@media (max-width: 1024px) {
  header .header_container .header_wrapper .header_nav .header_nav-inner .header_nav-content {
    margin: 8% auto 0;
    width: 100%;
  }
}

header .header_container .header_wrapper .header_nav .header_nav-inner .header_nav-content a {
  background-color: #8FC31F;
  border: 1px solid #8FC31F;
  border-radius: 5px;
  color: #fff;
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  padding: 4px 8px;
}

@media (max-width: 1024px) {
  header .header_container .header_wrapper .header_nav .header_nav-inner .header_nav-content a {
    padding: 10px 8px;
    width: 220px;
    margin: 0 auto;
  }
}

header .header_container .header_wrapper .header_nav .header_nav-inner .header_nav-content a:hover {
  background-color: #fff;
  color: #8FC31F;
  opacity: 1;
}

header .header_container .header_wrapper .header_nav .header_nav-inner .header_nav-sp {
  display: none;
}

@media (max-width: 1024px) {
  header .header_container .header_wrapper .header_nav .header_nav-inner .header_nav-sp {
    display: block;
    margin: 8% auto 0;
  }
}

header .header_container .header_wrapper .header_nav .header_nav-inner .header_nav-sp li:first-of-type a {
  font-size: 28px;
  font-weight: 700;
}

header .header_container .header_wrapper .header_nav .header_nav-inner .header_nav-sp li:first-of-type a span {
  display: flex;
  justify-content: center;
  align-items: center;
}

header .header_container .header_wrapper .header_nav .header_nav-inner .header_nav-sp li:first-of-type a span:first-of-type {
  color: #222;
}

header .header_container .header_wrapper .header_nav .header_nav-inner .header_nav-sp li:first-of-type a span:last-of-type {
  font-size: 12px;
}

header .header_container .header_wrapper .header_nav .header_nav-inner .header_nav-sp li:first-of-type a span img {
  width: 23px;
  margin-right: 6px;
}

header .header_container .header_wrapper .header_nav .header_nav-inner .header_nav-sp li:nth-of-type(2) {
  font-size: 12px;
  margin: 10% auto 6%;
}

header .header_container .header_wrapper .header_nav .header_nav-inner .header_nav-sp li:nth-of-type(2) a {
  background-color: #0070C0;
  border-radius: 10px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  padding: 14px;
  min-height: 50px;
}

header .header_container .header_wrapper .header_nav .header_nav-inner .header_nav-sp li:nth-of-type(2) a img {
  width: 18px;
  margin: 3px 3px 0 0;
}

header .header_container .header_wrapper .header_nav .header_nav-inner .header_nav-sp li:nth-of-type(2) a:hover {
  opacity: 0.4;
}

header .header_container .header_wrapper .header_nav .header_nav-inner .header_nav-sp li:nth-of-type(n+3) a {
  background-color: #FF0066;
  border-radius: 10px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  padding: 14px;
  min-height: 50px;
}

header .header_container .header_wrapper .header_nav .header_nav-inner .header_nav-sp li:nth-of-type(n+3) a img {
  width: 20px;
  margin: 1px 3px 0 0;
}

header .header_container .header_wrapper .header_nav .header_nav-inner .header_nav-sp li:nth-of-type(n+3) a:hover {
  opacity: 0.4;
}

header .header_container .header_wrapper .header_nav .header_nav-inner .header_nav-sp li:last-of-type {
  margin-top: 6%;
}

header .header_container .header_wrapper .header_nav .header_nav-inner .header_nav-sp li:last-of-type a {
  background-color: #b21c2ff2;
}

header .header_container .header_wrapper .header_nav .header_nav-inner .header_nav-sp li:nth-of-type(1),
header .header_container .header_wrapper .header_nav .header_nav-inner .header_nav-sp li:nth-of-type(2),
header .header_container .header_wrapper .header_nav .header_nav-inner .header_nav-sp li:nth-of-type(3) {
  font-size: 16px;
  margin: 6% auto 0;
}

header .header_container .header_wrapper .header_nav .header_nav-inner .header_nav-sp li:nth-of-type(1) a,
header .header_container .header_wrapper .header_nav .header_nav-inner .header_nav-sp li:nth-of-type(2) a,
header .header_container .header_wrapper .header_nav .header_nav-inner .header_nav-sp li:nth-of-type(3) a {
  border-radius: 10px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  padding: 14px;
  min-height: 50px;
}

header .header_container .header_wrapper .header_nav .header_nav-inner .header_nav-sp li:nth-of-type(1) a,
header .header_container .header_wrapper .header_nav .header_nav-inner .header_nav-sp li:nth-of-type(2) a {
  background-color: #FF0066;
}

header .header_container .header_wrapper .header_nav .header_nav-inner .header_nav-sp li:nth-of-type(1) a span,
header .header_container .header_wrapper .header_nav .header_nav-inner .header_nav-sp li:nth-of-type(1) a span:first-of-type {
  color: #fff !important;
}

header .header_container .header_wrapper .header_nav .header_nav-inner .header_nav-sp li:nth-of-type(3) a {
  background-color: #b21c2ff2;
}



/* footer */
footer .footer_container {
  width: 90%;
  margin: 0 auto;
  max-width: 1160px;
}

footer .footer_container .footer_wrapper .footer_title {
  background-color: #FF0066;
  color: #fff;
  border-radius: 20px 20px 0 0;
  padding: 20px 0;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 1024px) {
  footer .footer_container .footer_wrapper .footer_title {
    font-size: 18px;
  }
}

footer .footer_container .footer_wrapper .footer_title img {
  width: 132px;
  margin-right: 8px;
}

footer .footer_container .footer_wrapper .footer_box {
  background-color: #FFE3D9;
  border-radius: 0 0 20px 20px;
  padding: 46px 80px 62px;
  align-items: end;
}

@media (max-width: 1024px) {
  footer .footer_container .footer_wrapper .footer_box {
    padding: 30px 10%;
    justify-content: center;
  }
}

footer .footer_container .footer_wrapper .footer_box li {
  width: 50%;
}

@media (max-width: 1024px) {
  footer .footer_container .footer_wrapper .footer_box li {
    width: 280px;
  }
}

footer .footer_container .footer_wrapper .footer_box li:first-of-type {
  text-align: center;
}

footer .footer_container .footer_wrapper .footer_box li:first-of-type p:first-of-type {
  font-size: 18px;
  font-weight: 700;
}

footer .footer_container .footer_wrapper .footer_box li:first-of-type p:nth-of-type(2) {
  line-height: 42px;
  margin: 6px auto 0;
}

footer .footer_container .footer_wrapper .footer_box li:first-of-type p:nth-of-type(2) a img {
  width: 36px;
  object-fit: contain;
}

@media (max-width: 1024px) {
  footer .footer_container .footer_wrapper .footer_box li:first-of-type p:nth-of-type(2) a img {
    width: clamp(32px, 9.5vw, 36px);
  }
}

footer .footer_container .footer_wrapper .footer_box li:first-of-type p:nth-of-type(2) a span {
  font-size: 42px;
  font-weight: 700;
}

@media (max-width: 1024px) {
  footer .footer_container .footer_wrapper .footer_box li:first-of-type p:nth-of-type(2) a span {
    font-size: clamp(36px, 9.5vw, 38px);
  }
}

footer .footer_container .footer_wrapper .footer_box li:first-of-type p:last-of-type {
  font-size: 12px;
  font-weight: 400;
}

@media (max-width: 1024px) {
  footer .footer_container .footer_wrapper .footer_box li:nth-of-type(2) {
    margin: 5% auto;
  }
}

footer .footer_container .footer_wrapper .footer_box li:nth-of-type(2) a {
  align-items: center;
  margin: 0 auto;
  position: relative;
  padding: 0 4% 7px 8%;
  z-index: 0;
}

@media (max-width: 1024px) {
  footer .footer_container .footer_wrapper .footer_box li:nth-of-type(2) a {
    padding: 0 4% 7px 14%;
  }
}

footer .footer_container .footer_wrapper .footer_box li:nth-of-type(2) a:before {
  content: "";
  display: block;
  background-color: #FFCFBE;
  position: absolute;
  bottom: 3px;
  left: 3px;
  z-index: -1;
  height: 74%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.25s ease;
  transition-property: transform;
}

footer .footer_container .footer_wrapper .footer_box li:nth-of-type(2) a::after {
  content: "";
  display: block;
  background-color: #fff;
  background-position: bottom center;
  border: 3px solid #FFCFBE;
  border-radius: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -2;
  height: 74%;
  width: 100%;
}

footer .footer_container .footer_wrapper .footer_box li:nth-of-type(2) a span {
  color: #FF0066;
  font-size: 24px;
  font-weight: 700;
  padding: 9% 0 0;
}

@media (max-width: 1024px) {
  footer .footer_container .footer_wrapper .footer_box li:nth-of-type(2) a span {
    font-size: 20px;
  }
}

footer .footer_container .footer_wrapper .footer_box li:nth-of-type(2) a img {
  width: 90px;
}

@media (max-width: 1024px) {
  footer .footer_container .footer_wrapper .footer_box li:nth-of-type(2) a img {
    width: 70px;
  }
}

footer .footer_container .footer_wrapper .footer_box li:nth-of-type(2) a:hover {
  opacity: 1;
}

footer .footer_container .footer_wrapper .footer_box li:nth-of-type(2) a:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

footer .footer_container .footer_wrapper .footer_box li:last-of-type a {
  background-color: #00B900;
  border-radius: 5px;
  display: block;
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  padding: 22px 0;
}

@media (max-width: 1024px) {
  footer .footer_container .footer_wrapper .footer_box li:last-of-type a {
    font-size: 20px;
    padding: 16px 0;
  }
}

footer .footer_container .footer_wrapper .footer_box li:last-of-type a:hover {
  opacity: 0.4;
}

footer .footer_container .footer_wrapper02 {
  border-top: 1px solid #000;
  margin: 100px auto 0;
  padding: 60px 0 80px;
}

@media (max-width: 1024px) {
  footer .footer_container .footer_wrapper02 {
    margin: 60px auto 0;
    padding: 30px 0 40px;
  }
}

footer .footer_container .footer_wrapper02 .footer_logo {
  width: 231px;
}

@media (max-width: 1024px) {
  footer .footer_container .footer_wrapper02 .footer_logo {
    margin: 0 auto 10%;
  }
}

footer .footer_container .footer_wrapper02 .footer_nav {
  margin: 0 0 10px;
  width: 53%;
}

@media (max-width: 1024px) {
  footer .footer_container .footer_wrapper02 .footer_nav {
    width: 100%;
  }
}

footer .footer_container .footer_wrapper02 .footer_nav ul {
  width: 30%;
}

footer .footer_container .footer_wrapper02 .footer_nav ul li {
  line-height: 1;
}

footer .footer_container .footer_wrapper02 .footer_nav ul li:not(:last-of-type) {
  margin: 0 0 10px;
}

@media (max-width: 1024px) {
  footer .footer_container .footer_wrapper02 .footer_nav ul li:not(:last-of-type) {
    margin: 0 0 30px;
  }
}

footer .footer_container .footer_wrapper02 .footer_nav ul li a {
  font-size: 16px;
  font-weight: 400;
  position: relative;
}

footer .footer_container .footer_wrapper02 .footer_nav ul li a::before {
  content: "";
  background: #222222;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}

footer .footer_container .footer_wrapper02 .footer_nav ul li a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

@media (max-width: 1024px) {
  footer .footer_container .footer_wrapper02 .footer_nav ul:first-of-type {
    width: 50%;
  }
}

footer .footer_container .footer_wrapper02 .footer_nav ul:last-of-type {
  width: 35%;
}

@media (max-width: 1024px) {
  footer .footer_container .footer_wrapper02 .footer_nav ul:last-of-type {
    width: 45%;
  }
}

@media (max-width: 1024px) {
  footer .footer_container .footer_wrapper02 .footer_nav .member_btn {
    margin: 10% auto 0;
    width: 100%;
  }
}

footer .footer_container .footer_wrapper02 .footer_nav .member_btn a {
  border: 1px solid #E3E3E3;
  border-radius: 5px;
  display: block;
  background-color: #F8F8F8;
  padding: 18px 13px;
  text-align: center;
}

@media (max-width: 1024px) {
  footer .footer_container .footer_wrapper02 .footer_nav .member_btn a {
    padding: 5% 5%;
  }
}

footer .footer_container .footer_wrapper02 .footer_nav .member_btn a p {
  font-size: 16px;
  font-weight: 500;
}

footer .footer_container .footer_wrapper02 .footer_nav .member_btn a span {
  background-color: #8FC31F;
  border: 1px solid #8FC31F;
  display: block;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 4px 7px;
  margin: 7px auto 0;
  transition: 0.3s;
}

footer .footer_container .footer_wrapper02 .footer_nav .member_btn a:hover {
  opacity: 1;
}

footer .footer_container .footer_wrapper02 .footer_nav .member_btn a:hover span {
  color: #8FC31F;
  background-color: transparent;
}

footer .footer_container02 {
  background-color: #F4F4F4;
  padding: 60px 0 70px;
}

@media (max-width: 1024px) {
  footer .footer_container02 {
    padding: 40px 0 50px;
  }
}

footer .footer_container02 .icon_box {
  width: 15%;
  margin: auto;
  margin-bottom: 3%;
}

@media (max-width: 1024px) {
  footer .footer_container02 .icon_box {
    width: 30%;
    margin: 0 auto 10%;
  }
}

footer .footer_container02 .footer_wrapper03 {
  width: 90%;
  margin: 0 auto;
  max-width: 1160px;
  justify-content: flex-start;
}

@media (max-width: 1024px) {
  footer .footer_container02 .footer_wrapper03 .footer_box {
    width: 100%;
  }
}

footer .footer_container02 .footer_wrapper03 .footer_box h3 {
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 6px;
}

footer .footer_container02 .footer_wrapper03 .footer_box p {
  font-size: 12px;
  font-weight: 400;
}

footer .footer_container02 .footer_wrapper03 .footer_box p a {
  font-size: 12px;
  font-weight: 400;
}

footer .footer_container02 .footer_wrapper03 .footer_box.flex {
  flex-wrap: nowrap;
  justify-content: flex-start;
  flex: 0 0 50%;
  margin-right: 10%;
}

@media (max-width: 1024px) {
  footer .footer_container02 .footer_wrapper03 .footer_box.flex {
    width: 100%;
    flex: 0 0 100%;
  }
}

footer .footer_container02 .footer_wrapper03 .footer_box.flex .sub_left {
  flex: 0 0 23%;
  margin-right: 2%;
}

@media (max-width: 1024px) {
  footer .footer_container02 .footer_wrapper03 .footer_box.flex .sub_left {
    flex: 0 0 20%;
  }
}

@media (max-width: 1024px) {
  footer .footer_container02 .footer_wrapper03 .footer_box02 {
    margin: 8% auto 0;
    width: 100%;
  }
}

footer .footer_container02 .footer_wrapper03 .footer_box02>p {
  font-size: 12px;
  font-weight: 400;
  padding-top: 4px;
  margin-right: 7px;
}

@media (max-width: 1024px) {
  footer .footer_container02 .footer_wrapper03 .footer_box02>p {
    padding-top: 0;
    margin-right: 0;
  }
}

footer .footer_container02 .footer_wrapper03 .footer_box02 .footer_box02-company p {
  font-size: 18px;
  font-weight: 500;
}

footer .footer_container02 .footer_wrapper03 .footer_box02 .footer_box02-company p:nth-of-type(2) {
  font-size: 12px;
  font-weight: 400;
}

footer .footer_container02 .footer_wrapper03 .footer_box02.flex {
  flex: auto;
  flex-wrap: nowrap;
  justify-content: flex-start;
  width: 40%;
}

@media (max-width: 1024px) {
  footer .footer_container02 .footer_wrapper03 .footer_box02.flex {
    width: 100%;
  }
}

footer .footer_container02 .footer_wrapper03 .footer_box02.flex .sub_left {
  flex: 0 0 17%;
  margin-right: 2%;
}

@media (max-width: 1024px) {
  footer .footer_container02 .footer_wrapper03 .footer_box02.flex .sub_left {
    flex: 0 0 20%;
  }
}

footer .footer_container02 .footer_wrapper03 .footer_box02.flex .sub_right>p {
  font-size: 12px;
  font-weight: normal;
}

footer .footer_container03 {
  background-color: #E7E7E7;
  padding: 30px 0;
}

@media (max-width: 1024px) {
  footer .footer_container03 {
    padding: 20px 0;
  }
}

footer .footer_container03 .footer_box03 {
  justify-content: flex-end;
  width: 90%;
  margin: 0 auto;
  max-width: 1160px;
}

footer .footer_container03 .footer_box03 li {
  font-size: 12px;
  font-weight: 400;
}

footer .footer_container03 .footer_box03 li a {
  font-size: 12px;
  font-weight: 400;
}

footer .footer_container03 .footer_box03 li:first-of-type {
  margin: 0 8px 0 0;
  padding: 0 8px 0 0;
  position: relative;
}

footer .footer_container03 .footer_box03 li:first-of-type::before {
  content: "";
  display: block;
  background-color: #000;
  height: 20px;
  width: 1px;
  position: absolute;
  top: 0;
  right: 0;
}

/* animation */
.fade-in {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 2s, transform 1s;
}

.fade-in.is-active {
  opacity: 1;
  transform: translateY(0);
}

/* mv fadein */
.fadeInUp {
  opacity: 0;
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes fadeIn {
  0% {
    transform: translateY(100px);
  }

  100% {
    opacity: 1;
    transform: translate(0);
  }
}

.fade-in03 {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 1.2s 1000ms, transform 1s;
}

.fade-in03.is-active {
  opacity: 1;
  transform: translateY(0);
}

.zoombox {
  opacity: 0;
}

.zoombox.is-active {
  animation: zoomout 2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes zoomout {
  0% {
    transform: scale(1.8);
    opacity: 0;
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}


.application_box {
  width: 90%;
  margin: 0 auto;
  max-width: 1160px;
  margin-bottom: 4rem;
}

.application_box a {
  display: block;
  background-color: #b21c2ff2;
  color: #fff;
  font-size: 26px;
  font-weight: 500;
  padding: 25px 10px;
  text-align: center;
  border-radius: 10px;
  transition: 0.3s;
}

@media screen and (max-width: 480px) {
  .application_box {
    margin-bottom: 2.5rem;
  }

  .application_box a {
    padding: 15px 10px;
    font-size: 20px;
  }
}

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