@charset "UTF-8";
/****************************************

リセットCSSここから

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

#template {
  position: absolute;
  font-size: 10px;
  z-index: 1000;
}

html {
  font-size: 62.5%; /*1em=10px */
  overflow-y: scroll; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

@media screen and (max-width: 767px) {
  /* section img{
  	width: auto;
  	height: auto;
  } */
}
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

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

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

a {
  text-decoration: none;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

img {
  vertical-align: top;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

/****************************************

body設定(主に書式)

*****************************************/
body {
  font-family: "Noto Sans JP", sans-serif, Meiryo, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #333;
  line-height: 1.8;
  letter-spacing: 0.06em;
  width: 100%;
  font-weight: 500;
}

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

ページ共通

*****************************************/
#wrapper {
  float: none;
  min-height: 100%;
  margin: 0 auto;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  #wrapper {
    float: none;
    width: 100%;
    min-height: 100%;
    margin: 0 auto;
    overflow: hidden;
    background-size: contain;
  }
}
.inner {
  max-width: 1100px;
  margin: 0 auto;
}

/****************************************

フォント指定

*****************************************/
li,
tt,
tr,
dt,
dd,
p,
time {
  font-size: clamp(1.4rem, 1.8vw, 1.6rem);
}

@media screen and (max-width: 767px) {
  li,
  tt,
  tr,
  dt,
  dd,
  p,
  time {
    font-size: 1.4rem;
  }
}
/****************************************

リンク指定

*****************************************/
a {
  font-weight: 500;
}

a:link,
a:visited {
  font-weight: normal;
  color: #463c39;
  text-decoration: underline;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}

a:hover,
a:active {
  font-weight: normal;
  opacity: 0.7;
  text-decoration: none;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}

/****************************************

オンマウス時のアクション

*****************************************/
a:hover img.img_opacity {
  opacity: 0.75;
  filter: alpha(opacity=75);
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}

a:hover .img_opacity {
  opacity: 0.75;
  filter: alpha(opacity=75);
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}

a img.img_opacity {
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}

/****************************************

spヘッダー・spナビ

*****************************************/
img {
  width: 100%;
  height: auto;
}
img.eyecatch-img {
  display: table-cell;
  width: auto;
  text-align: center;
}

/****************************************

P

*****************************************/
.banner {
  opacity: 0;
  transition: all 1s;
  transform: translateY(400px);
}

.banner.active {
  opacity: 1;
  transform: translateY(0);
}

.banner02 {
  opacity: 0;
  transition: all 1s;
  transform: translateY(400px);
}

.banner02.active {
  opacity: 1;
  transform: translateY(0);
}

.banner03 {
  opacity: 0;
  transition: all 1s;
  transform: translateY(30px);
}

.banner03.active {
  opacity: 1;
  transform: translateY(0);
}

/* 改行 */
.line_break {
  padding-top: 26px;
}

.fadein {
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 0.8s;
}

.fadein_r {
  opacity: 0;
  transform: translate(200px, 0);
  transition: all 0.5s;
}

.fadein.scrollin,
.fadein_r.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

@media screen and (min-width: 768px) {
  .pc_none {
    display: none;
  }
} /*min-width:768px*/
@media screen and (max-width: 767px) {
  .sp_none {
    display: none;
  }
} /*max-width:767px*/
.grecaptcha-badge {
  visibility: hidden;
}

.swiper-wrapper {
  transition-timing-function: linear;
}

/* 画像のサイズ調整 */
.swiper-slide img {
  height: auto;
  width: 100%;
}

pre {
  white-space: pre-wrap; /* テキストの自動改行を有効にする */
  word-wrap: break-word; /* 長い単語を自動で折り返す */
  overflow: auto; /* はみ出た場合にスクロールバーを表示する */
}

p {
  word-break: break-all;
}

.btn_box a {
  display: block;
  width: 280px;
  text-decoration: none;
  text-align: center;
  color: #bd145a;
  line-height: 60px;
  background: #fff;
  font-size: 1.8rem;
  border: 2px solid #bd145a;
  border-radius: 100px;
  font-family: "Poppins", sans-serif;
  position: relative;
  margin: 0 auto;
}
.btn_box a::after {
  position: absolute;
  content: "";
  width: 12px;
  height: 13px;
  background: url(../images/btm_icon.svg) no-repeat;
  background-size: contain;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  transition: all 0.2s;
}
.btn_box a:hover::after {
  right: 10px;
}

@media screen and (max-width: 767px) {
  .btn_box a {
    width: 250px;
    line-height: 50px;
    font-size: 1.6rem;
  }
} /*max-width:767px*/
#teaser {
  width: 100%;
  height: 500px;
  background: url(../images/teaser.jpg) top center no-repeat;
  background-size: cover;
  position: relative;
}
#teaser .headline {
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -40%);
  width: 100%;
  line-height: 1.2;
  text-align: center;
}
#teaser .headline .ja {
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.05em;
  font-size: clamp(2rem, 2vw, 2.8rem);
}
#teaser .headline .en {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(6rem, 8vw, 10rem);
}

@media screen and (max-width: 767px) {
  #teaser {
    height: 250px;
  }
  #teaser .headline .ja {
    font-size: clamp(1.6rem, 4vw, 2rem);
  }
  #teaser .headline .en {
    font-size: clamp(4rem, 12vw, 6rem);
  }
} /*max-width:767px*/
.bread {
  max-width: 1140px;
  margin: 10px auto 120px;
  padding: 0 20px;
  display: flex;
  gap: 0 20px;
}
.bread li {
  font-size: 15px;
  font-weight: normal;
  position: relative;
  line-height: 1.2;
}
.bread li::after {
  position: absolute;
  content: ">";
  background: url(images/) no-repeat;
  right: -13px;
  top: 1px;
}
.bread li:last-child::after {
  content: none;
}
.bread li a {
  font-size: 15px;
  text-decoration: none;
  font-weight: normal;
}

@media screen and (max-width: 767px) {
  .bread {
    margin: 10px auto 40px;
    gap: 0 14px;
  }
  .bread li {
    font-size: 11px;
  }
  .bread li::after {
    right: -11px;
  }
  .bread li a {
    font-size: 11px;
  }
} /*max-width:767px*/
.subhead01 {
  line-height: 1.2;
  letter-spacing: 0.05em;
  margin-bottom: 50px;
  text-align: center;
}
.subhead01 .ja {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(2.2rem, 2vw, 2.6rem);
  color: #bd145a;
}
.subhead01 .en {
  font-family: "Poppins", sans-serif;
  font-size: clamp(6rem, 6vw, 8rem);
  display: inline-block;
}
.subhead01 .en::first-letter {
  color: #bd145a;
}

@media screen and (max-width: 767px) {
  .subhead01 {
    margin-bottom: 30px;
  }
  .subhead01 .ja {
    font-size: clamp(1.8rem, 4.4vw, 2.2rem);
  }
  .subhead01 .en {
    font-size: clamp(4rem, 12vw, 6rem);
  }
} /*max-width:767px*/
.subhead02 {
  padding: 15px 0;
  border-top: 1px solid #bd145a;
  border-bottom: 1px solid #bd145a;
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-size: clamp(2.2rem, 2.2vw, 2.8rem);
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .subhead02 {
    padding: 10px 0;
    font-size: clamp(1.8rem, 4.4vw, 2.2rem);
    margin-bottom: 20px;
  }
} /*max-width:767px*/
.list_area li {
  padding-left: 15px;
  border-left: 3px solid #bd145a;
  line-height: 1.2;
  margin-bottom: 20px;
  font-size: clamp(1.8rem, 1.8vw, 2rem);
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.list_area li:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .list_area li {
    padding-left: 10px;
    margin-bottom: 10px;
    font-size: clamp(1.6rem, 3.6vw, 1.8rem);
  }
} /*max-width:767px*/
.overview_table {
  width: 100%;
  border-collapse: collapse;
}

.overview_table th {
  width: 25%;
  padding: 30px 20px;
  font-size: 1.6rem;
  line-height: 1.2;
  text-align: left;
  font-weight: bold;
  vertical-align: text-top;
  border-bottom: 1px solid #bd145a;
}

.overview_table td {
  width: 75%;
  padding: 30px 20px;
  font-size: 1.6rem;
  line-height: 1.2;
  text-align: left;
  vertical-align: text-top;
  border-bottom: 1px solid #cccccc;
}

@media screen and (max-width: 767px) {
  .overview_table th {
    padding: 10px;
    font-size: 1.4rem;
  }
  .overview_table td {
    padding: 10px;
    font-size: 1.4rem;
  }
} /*max-width:767px*/
.info_table {
  max-width: 600px;
  margin: 0 auto;
}
.info_table dl {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.info_table dl:last-of-type {
  margin-bottom: 0;
}
.info_table dl dt {
  width: 25%;
  border-right: 1px solid #bd145a;
  font-size: clamp(1.6rem, 1.5vw, 1.8rem);
  font-weight: bold;
}
.info_table dl dd {
  width: 75%;
  padding-left: 12%;
  font-size: clamp(1.6rem, 1.5vw, 1.8rem);
}

@media screen and (max-width: 767px) {
  .info_table dl {
    margin-bottom: 20px;
  }
  .info_table dl dt {
    font-size: 1.4rem;
    font-weight: bold;
    padding-right: 20px;
    line-height: 1.2;
  }
  .info_table dl dd {
    padding-left: 20px;
    font-size: 1.4rem;
    line-height: 1.2;
  }
} /*max-width:767px*/
.common_area {
  margin-top: 150px;
  padding: 0 20px;
}

@media screen and (max-width: 767px) {
  .common_area {
    margin-top: 60px;
  }
} /*max-width:767px*/
.pink {
  color: #bd145a;
}

header .header_logo .after {
  display: none;
}

header.headerColorScroll .header_logo .before {
  display: none;
}
header.headerColorScroll .header_logo .after {
  display: block;
}

header.headerColorScroll .header_wrap {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}
header.headerColorScroll .header_wrap .header_content #g_navi ul li a {
  color: #333;
}
header.headerColorScroll .header_wrap .header_content #g_navi ul li a::after {
  background: #bd145a;
}
header.headerColorScroll .header_wrap .header_content #g_navi ul li ul li a {
  color: #fff;
}

header .header_wrap {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 50;
  padding: 0 0 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  transition: all 0.2s;
  box-shadow: none;
}
header .header_wrap .header_logo {
  width: 218px;
}
header .header_wrap .header_logo a {
  display: block;
}
header .header_wrap .header_content {
  width: 919px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header_wrap .header_content #g_navi {
  width: 749px;
}
header .header_wrap .header_content #g_navi ul {
  display: flex;
  justify-content: space-between;
}
header .header_wrap .header_content #g_navi ul li a {
  text-decoration: none;
  font-size: 1.6rem;
  color: #fff;
  text-decoration: none;
  position: relative;
  display: inline-block;
}
header .header_wrap .header_content #g_navi ul li a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #ffffff;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform 0.5s;
}
header .header_wrap .header_content #g_navi ul li a:hover {
  opacity: 1;
}
header .header_wrap .header_content #g_navi ul li a:hover::after {
  transform: scale(1, 1);
}
header .header_wrap .header_content #g_navi ul li ul li a::after {
  content: none;
}
header .header_wrap .header_content .header_contact a {
  display: block;
  width: 110px;
  text-decoration: none;
  text-align: center;
  color: #fff;
  height: 110px;
  background: #bd145a;
  font-size: 1.6rem;
  line-height: 1.3;
  padding-top: 32px;
  position: relative;
}
header .header_wrap .header_content .header_contact a img {
  width: 20px;
  margin: 0 auto;
}
header #slider {
  position: relative;
}
header #slider .swiper .swiper-slide img {
  min-height: 650px;
  object-fit: cover;
}
header #slider .slider_txt {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  z-index: 1;
  width: 100%;
  text-align: center;
}
header #slider .slider_txt .en {
  font-family: "Poppins", sans-serif;
  line-height: 1.1;
  letter-spacing: 0.01em;
  font-size: clamp(7rem, 9vw, 12rem);
  margin-bottom: 30px;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
}
header #slider .slider_txt .en.huchi {
  color: #fff;
  -webkit-text-stroke: 2px #bd145a;
  text-stroke: 2px #bd145a;
  font-weight: bold;
}
header #slider .slider_txt .ja {
  letter-spacing: 0.05em;
  font-size: clamp(2rem, 2.2vw, 2.8rem);
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-decoration: underline;
}
header #slider .slider_news {
  position: absolute;
  bottom: 8%;
  right: 3%;
  width: 650px;
  background: #fff;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  z-index: 10;
  padding: 10px 30px;
}
header #slider .slider_news article {
  display: flex;
  align-items: center;
}
header #slider .slider_news article .time {
  margin-right: 15px;
}
header #slider .slider_news article .time time {
  font-size: 1.6rem;
  color: #999;
  font-family: "Poppins", sans-serif;
}
header #slider .slider_news article .cat {
  margin-right: 15px;
}
header #slider .slider_news article .cat p {
  width: 70px;
  line-height: 20px;
  background: #bd145a;
  border-radius: 50px;
  text-align: center;
  color: #fff;
  font-size: 1.2rem;
}
header #slider .slider_news article .tit {
  line-height: 1;
}
header #slider .slider_news article .tit a {
  text-decoration: none;
  font-size: 1.6rem;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

@media screen and (max-width: 1300px) {
  header .header_wrap {
    zoom: 0.7;
  }
} /*max-width:1300px*/
@media screen and (max-width: 900px) {
  header .header_wrap {
    zoom: 0.6;
  }
} /*max-width:900px*/
@media screen and (max-width: 767px) {
  header .header_wrap {
    zoom: 1;
    padding: 0 10px;
    height: 60px;
  }
  header .header_wrap .header_logo {
    width: 140px;
  }
  header .header_wrap .header_content {
    display: none;
  }
  header #slider .swiper .swiper-slide img {
    min-height: auto;
  }
  header #slider .slider_txt .en {
    font-size: clamp(3rem, 12vw, 6rem);
    margin-bottom: 20px;
  }
  header #slider .slider_txt .ja {
    font-size: clamp(1.6rem, 4vw, 2rem);
  }
  header #slider .slider_news {
    bottom: 30px;
    right: 50%;
    transform: translateX(50%);
    width: calc(100% - 40px);
    padding: 8px 12px;
  }
  header #slider .slider_news article .time {
    margin-right: 7px;
  }
  header #slider .slider_news article .time time {
    font-size: 1.2rem;
  }
  header #slider .slider_news article .cat {
    margin-right: 7px;
  }
  header #slider .slider_news article .cat p {
    width: 60px;
    line-height: 15px;
    font-size: 1rem;
  }
  header #slider .slider_news article .tit a {
    font-size: 1.2rem;
  }
} /*max-width:767px*/
@media screen and (min-width: 768px) {
  #toggle {
    display: none;
  }
  #sp_navi {
    display: none;
  }
} /*min-width:768px*/
@media screen and (max-width: 767px) {
  #toggle {
    position: fixed;
    right: 0;
    top: 0;
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 9999;
    padding: 17px 15px 10px;
    background-color: #bd145a;
  }
  #toggle div {
    position: relative;
  }
  #toggle span {
    display: block;
    position: absolute;
    width: 100%;
    height: 1px;
    background: #fff;
    border-radius: 4px;
    -webkit-transition: 0.35s ease-in-out;
    -o-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
  }
  #toggle span:first-child {
    top: 1px;
  }
  #toggle span:nth-child(2) {
    top: 11px;
  }
  #toggle span:nth-child(3) {
    top: 21px;
  }
  .open_navi #toggle {
    position: fixed;
  }
  .open_navi #toggle span:first-of-type {
    transform: translateY(11px) rotate(-315deg);
  }
  .open_navi #toggle span:nth-of-type(2) {
    opacity: 0;
  }
  .open_navi #toggle span:nth-of-type(3) {
    transform: translateY(-9px) rotate(315deg);
  }
  #sp_navi {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100vw;
    overflow-y: scroll;
    text-align: left;
    background: #bd145a;
    z-index: 999;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: 0.7s ease-in-out;
    -o-transition: 0.7s ease-in-out;
    transition: 0.7s ease-in-out;
    display: block;
    padding: 60px 20px;
  }
  .open_navi #sp_navi {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: 0.7s ease-in-out;
    -o-transition: 0.7s ease-in-out;
    transition: 0.7s ease-in-out;
  }
  .open_navi #wrapper {
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    -webkit-transition: 0.7s ease-in-out;
    -o-transition: 0.7s ease-in-out;
    transition: 0.7s ease-in-out;
  }
  #sp_navi .menu .menu-item {
    width: 100%;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
    color: #fff;
    margin: 0 auto;
    font-size: 1.6rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    line-height: 1.2;
  }
  #sp_navi .menu .menu-item.menu_open {
    border-bottom: none;
  }
  #sp_navi .menu .menu-item-home {
    border-top: #fff 1px solid;
  }
  #sp_navi .menu-item a,
  #sp_navi .menu-item span {
    display: block;
    padding: 18px 0;
  }
  #sp_navi .menu-item a:active,
  #sp_navi .menu-item a:hover,
  #sp_navi .menu-item a:link,
  #sp_navi .menu-item a:visited {
    color: #fff;
    text-decoration: none;
  }
  #sp_navi .sub-menu {
    width: 100%;
    display: none;
    background: #9c0f49;
    padding: 15px 20px 30px;
  }
  #sp_navi .sub-menu li {
    width: 100%;
  }
  #sp_navi .sub-menu li a {
    display: block;
    padding: 15px 0;
    font-size: 1.4rem;
  }
  #sp_navi .sub-menu li a:active,
  #sp_navi .sub-menu li a:hover,
  #sp_navi .sub-menu li a:link,
  #sp_navi .sub-menu li a:visited {
    color: #fff;
    text-decoration: none;
  }
  /*
      #sp_navi .sub-menu li a:hover {
          color: #333;
          background: none;
      }
  */
  #sp_navi .menu-item-has-children {
    position: relative;
  }
  #sp_navi .menu-item-has-children:before {
    content: "";
    width: 14px;
    height: 14px;
    border: 0;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    position: absolute;
    top: 16px;
    right: 20px;
  }
  #sp_navi .menu-item-has-children.menu_open:before {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    top: 24px;
  }
  #sp_navi .tel {
    margin-top: 50px;
    text-align: center;
  }
  #sp_navi .tel a {
    text-decoration: none;
    color: #fff;
  }
  #sp_navi .tel a .num {
    display: inline-block;
    padding-left: 40px;
    font-family: "Poppins", sans-serif;
    font-size: clamp(3rem, 3.8vw, 4.8rem);
    line-height: 1;
    margin-bottom: 5px;
    position: relative;
  }
  #sp_navi .tel a .num::after {
    position: absolute;
    content: "";
    width: 30px;
    height: 30px;
    background: url(../images/contact_tel.svg) no-repeat;
    background-size: contain;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
  }
  #sp_navi .tel a .txt {
    font-size: clamp(1rem, 1.3vw, 1.4rem);
  }
}
#g_navi .menu:after {
  clear: both;
}

#g_navi .menu li {
  position: relative;
}

#g_navi .menu li ul {
  list-style: none;
  position: absolute;
  z-index: 9999;
  margin: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 20px;
}

#g_navi ul li img {
  width: 100%;
  height: auto;
}

#menu-pc_navi li a {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #333333;
  font-size: 1.5rem;
}

#menu-pc_navi li a:hover {
  opacity: 0.7;
}

#g_navi .menu li a:hover {
  opacity: 0.7;
}

#g_navi .menu li ul {
  list-style: none;
  position: absolute;
  z-index: 9999;
  margin: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  flex-direction: column;
  width: 250px;
}

#g_navi .menu li ul li {
  padding: 0 30px;
  background: #bd145a;
}
#g_navi .menu li ul li:first-child {
  padding-top: 15px;
}
#g_navi .menu li ul li:last-child {
  padding-bottom: 30px;
}
#g_navi .menu li ul li a {
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid #ccc;
  font-size: 1.4rem;
  line-height: 1.5;
  width: 190px;
  color: #fff;
  opacity: 0.95;
  filter: alpha(opacity=95);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

#g_navi .menu li ul li a:hover {
  opacity: 0.7 !important;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}

#g_navi .menu li:hover ul {
  visibility: visible;
  opacity: 0.95;
}

#g_navi .menu li:hover ul li a {
  visibility: visible;
  opacity: 1;
}

footer {
  background: #333;
  padding: 100px 20px 80px;
  color: #fff;
}
footer .footer_inner .footer_content {
  display: flex;
  justify-content: space-between;
  gap: 0 30px;
  margin-bottom: 80px;
}
footer .footer_inner .footer_content .footer_logo_area .footer_logo {
  width: 218px;
  margin-bottom: 50px;
}
footer .footer_inner .footer_content .footer_logo_area .footer_logo a {
  display: inline-block;
}
footer .footer_inner .footer_content .footer_logo_area .footer_info address {
  font-size: 1.6rem;
  font-style: normal;
}
footer .footer_inner .footer_content .footer_logo_area .footer_info p {
  font-size: 1.6rem;
}
footer .footer_inner .footer_content .footer_logo_area .footer_info p a {
  color: #fff;
  text-decoration: none;
}
footer .footer_inner .footer_content .footer_navi {
  width: 540px;
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
}
footer .footer_inner .footer_content .footer_navi ul li {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
footer .footer_inner .footer_content .footer_navi ul li.sub_navi {
  margin-bottom: 8px;
}
footer .footer_inner .footer_content .footer_navi ul li.sub_navi a {
  padding-left: 20px;
  position: relative;
}
footer .footer_inner .footer_content .footer_navi ul li.sub_navi a::after {
  position: absolute;
  content: "";
  width: 12px;
  height: 1px;
  background: #eee;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
footer .footer_inner .footer_content .footer_navi ul li:last-child {
  margin-bottom: 0;
}
footer .footer_inner .footer_content .footer_navi ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 1.6rem;
}
footer .footer_inner .footer_copy_area {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #fff;
}
footer .footer_inner .footer_copy_area .privacy a {
  text-decoration: none;
  font-size: 1.6rem;
  color: #fff;
}
footer .footer_inner .footer_copy_area .copy small {
  font-size: 1.4rem;
}

@media screen and (max-width: 1000px) {
  footer .footer_inner {
    zoom: 0.7;
  }
} /*max-width:1000px*/
@media screen and (max-width: 767px) {
  footer {
    padding: 60px 20px 70px;
  }
  footer .footer_inner {
    zoom: 1;
  }
  footer .footer_inner .footer_content {
    flex-direction: column;
    gap: 30px 0;
    margin-bottom: 30px;
  }
  footer .footer_inner .footer_content .footer_logo_area .footer_logo {
    width: 160px;
    margin: 0 auto 30px;
  }
  footer .footer_inner .footer_content .footer_logo_area .footer_info {
    text-align: center;
  }
  footer .footer_inner .footer_content .footer_logo_area .footer_info address {
    font-size: 1.4rem;
  }
  footer .footer_inner .footer_content .footer_logo_area .footer_info p {
    font-size: 1.4rem;
  }
  footer .footer_inner .footer_content .footer_navi {
    width: 100%;
    padding-top: 0;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 4%;
  }
  footer .footer_inner .footer_content .footer_navi ul {
    width: 48%;
  }
  footer .footer_inner .footer_content .footer_navi ul li {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 15px;
  }
  footer .footer_inner .footer_content .footer_navi ul li a {
    font-size: 1.4rem;
  }
  footer .footer_inner .footer_copy_area {
    padding-top: 30px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px 0;
  }
  footer .footer_inner .footer_copy_area .privacy a {
    font-size: 1.4rem;
  }
  footer .footer_inner .footer_copy_area .copy {
    text-align: center;
    width: 100%;
  }
  footer .footer_inner .footer_copy_area .copy small {
    font-size: 1.1rem;
  }
} /*max-width:767px*/
.to_top {
  width: 7.71%;
  min-width: 70px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 50;
}

@media screen and (max-width: 767px) {
  .to_top {
    width: 80px;
    position: fixed;
    bottom: 0;
    right: 0;
  }
} /*max-width:767px*/
.swiper-wrapper {
  transition-timing-function: linear;
}

/* 画像のサイズ調整 */
.swiper-slide img {
  height: auto;
  width: 100%;
}

.top_box01 {
  padding: 150px 20px;
  position: relative;
  overflow: hidden;
}
.top_box01::after {
  position: absolute;
  content: "";
  width: 600px;
  height: 402px;
  background: url(../images/top_bg_bar01.png) no-repeat;
  background-size: contain;
  left: 0;
  top: -100px;
  z-index: -1;
}
.top_box01 .top_box01_inner .top_copy_lead {
  display: table;
  margin: 0 auto 80px;
  padding: 0 40px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(2.2rem, 2vw, 2.6rem);
  text-align: center;
  border-radius: 50px;
  color: #fff;
  background: #333;
}
.top_box01 .top_box01_inner .top_box01_tit {
  line-height: 1.2;
  letter-spacing: 0.05em;
  margin-bottom: 80px;
  text-align: center;
}
.top_box01 .top_box01_inner .top_box01_tit .ja {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(2.2rem, 2vw, 2.6rem);
}
.top_box01 .top_box01_inner .top_box01_tit .ja span {
  color: #bd145a;
}
.top_box01 .top_box01_inner .top_box01_tit .en {
  font-family: "Poppins", sans-serif;
  color: #bd145a;
  font-size: clamp(6rem, 6vw, 8rem);
}
.top_box01 .top_box01_inner .top_box01_wrap {
  max-width: 1460px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 2%;
}
.top_box01 .top_box01_inner .top_box01_wrap .top_box01_content {
  padding: 80px 10%;
  background: #fff;
  border: 3px solid #bd145a;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
}
.top_box01 .top_box01_inner .top_box01_wrap .top_box01_content::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 100px;
  background: #bd145a;
  left: 0;
  right: 0;
  top: -50px;
  margin: 0 auto;
}
.top_box01 .top_box01_inner .top_box01_wrap .top_box01_content .en_txt {
  font-family: "Poppins", sans-serif;
  color: #bd145a;
  font-size: clamp(2.6rem, 3.8vw, 5.2rem);
  line-height: 1.2;
  margin-bottom: 10px;
}
.top_box01 .top_box01_inner .top_box01_wrap .top_box01_content .top_box01_content_tit {
  font-size: clamp(1.6rem, 2vw, 2.6rem);
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-bottom: 30px;
}
.top_box01 .top_box01_inner .top_box01_wrap .top_box01_content .top_box01_content_txt {
  text-align: left;
}
.top_box01 .top_box01_loop_box {
  position: absolute;
  z-index: -1;
  display: flex;
  width: 100%;
  overflow: hidden;
  left: 0;
  bottom: -50px;
}
.top_box01 .top_box01_loop_box .loop__item {
  flex: 0 0 auto;
  white-space: nowrap;
  font-size: 28rem;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  line-height: 1;
  color: #f7f7f8;
}
.top_box01 .top_box01_loop_box .loop__item:nth-child(odd) {
  animation: loop 20s -10s linear infinite;
}
.top_box01 .top_box01_loop_box .loop__item:nth-child(even) {
  animation: loop2 20s linear infinite;
}

@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@media screen and (max-width: 767px) {
  .top_box01 {
    padding: 100px 20px 60px;
  }
  .top_box01::after {
    width: 300px;
    height: 200px;
    background: url(../images/top_bg_bar01.png) no-repeat;
    background-size: contain;
  }
  .top_box01 .top_box01_inner .top_copy_lead {
    margin-bottom: 60px;
    font-size: clamp(1.8rem, 4vw, 2rem);
  }
  .top_box01 .top_box01_inner .top_box01_tit {
    margin-bottom: 60px;
  }
  .top_box01 .top_box01_inner .top_box01_tit .ja {
    font-size: clamp(1.8rem, 4vw, 2rem);
  }
  .top_box01 .top_box01_inner .top_box01_tit .en {
    font-size: clamp(4rem, 12vw, 6rem);
  }
  .top_box01 .top_box01_inner .top_box01_wrap {
    grid-template-columns: 100%;
    gap: 50px 0;
  }
  .top_box01 .top_box01_inner .top_box01_wrap .top_box01_content {
    padding: 50px 20px;
  }
  .top_box01 .top_box01_inner .top_box01_wrap .top_box01_content::after {
    height: 60px;
    top: -30px;
  }
  .top_box01 .top_box01_inner .top_box01_wrap .top_box01_content .en_txt {
    font-family: "Poppins", sans-serif;
    color: #bd145a;
    font-size: clamp(3rem, 8vw, 4rem);
  }
  .top_box01 .top_box01_loop_box {
    bottom: -10px;
  }
  .top_box01 .top_box01_loop_box .loop__item {
    font-size: 10rem;
  }
} /*max-width:767px*/
.top_box02 {
  position: relative;
  height: 500px;
}
.top_box02 .top_box02_inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(0);
}
.top_box02 .top_box02_inner::before {
  content: "";
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -100;
  background: url("../images/top_img01.jpg") center center no-repeat;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .top_box02 {
    height: 200px;
  }
} /*max-width:767px*/
.top_box03 {
  padding: 150px 20px;
  background: url(../images/top_bg01.jpg) top center no-repeat;
  background-size: cover;
}
.top_box03 .top_box03_inner {
  max-width: 1260px;
  margin: 0 auto;
}
.top_box03 .top_box03_inner .top_box03_tit {
  line-height: 1.2;
  letter-spacing: 0.05em;
  margin-bottom: 50px;
  text-align: center;
  color: #fff;
}
.top_box03 .top_box03_inner .top_box03_tit .ja {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(2.2rem, 2vw, 2.6rem);
}
.top_box03 .top_box03_inner .top_box03_tit .en {
  font-family: "Poppins", sans-serif;
  font-size: clamp(6rem, 6vw, 8rem);
}
.top_box03 .top_box03_inner .top_box03_wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 2%;
}
.top_box03 .top_box03_inner .top_box03_wrap article {
  background: #fff;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}
.top_box03 .top_box03_inner .top_box03_wrap article a {
  display: block;
  text-decoration: none;
}
.top_box03 .top_box03_inner .top_box03_wrap article a figure img {
  aspect-ratio: 8/5;
  object-fit: cover;
}
.top_box03 .top_box03_inner .top_box03_wrap article a .content {
  padding: 30px 6%;
}
.top_box03 .top_box03_inner .top_box03_wrap article a .content .cat {
  padding: 5px 12px;
  background: #bd145a;
  display: inline-block;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  margin-bottom: 20px;
}
.top_box03 .top_box03_inner .top_box03_wrap article a .content .tit {
  padding-left: 20px;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(1.8rem, 1.8vw, 2.2rem);
  position: relative;
}
.top_box03 .top_box03_inner .top_box03_wrap article a .content .tit::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background: #bd145a;
  border-radius: 50%;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
.top_box03 .top_box03_inner .top_box03_wrap article a .content .txt {
  color: #666;
}

@media screen and (max-width: 767px) {
  .top_box03 {
    padding: 60px 20px;
  }
  .top_box03 .top_box03_inner .top_box03_tit {
    margin-bottom: 30px;
  }
  .top_box03 .top_box03_inner .top_box03_tit .ja {
    font-size: clamp(1.8rem, 4.4vw, 2.2rem);
  }
  .top_box03 .top_box03_inner .top_box03_tit .en {
    font-size: clamp(4rem, 12vw, 6rem);
  }
  .top_box03 .top_box03_inner .top_box03_wrap {
    gap: 20px 0;
    grid-template-columns: 100%;
    margin-bottom: 30px;
  }
  .top_box03 .top_box03_inner .top_box03_wrap article a .content {
    padding: 20px;
  }
  .top_box03 .top_box03_inner .top_box03_wrap article a .content .cat {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  .top_box03 .top_box03_inner .top_box03_wrap article a .content .tit {
    padding-left: 15px;
    margin-bottom: 15px;
  }
  .top_box03 .top_box03_inner .top_box03_wrap article a .content .tit::after {
    width: 8px;
    height: 8px;
  }
  .top_box03 .top_box03_inner .top_box03_wrap article a .content .txt {
    line-height: 1.5;
  }
} /*max-width:767px*/
.top_box04 {
  padding: 150px 20px 100px 0;
  position: relative;
}
.top_box04::after {
  position: absolute;
  content: "";
  width: 500px;
  height: 402px;
  background: url(../images/top_bg_bar02.png) no-repeat;
  background-size: contain;
  right: 0;
  top: -120px;
  z-index: -1;
}
.top_box04 .top_box04_wrap {
  max-width: 1710px;
  display: grid;
  grid-template-columns: 57.72% 36.26%;
  justify-content: space-between;
  align-items: center;
}
.top_box04 .top_box04_wrap .top_box04_content .top_box04_tit {
  line-height: 1.2;
  letter-spacing: 0.05em;
  margin-bottom: 50px;
}
.top_box04 .top_box04_wrap .top_box04_content .top_box04_tit .ja {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(2.2rem, 2vw, 2.6rem);
  padding-left: 30px;
  position: relative;
}
.top_box04 .top_box04_wrap .top_box04_content .top_box04_tit .ja::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background: #bd145a;
  border-radius: 50%;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
.top_box04 .top_box04_wrap .top_box04_content .top_box04_tit .en {
  font-family: "Poppins", sans-serif;
  color: #bd145a;
  font-size: clamp(6rem, 6vw, 8rem);
}
.top_box04 .top_box04_wrap .top_box04_content .top_box04_txt {
  margin-bottom: 50px;
}
.top_box04 .top_box04_wrap .top_box04_content .btn_box a {
  margin: 0;
}

@media screen and (max-width: 1100px) {
  .top_box04 {
    padding: 150px 20px 100px;
  }
  .top_box04 .top_box04_wrap {
    grid-template-columns: 100%;
    gap: 30px 0;
  }
  .top_box04 .top_box04_wrap .top_box04_content .top_box04_tit {
    margin-bottom: 30px;
  }
  .top_box04 .top_box04_wrap .top_box04_content .top_box04_txt {
    margin-bottom: 30px;
  }
  .top_box04 .top_box04_wrap .top_box04_content .btn_box a {
    margin: 0 auto;
  }
} /*max-width:1100px*/
@media screen and (max-width: 767px) {
  .top_box04 {
    padding: 100px 20px 60px;
  }
  .top_box04::after {
    width: 250px;
    height: 200px;
    background: url(../images/top_bg_bar02.png) no-repeat;
    background-size: contain;
    top: -90px;
  }
  .top_box04 .top_box04_wrap .top_box04_content .top_box04_tit {
    margin-bottom: 30px;
  }
  .top_box04 .top_box04_wrap .top_box04_content .top_box04_tit .ja {
    font-size: clamp(1.8rem, 4.4vw, 2.2rem);
    padding-left: 20px;
  }
  .top_box04 .top_box04_wrap .top_box04_content .top_box04_tit .ja::after {
    width: 8px;
    height: 8px;
  }
  .top_box04 .top_box04_wrap .top_box04_content .top_box04_tit .en {
    font-size: clamp(4rem, 12vw, 6rem);
  }
  .top_box04 .top_box04_wrap .top_box04_content .top_box04_txt {
    margin-bottom: 30px;
  }
} /*max-width:767px*/
.top_box05 {
  padding: 150px 0 0 20px;
}
.top_box05 .top_box05_wrap {
  max-width: 1820px;
  margin-left: auto;
  position: relative;
}
.top_box05 .top_box05_wrap .top_box05_content {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(117.08deg, #bd145a 0%, #ff819c 99.44%);
  width: 57.14%;
  color: #fff;
  padding: 150px 10%;
  z-index: 10;
}
.top_box05 .top_box05_wrap .top_box05_content .top_box05_tit {
  line-height: 1.2;
  letter-spacing: 0.05em;
  margin-bottom: 50px;
}
.top_box05 .top_box05_wrap .top_box05_content .top_box05_tit .ja {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(2.2rem, 2vw, 2.6rem);
}
.top_box05 .top_box05_wrap .top_box05_content .top_box05_tit .en {
  font-family: "Poppins", sans-serif;
  font-size: clamp(6rem, 6vw, 8rem);
}
.top_box05 .top_box05_wrap .top_box05_content .top_box05_txt {
  margin-bottom: 50px;
}
.top_box05 .top_box05_wrap .top_box05_content .btn_box a {
  margin: 0;
}
.top_box05 .top_box05_wrap figure {
  width: 53.85%;
  margin-left: auto;
}

@media screen and (max-width: 1600px) {
  .top_box05 .top_box05_wrap .top_box05_content {
    padding: 80px 5%;
  }
  .top_box05 .top_box05_wrap .top_box05_content .top_box05_tit {
    margin-bottom: 30px;
  }
  .top_box05 .top_box05_wrap .top_box05_content .top_box05_txt {
    margin-bottom: 30px;
  }
} /*max-width:1600px*/
@media screen and (max-width: 1100px) {
  .top_box05 {
    padding: 0 20px;
  }
  .top_box05 .top_box05_wrap {
    display: flex;
    flex-direction: column;
    gap: 30px 0;
  }
  .top_box05 .top_box05_wrap .top_box05_content {
    position: static;
    transform: translateY(0);
    width: 100%;
    padding: 60px 10%;
    order: 2;
  }
  .top_box05 .top_box05_wrap .top_box05_content .btn_box a {
    margin: 0 auto;
  }
  .top_box05 .top_box05_wrap figure {
    order: 1;
    width: 100%;
  }
} /*max-width:1100px*/
@media screen and (max-width: 767px) {
  .top_box05 {
    padding: 0 20px;
  }
  .top_box05 .top_box05_wrap .top_box05_content {
    padding: 50px 20px;
  }
  .top_box05 .top_box05_wrap .top_box05_content .top_box05_tit {
    margin-bottom: 30px;
  }
  .top_box05 .top_box05_wrap .top_box05_content .top_box05_tit .ja {
    font-size: clamp(1.8rem, 4.4vw, 2.2rem);
  }
  .top_box05 .top_box05_wrap .top_box05_content .top_box05_tit .en {
    font-size: clamp(4rem, 12vw, 6rem);
  }
  .top_box05 .top_box05_wrap .top_box05_content .top_box05_txt {
    margin-bottom: 30px;
  }
} /*max-width:767px*/
.top_box06 {
  padding: 150px 20px 0;
}
.top_box06 .top_box06_inner {
  max-width: 1690px;
  background: #eee;
  border-radius: 0 50px 0 50px;
  margin: 0 auto;
  padding: 100px 20px;
}
.top_box06 .top_box06_inner .top_box06_tit {
  line-height: 1.2;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
  text-align: center;
}
.top_box06 .top_box06_inner .top_box06_tit .ja {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(2.2rem, 2vw, 2.6rem);
  color: #bd145a;
}
.top_box06 .top_box06_inner .top_box06_tit .en {
  font-family: "Poppins", sans-serif;
  font-size: clamp(6rem, 6vw, 8rem);
  display: inline-block;
}
.top_box06 .top_box06_inner .top_box06_tit .en::first-letter {
  color: #bd145a;
}
.top_box06 .top_box06_inner .top_box06_content {
  padding: 50px;
  background: #fff;
  max-width: 1100px;
  margin: 0 auto;
  margin-bottom: 50px;
}
.top_box06 .top_box06_inner .top_box06_content .article_wrap {
  height: 250px;
  overflow-y: scroll;
  padding-right: 20px;
}
.top_box06 .top_box06_inner .top_box06_content .article_wrap article {
  display: flex;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid #eee;
}
.top_box06 .top_box06_inner .top_box06_content .article_wrap article .time_wrap {
  display: flex;
  align-items: center;
  gap: 0 20px;
  margin-right: 20px;
}
.top_box06 .top_box06_inner .top_box06_content .article_wrap article .time {
  line-height: 1.2;
}
.top_box06 .top_box06_inner .top_box06_content .article_wrap article .time time {
  color: #999;
  font-size: 1.6rem;
  font-family: "Poppins", sans-serif;
}
.top_box06 .top_box06_inner .top_box06_content .article_wrap article .cat {
  line-height: 1;
}
.top_box06 .top_box06_inner .top_box06_content .article_wrap article .cat p {
  padding: 5px 12px;
  background: #bd145a;
  border-radius: 50px;
  font-size: 1.2rem;
  color: #fff;
  min-width: 75px;
  text-align: center;
}
.top_box06 .top_box06_inner .top_box06_content .article_wrap article .tit {
  line-height: 1.2;
}
.top_box06 .top_box06_inner .top_box06_content .article_wrap article .tit a {
  text-decoration: none;
  font-size: 1.6rem;
  text-decoration: none;
  position: relative;
  display: inline-block;
}
.top_box06 .top_box06_inner .top_box06_content .article_wrap article .tit a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #bd145a;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.8s;
}
.top_box06 .top_box06_inner .top_box06_content .article_wrap article .tit a:hover {
  opacity: 1;
}
.top_box06 .top_box06_inner .top_box06_content .article_wrap article .tit a:hover::after {
  transform: scale(1, 1);
}

@media screen and (max-width: 767px) {
  .top_box06 {
    padding: 60px 20px 0;
  }
  .top_box06 .top_box06_inner {
    border-radius: 0 30px 0 30px;
    padding: 60px 20px;
  }
  .top_box06 .top_box06_inner .top_box06_tit {
    margin-bottom: 20px;
  }
  .top_box06 .top_box06_inner .top_box06_tit .ja {
    font-size: clamp(1.8rem, 4.4vw, 2.2rem);
  }
  .top_box06 .top_box06_inner .top_box06_tit .en {
    font-size: clamp(4rem, 12vw, 6rem);
  }
  .top_box06 .top_box06_inner .top_box06_content {
    padding: 30px 20px;
    margin-bottom: 30px;
  }
  .top_box06 .top_box06_inner .top_box06_content .article_wrap {
    height: 200px;
    padding-right: 0;
  }
  .top_box06 .top_box06_inner .top_box06_content .article_wrap::-webkit-scrollbar {
    width: 1px;
  }
  .top_box06 .top_box06_inner .top_box06_content .article_wrap::-webkit-scrollbar-track {
    background: transparent;
  }
  .top_box06 .top_box06_inner .top_box06_content .article_wrap::-webkit-scrollbar-thumb {
    background: #999;
  }
  .top_box06 .top_box06_inner .top_box06_content .article_wrap article {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 0;
  }
  .top_box06 .top_box06_inner .top_box06_content .article_wrap article .time_wrap {
    gap: 0 10px;
    margin: 0 0 10px;
  }
  .top_box06 .top_box06_inner .top_box06_content .article_wrap article .time time {
    font-size: 1.4rem;
  }
  .top_box06 .top_box06_inner .top_box06_content .article_wrap article .cat {
    line-height: 1;
  }
  .top_box06 .top_box06_inner .top_box06_content .article_wrap article .cat p {
    font-size: 1.1rem;
    padding: 2px 10px;
    min-width: auto;
  }
  .top_box06 .top_box06_inner .top_box06_content .article_wrap article .tit a {
    font-size: 1.4rem;
  }
} /*max-width:767px*/
.bottom_box {
  margin-top: 150px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 2px;
}
.bottom_box .bottom_box_content a {
  display: block;
  position: relative;
  overflow: hidden;
}
.bottom_box .bottom_box_content a .pic {
  height: 450px;
  object-fit: cover;
  transition: all 1s;
}
.bottom_box .bottom_box_content a .icon {
  position: absolute;
  width: 80px;
  border-top-left-radius: 15px;
  overflow: hidden;
  bottom: 0;
  right: 0;
}
.bottom_box .bottom_box_content a .bottom_box_tit {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  line-height: 1.2;
  color: #fff;
}
.bottom_box .bottom_box_content a .bottom_box_tit .en {
  font-family: "Poppins", sans-serif;
  font-size: clamp(6rem, 8vw, 10rem);
}
.bottom_box .bottom_box_content a .bottom_box_tit .ja {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(1.8rem, 2vw, 2.6rem);
}
.bottom_box .bottom_box_content a:hover {
  opacity: 1;
}
.bottom_box .bottom_box_content a:hover .pic {
  transform: scale(1.2);
}

@media screen and (max-width: 767px) {
  .bottom_box {
    margin-top: 80px;
    grid-template-columns: 100%;
  }
  .bottom_box .bottom_box_content a .pic {
    height: auto;
    min-height: 200px;
  }
  .bottom_box .bottom_box_content a .icon {
    width: 50px;
  }
  .bottom_box .bottom_box_content a .bottom_box_tit .en {
    font-size: clamp(3rem, 10vw, 5rem);
  }
  .bottom_box .bottom_box_content a .bottom_box_tit .ja {
    font-size: clamp(1.6rem, 5.2vw, 2.6rem);
  }
} /*max-width:767px*/
.corporate_box01 .corporate_box01_tit {
  text-align: center;
  margin-bottom: 50px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(2rem, 2vw, 2.8rem);
  letter-spacing: 0;
  padding: 0 20px;
}
.corporate_box01 .corporate_box01_tit span {
  color: #bd145a;
}
.corporate_box01 .corporate_box01_content {
  padding: 90px 20px 60px;
  background: url(../images/corporate_img01.jpg) top center no-repeat;
  background-size: cover;
  margin-bottom: 10px;
}
.corporate_box01 .corporate_box01_content:nth-of-type(2) {
  background: url(../images/corporate_img02.jpg) top center no-repeat;
  background-size: cover;
  padding: 110px 20px 70px;
}
.corporate_box01 .corporate_box01_content:nth-of-type(2) .txt_area {
  margin-left: auto;
}
.corporate_box01 .corporate_box01_content:nth-of-type(3) {
  background: url(../images/corporate_img03.jpg) top center no-repeat;
  background-size: cover;
  margin-bottom: 0;
}
.corporate_box01 .corporate_box01_content .txt_area {
  width: 380px;
  color: #fff;
}
.corporate_box01 .corporate_box01_content .txt_area .tit {
  position: relative;
  line-height: 1.2;
  margin-bottom: 30px;
  letter-spacing: 0.05em;
  z-index: 1;
}
.corporate_box01 .corporate_box01_content .txt_area .tit .en {
  position: absolute;
  left: -50px;
  top: -55px;
  font-family: "Poppins", sans-serif;
  z-index: -1;
  font-size: 10rem;
  color: rgba(255, 255, 255, 0.15);
}
.corporate_box01 .corporate_box01_content .txt_area .tit .ja {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 4.2rem;
  text-shadow: 2px 2px 0 #111;
}
.corporate_box01 .corporate_box01_content .txt_area .txt {
  font-size: 2rem;
}

@media screen and (max-width: 767px) {
  .corporate_box01 .corporate_box01_tit {
    margin-bottom: 30px;
    font-size: clamp(1.6rem, 4vw, 2rem);
  }
  .corporate_box01 .corporate_box01_content .txt_area {
    width: 100%;
  }
  .corporate_box01 .corporate_box01_content .txt_area .tit {
    margin-bottom: 20px;
  }
  .corporate_box01 .corporate_box01_content .txt_area .tit .en {
    left: -20px;
    top: -40px;
    font-size: 6rem;
  }
  .corporate_box01 .corporate_box01_content .txt_area .tit .ja {
    font-size: 2.8rem;
  }
  .corporate_box01 .corporate_box01_content .txt_area .txt {
    font-size: 1.6rem;
  }
} /*max-width:767px*/
.corporate_box02 {
  padding: 150px 20px 0;
  position: relative;
  overflow: hidden;
  margin-bottom: 150px;
}
.corporate_box02::after {
  position: absolute;
  content: "";
  width: 600px;
  height: 402px;
  background: url(../images/top_bg_bar01.png) no-repeat;
  background-size: contain;
  left: 0;
  top: -100px;
  z-index: -1;
}
.corporate_box02 .overview_table {
  margin-bottom: 50px;
}
.corporate_box02 .pic_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 2%;
}

@media screen and (max-width: 767px) {
  .corporate_box02 {
    padding: 100px 20px 0;
    margin-bottom: 60px;
  }
  .corporate_box02::after {
    width: 300px;
    height: 200px;
    background: url(../images/top_bg_bar01.png) no-repeat;
    background-size: contain;
  }
  .corporate_box02 .overview_table {
    margin-bottom: 30px;
  }
  .corporate_box02 .pic_list {
    grid-template-columns: 100%;
    gap: 10px 0;
  }
} /*max-width:767px*/
.corporate_box03 {
  margin-bottom: 150px;
  padding: 0 20px;
}
.corporate_box03 .content {
  padding: 30px 20px;
  text-align: center;
  border: 2px solid #bd145a;
  background: #fff8fb;
}
.corporate_box03 .content .txt {
  font-size: clamp(1.6rem, 1.5vw, 1.8rem);
}

@media screen and (max-width: 767px) {
  .corporate_box03 {
    margin-bottom: 60px;
  }
  .corporate_box03 .content {
    padding: 20px;
    text-align: justify;
  }
  .corporate_box03 .content .txt {
    font-size: 1.4rem;
  }
} /*max-width:767px*/
.corporate_box04 {
  margin-bottom: 150px;
  padding: 0 20px;
}

@media screen and (max-width: 767px) {
  .corporate_box04 {
    margin-bottom: 60px;
  }
} /*max-width:767px*/
.corporate_box05 {
  margin-bottom: 150px;
  padding: 0 20px;
}

@media screen and (max-width: 767px) {
  .corporate_box05 {
    margin-bottom: 60px;
  }
} /*max-width:767px*/
.corporate_box06 {
  background: #eee;
  padding: 150px 20px;
}
.corporate_box06 .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 2%;
  margin-bottom: 50px;
}
.corporate_box06 .list li {
  font-size: clamp(1.6rem, 1.6vw, 2rem);
  line-height: 1.2;
  padding: 10px 20px;
  background: #fff;
  border-left: 3px solid #bd145a;
}
.corporate_box06 .txt {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .corporate_box06 {
    margin-bottom: 60px;
    padding: 60px 20px;
  }
  .corporate_box06 .list {
    grid-template-columns: 100%;
    gap: 10px 0;
    margin-bottom: 30px;
  }
  .corporate_box06 .list li {
    font-size: 1.4rem;
    padding: 10px;
  }
} /*max-width:767px*/
.corporate_box07 {
  margin-bottom: 150px;
  padding: 0 20px;
}

@media screen and (max-width: 767px) {
  .corporate_box07 {
    margin-bottom: 60px;
  }
  .corporate_box07 .map iframe {
    height: 250px;
  }
} /*max-width:767px*/
.client_box01 {
  margin-bottom: 150px;
  padding: 0 20px;
}
.client_box01 .txt {
  text-align: center;
  margin-bottom: 120px;
}
.client_box01 .wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 4%;
}
.client_box01 .wrap .content {
  text-align: center;
  position: relative;
}
.client_box01 .wrap .content::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 50px;
  background: #bd145a;
  left: 0;
  right: 0;
  top: -70px;
  margin: 0 auto;
}
.client_box01 .wrap .content .content_tit {
  margin-bottom: 30px;
  font-size: clamp(1.6rem, 1.6vw, 2rem);
}

@media screen and (max-width: 767px) {
  .client_box01 {
    margin-bottom: 60px;
  }
  .client_box01 .txt {
    margin-bottom: 60px;
  }
  .client_box01 .wrap {
    grid-template-columns: 100%;
    gap: 60px 0;
  }
  .client_box01 .wrap .content::after {
    height: 30px;
    top: -35px;
  }
  .client_box01 .wrap .content .content_tit {
    margin-bottom: 20px;
    font-size: 1.4rem;
  }
} /*max-width:767px*/
.client_box02 {
  padding: 0 20px;
  margin-bottom: 150px;
}
.client_box02 .content {
  margin-bottom: 50px;
}
.client_box02 .content:last-of-type {
  margin-bottom: 0;
}
.client_box02 .content .tit {
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-bottom: 30px;
  padding: 15px 25px;
  color: #fff;
  background: linear-gradient(90deg, #bd145a 0%, #ff819c 100%);
  font-size: clamp(2.2rem, 2vw, 2.8rem);
}
.client_box02 .content .txt {
  text-align: center;
}
.client_box02 .content .list_area {
  background: #eee;
  padding: 40px 30px;
  margin-top: 40px;
}
.client_box02 .content figure {
  margin-top: 50px;
}
.client_box02 .content.reason_box .tit {
  position: relative;
}
.client_box02 .content.reason_box .tit::after {
  position: absolute;
  content: "Reason 01";
  font-size: 4rem;
  color: #bd145a;
  font-family: "Poppins", sans-serif;
  line-height: 1;
  left: 0;
  top: -32px;
  font-weight: 500;
  line-height: 1;
}
.client_box02 .content.reason_box:first-of-type {
  margin-bottom: 70px;
}
.client_box02 .content.reason_box:nth-of-type(2) .tit::after {
  content: "Reason 02";
}

@media screen and (max-width: 767px) {
  .client_box02 {
    margin-bottom: 60px;
  }
  .client_box02 .content {
    margin-bottom: 30px;
  }
  .client_box02 .content .tit {
    margin-bottom: 20px;
    padding: 10px 15px;
    font-size: clamp(2rem, 4.4vw, 2.2rem);
  }
  .client_box02 .content .txt {
    text-align: justify;
  }
  .client_box02 .content .list_area {
    padding: 30px 20px;
    margin-top: 20px;
  }
  .client_box02 .content figure {
    margin-top: 30px;
  }
  .client_box02 .content.reason_box .tit::after {
    font-size: 2rem;
    top: -16px;
  }
  .client_box02 .content.reason_box:first-of-type {
    margin-bottom: 40px;
  }
} /*max-width:767px*/
.client_box03 {
  padding: 150px 20px;
  background: url(../images/client_bg01.jpg) top center no-repeat;
  background-size: cover;
  margin-bottom: 150px;
}
.client_box03 .subhead01 {
  color: #fff;
}
.client_box03 .subhead01 .en::first-letter {
  color: #fff;
}
.client_box03 .subhead01 .ja {
  color: #fff;
}
.client_box03 .txt {
  text-align: center;
  color: #fff;
  font-size: clamp(1.6rem, 1.3vw, 1.8rem);
}

@media screen and (max-width: 767px) {
  .client_box03 {
    padding: 60px 20px;
    margin-bottom: 60px;
  }
  .client_box03 .txt {
    font-size: clamp(1.4rem, 3.2vw, 1.6rem);
  }
} /*max-width:767px*/
.client_box04 {
  padding: 0 20px;
}
.client_box04 .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: flex-start;
  gap: 0 4%;
  position: relative;
}
.client_box04 .wrap::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: #bd145a;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  margin: auto 0;
}
.client_box04 .wrap .content {
  border: 2px solid #bd145a;
  background: #fff8fb;
  padding: 50px 20px;
  min-height: 400px;
}
.client_box04 .wrap .content .en_txt {
  text-align: center;
  font-family: "Poppins", sans-serif;
  color: #bd145a;
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 2.4vw, 3.2rem);
}
.client_box04 .wrap .content figure {
  width: 100px;
  margin: 0 auto 20px;
}
.client_box04 .wrap .content .tit {
  font-size: clamp(1.8rem, 1.8vw, 2.2rem);
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-bottom: 20px;
}
.client_box04 .wrap .content .txt {
  font-size: 1.4rem;
}
.client_box04 .wrap .content .txt span {
  color: #bd145a;
}
.client_box04 .wrap .content:nth-of-type(2) {
  margin-top: 50px;
}
.client_box04 .wrap .content:nth-of-type(3) {
  margin-top: 100px;
}

@media screen and (max-width: 767px) {
  .client_box04 .wrap {
    grid-template-columns: 100%;
    gap: 10px 0;
    margin-bottom: 10px;
  }
  .client_box04 .wrap::after {
    content: none;
  }
  .client_box04 .wrap .content {
    padding: 30px 20px;
    min-height: auto;
  }
  .client_box04 .wrap .content .en_txt {
    margin-bottom: 0;
    font-size: clamp(2rem, 4.4vw, 2.2rem);
  }
  .client_box04 .wrap .content figure {
    margin: 0 auto;
  }
  .client_box04 .wrap .content .tit {
    font-size: clamp(1.6rem, 4vw, 2rem);
    margin-bottom: 15px;
  }
  .client_box04 .wrap .content:nth-of-type(2) {
    margin-top: 0;
  }
  .client_box04 .wrap .content:nth-of-type(3) {
    margin-top: 0;
  }
} /*max-width:767px*/
.staffing_box01 {
  padding: 0 20px;
}
.staffing_box01 .inner {
  margin-bottom: 150px;
}
.staffing_box01 .txt {
  font-size: clamp(1.6rem, 1.5vw, 1.8rem);
  text-align: center;
}

@media screen and (max-width: 767px) {
  .staffing_box01 .inner {
    margin-bottom: 60px;
  }
  .staffing_box01 .txt {
    font-size: 1.4rem;
    text-align: justify;
  }
} /*max-width:767px*/
.staffing_box02 {
  padding: 150px 20px;
  background: url(../images/staffing_bg.jpg) top center no-repeat;
  background-size: cover;
  margin-bottom: 150px;
}
.staffing_box02 .staffing_box02_inner .subhead01 {
  color: #fff;
}
.staffing_box02 .staffing_box02_inner .subhead01 .ja {
  color: #fff;
}
.staffing_box02 .staffing_box02_inner .subhead01 .en::first-letter {
  color: #fff;
}
.staffing_box02 .staffing_box02_inner .txt {
  text-align: center;
  color: #fff;
  margin-bottom: 100px;
  font-size: clamp(1.6rem, 1.5vw, 1.8rem);
}
.staffing_box02 .staffing_box02_inner .wrap {
  max-width: 1460px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 1.5%;
}
.staffing_box02 .staffing_box02_inner .wrap .content {
  border: 3px solid #bd145a;
  background: #fff;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  padding: 100px 8% 80px;
  text-align: center;
  position: relative;
}
.staffing_box02 .staffing_box02_inner .wrap .content::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 100px;
  background: #bd145a;
  left: 0;
  right: 0;
  top: -50px;
  margin: 0 auto;
}
.staffing_box02 .staffing_box02_inner .wrap .content dl {
  margin-bottom: 20px;
}
.staffing_box02 .staffing_box02_inner .wrap .content dl dt {
  line-height: 1.2;
  color: "Poppins", sans-serif;
  font-family: "Poppins", sans-serif;
  font-size: clamp(3.4rem, 4vw, 5.2rem);
  color: #bd145a;
}
.staffing_box02 .staffing_box02_inner .wrap .content dl dd {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(2.2rem, 2vw, 2.6rem);
}
.staffing_box02 .staffing_box02_inner .wrap .content .txt_area .txt01 {
  margin-bottom: 70px;
  position: relative;
}
.staffing_box02 .staffing_box02_inner .wrap .content .txt_area .txt01::after {
  position: absolute;
  bottom: -45px;
  right: 50%;
  transform: translateX(50%);
  content: "";
  border-right: 15px solid transparent;
  border-top: 20px solid #bd145a;
  border-left: 15px solid transparent;
}

@media screen and (max-width: 767px) {
  .staffing_box02 {
    padding: 60px 20px;
    margin-bottom: 60px;
  }
  .staffing_box02 .staffing_box02_inner .txt {
    text-align: justify;
    margin-bottom: 50px;
    font-size: 1.4rem;
  }
  .staffing_box02 .staffing_box02_inner .wrap {
    grid-template-columns: repeat(1, 1fr);
    gap: 50px 0;
  }
  .staffing_box02 .staffing_box02_inner .wrap .content {
    border: 2px solid #bd145a;
    padding: 50px 20px 40px;
  }
  .staffing_box02 .staffing_box02_inner .wrap .content::after {
    height: 60px;
    top: -30px;
  }
  .staffing_box02 .staffing_box02_inner .wrap .content dl dt {
    font-size: clamp(2.4rem, 6.4vw, 3.2rem);
  }
  .staffing_box02 .staffing_box02_inner .wrap .content dl dd {
    font-size: clamp(2rem, 4.4vw, 2.2rem);
  }
  .staffing_box02 .staffing_box02_inner .wrap .content .txt_area .txt01 {
    margin-bottom: 40px;
  }
  .staffing_box02 .staffing_box02_inner .wrap .content .txt_area .txt01::after {
    bottom: -30px;
  }
} /*max-width:767px*/
.staffing_box03 {
  margin-bottom: 150px;
}
.staffing_box03 .txt {
  text-align: center;
  margin-bottom: 80px;
  font-size: clamp(1.6rem, 1.5vw, 1.8rem);
  padding: 0 20px;
}
.staffing_box03 .content {
  padding-right: 20px;
  margin-bottom: 50px;
}
.staffing_box03 .content:last-of-type {
  margin-bottom: 0;
}
.staffing_box03 .content:nth-of-type(even) {
  padding: 0 0 0 20px;
}
.staffing_box03 .content:nth-of-type(even) .wrap {
  margin-left: auto;
  grid-template-columns: 39.18% 56.14%;
}
.staffing_box03 .content:nth-of-type(even) .wrap .txt_area {
  order: 1;
}
.staffing_box03 .content:nth-of-type(even) .wrap figure {
  order: 2;
}
.staffing_box03 .content .wrap {
  max-width: 1710px;
  display: grid;
  grid-template-columns: 56.14% 39.18%;
  justify-content: space-between;
  align-items: center;
}
.staffing_box03 .content .wrap .txt_area .tit {
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #bd145a;
  margin-bottom: 30px;
  font-size: clamp(2.4rem, 2.6vw, 3.2rem);
}
.staffing_box03 .content .wrap figure img {
  height: 350px;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .staffing_box03 {
    margin-bottom: 60px;
  }
  .staffing_box03 .txt {
    text-align: justify;
    margin-bottom: 50px;
    font-size: 1.4rem;
  }
  .staffing_box03 .content {
    padding: 0 20px;
    margin-bottom: 30px;
  }
  .staffing_box03 .content:nth-of-type(even) {
    padding: 0 20px;
  }
  .staffing_box03 .content:nth-of-type(even) .wrap {
    grid-template-columns: 100%;
  }
  .staffing_box03 .content:nth-of-type(even) .wrap .txt_area {
    order: 2;
  }
  .staffing_box03 .content:nth-of-type(even) .wrap figure {
    order: 1;
  }
  .staffing_box03 .content .wrap {
    grid-template-columns: 100%;
    gap: 20px 0;
  }
  .staffing_box03 .content .wrap .txt_area .tit {
    margin-bottom: 20px;
    font-size: clamp(2rem, 4.4vw, 2.4rem);
  }
  .staffing_box03 .content .wrap figure img {
    height: auto;
  }
} /*max-width:767px*/
.staffing_box04 {
  padding: 0 20px;
}
.staffing_box04 .staffing_box04_inner {
  max-width: 940px;
  margin: 0 auto;
}
.staffing_box04 .staffing_box04_inner .subhead02 {
  text-align: center;
  font-size: clamp(2rem, 2vw, 2.4rem);
  margin-bottom: 40px;
}
.staffing_box04 .staffing_box04_inner .wrap {
  max-width: 674px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 5%;
}
.staffing_box04 .staffing_box04_inner .wrap .content {
  text-align: center;
}
.staffing_box04 .staffing_box04_inner .wrap .content .txt {
  margin-bottom: 20px;
  font-size: clamp(1.4rem, 1.5vw, 1.8rem);
  line-height: 1.5;
}
.staffing_box04 .staffing_box04_inner .wrap .content .btn a {
  display: block;
  width: 280px;
  text-decoration: none;
  text-align: center;
  color: #fff;
  line-height: 50px;
  background: #bd145a;
  margin: 0 auto;
  font-size: 1.6rem;
  border-radius: 60px;
  position: relative;
}
.staffing_box04 .staffing_box04_inner .wrap .content .btn a::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 18px;
  background: url(../images/pdf_icon.svg) no-repeat;
  background-size: contain;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto 0;
}

@media screen and (max-width: 767px) {
  .staffing_box04 .staffing_box04_inner .subhead02 {
    font-size: clamp(1.8rem, 4.4vw, 2.2rem);
    margin-bottom: 30px;
  }
  .staffing_box04 .staffing_box04_inner .wrap {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px 0;
  }
  .staffing_box04 .staffing_box04_inner .wrap .content .txt {
    margin-bottom: 10px;
  }
} /*max-width:767px*/
.staffing_wrap {
  margin-bottom: 150px;
}
.staffing_wrap .top_box01_wrap {
  max-width: 1460px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 2%;
}
.staffing_wrap .top_box01_wrap .top_box01_content {
  padding: 80px 10%;
  background: #fff;
  border: 3px solid #bd145a;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
}
.staffing_wrap .top_box01_wrap .top_box01_content::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 100px;
  background: #bd145a;
  left: 0;
  right: 0;
  top: -50px;
  margin: 0 auto;
}
.staffing_wrap .top_box01_wrap .top_box01_content .en_txt {
  font-family: "Poppins", sans-serif;
  color: #bd145a;
  font-size: clamp(2.6rem, 3.8vw, 5.2rem);
  line-height: 1.2;
  margin-bottom: 10px;
}
.staffing_wrap .top_box01_wrap .top_box01_content .top_box01_content_tit {
  font-size: clamp(1.6rem, 2vw, 2.6rem);
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-bottom: 30px;
}
.staffing_wrap .top_box01_wrap .top_box01_content .top_box01_content_txt {
  text-align: left;
}

@media screen and (max-width: 767px) {
  .staffing_wrap {
    margin-bottom: 60px;
  }
  .staffing_wrap .top_box01_wrap {
    grid-template-columns: 100%;
    gap: 50px 0;
  }
  .staffing_wrap .top_box01_wrap .top_box01_content {
    padding: 50px 20px;
  }
  .staffing_wrap .top_box01_wrap .top_box01_content::after {
    height: 60px;
    top: -30px;
  }
  .staffing_wrap .top_box01_wrap .top_box01_content .en_txt {
    font-family: "Poppins", sans-serif;
    color: #bd145a;
    font-size: clamp(3rem, 8vw, 4rem);
  }
} /*max-width:767px*/
.introduction_box01 {
  padding: 0 20px;
  margin-bottom: 150px;
}
.introduction_box01 .txt {
  font-size: clamp(1.6rem, 1.5vw, 1.8rem);
  margin-bottom: 80px;
  text-align: center;
}
.introduction_box01 .content .subhead02 {
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .introduction_box01 {
    margin-bottom: 60px;
  }
  .introduction_box01 .txt {
    font-size: clamp(1.4rem, 3.6vw, 1.6rem);
    margin-bottom: 30px;
    text-align: justify;
  }
  .introduction_box01 .content .subhead02 {
    margin-bottom: 30px;
  }
} /*max-width:767px*/
.introduction_box02 {
  padding: 150px 20px;
  background: url(../images/introduction_bg.jpg) top center no-repeat;
  background-size: cover;
  color: #fff;
  margin-bottom: 150px;
}
.introduction_box02 .subhead01 .ja {
  color: #fff;
}
.introduction_box02 .subhead01 .en::first-letter {
  color: #fff;
}
.introduction_box02 .txt {
  font-size: clamp(1.6rem, 1.5vw, 1.8rem);
  text-align: center;
}

@media screen and (max-width: 767px) {
  .introduction_box02 {
    padding: 60px 20px;
    margin-bottom: 60px;
  }
  .introduction_box02 .txt {
    font-size: clamp(1.4rem, 3.2vw, 1.6rem);
    text-align: justify;
  }
} /*max-width:767px*/
.introduction_box03 {
  padding: 0 20px;
  margin-bottom: 150px;
}
.introduction_box03 .wrap .content {
  padding-left: 50px;
  position: relative;
  display: grid;
  grid-template-columns: 60.95% 33.33%;
  justify-content: space-between;
  margin-bottom: 50px;
}
.introduction_box03 .wrap .content::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background: #bd145a;
  left: 0;
  top: 5px;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
.introduction_box03 .wrap .content::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 90%;
  background: #bd145a;
  left: 9px;
  top: 40px;
}
.introduction_box03 .wrap .content:last-of-type {
  margin-bottom: 0;
}
.introduction_box03 .wrap .content .txt_area .tit {
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 0 20px;
  font-size: clamp(2rem, 2vw, 2.4rem);
}
.introduction_box03 .wrap .content .txt_area .tit span {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  background: #bd145a;
  font-size: clamp(1.6rem, 1.5vw, 1.8rem);
  color: #fff;
  width: 110px;
  line-height: 28px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .introduction_box03 {
    margin-bottom: 60px;
  }
  .introduction_box03 .wrap .content {
    padding: 0;
    grid-template-columns: 100%;
    gap: 20px 0;
    margin-bottom: 30px;
  }
  .introduction_box03 .wrap .content::after {
    content: none;
  }
  .introduction_box03 .wrap .content::before {
    content: none;
  }
  .introduction_box03 .wrap .content .txt_area .tit {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px 0;
    margin-bottom: 20px;
    font-size: clamp(2.2rem, 5.6vw, 2.8rem);
  }
  .introduction_box03 .wrap .content .txt_area .tit span {
    display: block;
    color: #fff;
    width: 90px;
    line-height: 20px;
    text-align: center;
  }
} /*max-width:767px*/
.introduction_box04 {
  padding: 0 20px;
}
.introduction_box04 .txt {
  padding: 50px 30px;
  background: #fff8fb;
  border: 2px solid #bd145a;
  text-align: center;
  font-size: clamp(1.4rem, 1.5vw, 1.8rem);
}

@media screen and (max-width: 767px) {
  .introduction_box04 .txt {
    padding: 30px 20px;
  }
} /*max-width:767px*/
/****************************************
お仕事をお探しの方
*****************************************/
.job-wrap {
  padding: 0 20px;
}
.job-wrap .job-wrap-inner {
  margin: 0 auto;
  max-width: 1260px;
}
.job-wrap .job-wrap-inner .job-cat {
  margin-top: 100px;
  margin-bottom: 100px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.job-wrap .job-wrap-inner .job-cat li:first-child, .job-wrap .job-wrap-inner .job-cat li:nth-child(2) {
  margin-right: 50px;
}
.job-wrap .job-wrap-inner .job-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 80px;
  gap: 2%;
}
.job-wrap .job-wrap-inner .job-content article {
  background: #fff;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}
.job-wrap .job-wrap-inner .job-content article a {
  text-decoration: none;
}
.job-wrap .job-wrap-inner .job-content article a .content {
  padding: 30px 6%;
}
.job-wrap .job-wrap-inner .job-content article a .content .cat {
  padding: 5px 12px;
  background: #bd145a;
  display: inline-block;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  margin-bottom: 20px;
}
.job-wrap .job-wrap-inner .job-content article a .content .tit {
  padding-left: 20px;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(1.8rem, 1.8vw, 2.2rem);
  position: relative;
}
.job-wrap .job-wrap-inner .job-content article a .content .tit:after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background: #bd145a;
  border-radius: 50%;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
.job-wrap .job-wrap-inner .job-content article a .content .txt {
  color: #666;
}

.job .job-wrap .job-wrap-inner .job-cat li:first-child {
  margin-right: 50px;
}
.job .job-wrap .job-wrap-inner .job-cat li:nth-child(2) {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .job-wrap .job-wrap-inner .job-cat {
    margin-top: 60px;
    margin-bottom: 60px;
  }
  .job-wrap .job-wrap-inner .job-cat li:first-child, .job-wrap .job-wrap-inner .job-cat li:nth-child(2) {
    margin-right: 20px;
  }
  .job-wrap .job-wrap-inner .job-cat li:nth-child(3) {
    margin-top: 20px;
  }
  .job-wrap .job-wrap-inner .job-cat li .btn_box a {
    width: 150px;
    line-height: 30px;
    font-size: 1.5rem;
  }
  .job-wrap .job-wrap-inner .job-content {
    gap: 20px 0;
    grid-template-columns: 100%;
    margin-bottom: 30px;
  }
  .job .job-wrap .job-wrap-inner .job-cat li:first-child {
    margin-right: 20px;
  }
}
/* 詳細 */
.single-jobinfo .jobinfo-box .jobinfo-ttl {
  font-size: 2.4rem;
}
.single-jobinfo .jobinfo-box .recommend-txt {
  font-size: 2rem;
}
.single-jobinfo .jobinfo-box figure {
  display: table;
  margin: 20px auto;
}
.single-jobinfo .jobinfo-box .btn_box {
  margin-top: 50px;
}

/* 求人お問い合わせ */
.jobinfo-ttl {
  font-size: 2.4rem;
}

@media screen and (max-width: 767px) {
  .jobinfo-ttl {
    font-size: 1.8rem;
  }
}
/****************************************
お知らせ
*****************************************/
.article-wrapper .article-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.article-wrapper .article-content article {
  width: 75%;
}
.article-wrapper .article-content article h2 {
  padding: 8px;
  display: block;
  border-top: 2px solid #bd145a;
  border-bottom: 1px dashed #bd145a;
  font-size: 2.4rem;
}
.article-wrapper .article-content article .single-info {
  padding: 8px;
  font-size: 1.5rem;
}
.article-wrapper .article-content article p {
  padding: 8px;
  font-size: 1.6rem;
}
.article-wrapper .article-content aside {
  width: 20%;
}
.article-wrapper .article-content aside h2 {
  font-size: 1.8rem;
  font-weight: bold;
}
.article-wrapper .article-content aside h2::first-letter {
  color: #bd145a;
}
.article-wrapper .article-content aside .article-cat-list {
  margin-bottom: 20px;
  font-size: 1.6rem;
}
.article-wrapper .article-content aside select {
  padding: 10px;
  border-radius: 8px;
  outline: none;
  border: 1px solid;
  width: 100%;
  border: 1px solid #ccc;
}

/* 一覧 */
.article-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid #eee;
  list-style-type: none;
}
.article-list li:first-child {
  padding-top: 0;
}
.article-list li time {
  margin-right: 20px;
}
.article-list li .cat {
  margin-right: 20px;
  padding: 5px 12px;
  background: #bd145a;
  border-radius: 50px;
  font-size: 1.2rem;
  color: #fff;
  min-width: 75px;
  line-height: 1;
  text-align: center;
}
.article-list li a {
  text-decoration: none;
}

/* 詳細 */
/* ページ送り */
.pagenation {
  margin-top: 20px;
  font-size: 1.6rem;
}
.pagenation a {
  text-decoration: none;
  color: #bd145a;
}

/****************************************
お問い合わせ
*****************************************/
.contact-wrapper, .entry-contact-wrapper {
  /* reCAPTCHA非表示 */
  /* Contact Form7 */
  /*
  .wpcf7 .inner { width: 90%; margin: 0 auto; padding: 10px 0 20px 0; font-weight: bold; }
  */
  /* 必須マーク */
  /* 任意マーク */
  /* 必須項目の入力欄を黄色にする */
  /*
  .wpcf7 input[type="submit"]:hover { background: #751e13; }
  */
  /* 訂正箇所わかりやすく */
}
.contact-wrapper .grecaptcha-badge, .entry-contact-wrapper .grecaptcha-badge {
  visibility: hidden;
}
.contact-wrapper .contact-table, .entry-contact-wrapper .contact-table {
  margin: 0 auto;
  padding: 20px;
  width: 100%;
  font-size: 16px;
  font-size: 1.6rem;
}
.contact-wrapper .contact-table,
.contact-wrapper .contact-table td,
.contact-wrapper .contact-table th, .entry-contact-wrapper .contact-table,
.entry-contact-wrapper .contact-table td,
.entry-contact-wrapper .contact-table th {
  border-collapse: collapse;
  text-align: center;
}
.contact-wrapper .contact-table th, .entry-contact-wrapper .contact-table th {
  width: 25%;
  padding: 30px 20px;
  font-size: 1.6rem;
  line-height: 1.2;
  text-align: left;
  font-weight: bold;
  vertical-align: middle;
  border-bottom: 1px solid #bd145a;
}
.contact-wrapper .contact-table td, .entry-contact-wrapper .contact-table td {
  width: 75%;
  padding: 30px 20px;
  font-size: 1.6rem;
  line-height: 1.2;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid #cccccc;
}
.contact-wrapper p.check-message, .entry-contact-wrapper p.check-message {
  margin-top: 20px;
  font-size: 1.6rem;
  text-align: center;
}
.contact-wrapper .wpcf7 input[type=text],
.contact-wrapper .wpcf7 input[type=email],
.contact-wrapper .wpcf7 input[type=url],
.contact-wrapper .wpcf7 textarea, .entry-contact-wrapper .wpcf7 input[type=text],
.entry-contact-wrapper .wpcf7 input[type=email],
.entry-contact-wrapper .wpcf7 input[type=url],
.entry-contact-wrapper .wpcf7 textarea {
  background-color: #fff;
  width: 100%;
  border: 1px solid #ddd;
  font-size: 1.6rem;
  padding: 1em;
  border-radius: 4px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1) inset;
  font-weight: normal !important;
}
.contact-wrapper .wpcf7 input[type=date], .entry-contact-wrapper .wpcf7 input[type=date] {
  background-color: #fff;
  border: 1px solid #ddd;
  font-size: 1.6rem;
  padding: 1em;
  border-radius: 4px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1) inset;
  font-weight: normal !important;
}
.contact-wrapper .wpcf7 input[type=text].age-cell, .entry-contact-wrapper .wpcf7 input[type=text].age-cell {
  width: 100px;
}
.contact-wrapper .wpcf7 input[type=text].p-postal-code, .entry-contact-wrapper .wpcf7 input[type=text].p-postal-code {
  width: 150px;
}
.contact-wrapper .wpcf7 input[type=submit], .entry-contact-wrapper .wpcf7 input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-align: center;
}
.contact-wrapper .wpcf7 input[type=submit], .entry-contact-wrapper .wpcf7 input[type=submit] {
  display: table;
  margin: 40px auto 0 auto;
  border-radius: 100px;
  border: 2px solid #bd145a;
  background: #ffffff;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  padding: 16px 48px;
  color: #bd145a;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.contact-wrapper .wpcf7 input[type=submit]:hover, .entry-contact-wrapper .wpcf7 input[type=submit]:hover {
  border: 3px solid #bd145a;
  background: #bd145a;
  -webkit-box-shadow: 0px 0px 10px #cccccc;
  box-shadow: 0px 0px 10px #cccccc;
  color: #fff;
}
.contact-wrapper .wpcf7 input[type=submit]:active, .entry-contact-wrapper .wpcf7 input[type=submit]:active { /*ボタンを押したとき*/
  -ms-transform: translateY(4px);
  -webkit-transform: translateY(4px);
  transform: translateY(4px); /*下に動く*/
  border-bottom: solid 3px #ffffff; /*線を消す*/
  outline: none;
}
.contact-wrapper input[disabled], .contact-wrapper button[disabled], .contact-wrapper .wpcf7-submit[disabled], .entry-contact-wrapper input[disabled], .entry-contact-wrapper button[disabled], .entry-contact-wrapper .wpcf7-submit[disabled] {
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;
  cursor: not-allowed;
  border: 2px solid #cccccc !important;
  box-shadow: none !important;
  background: #dddddd !important;
  color: #000000 !important;
}
.contact-wrapper input:not([disabled]),
.contact-wrapper button:not([disabled]),
.contact-wrapper .wpcf7-submit:not([disabled]), .entry-contact-wrapper input:not([disabled]),
.entry-contact-wrapper button:not([disabled]),
.entry-contact-wrapper .wpcf7-submit:not([disabled]) {
  cursor: pointer;
}
.contact-wrapper .must, .entry-contact-wrapper .must {
  color: #fff;
  margin-left: 10px;
  padding: 3px 6px;
  background: #bd145a;
  border-radius: 8px;
  font-size: 14px;
  font-size: 1.4rem;
}
.contact-wrapper .free, .entry-contact-wrapper .free {
  color: #fff;
  margin-left: 10px;
  padding: 3px 6px;
  background: #999999;
  border-radius: 8px;
  font-size: 14px;
  font-size: 1.4rem;
}
.contact-wrapper input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required, .contact-wrapper textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required, .entry-contact-wrapper input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required, .entry-contact-wrapper textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required {
  background: rgba(255, 255, 142, 0.3);
}
.contact-wrapper .wpcf7-response-output, .entry-contact-wrapper .wpcf7-response-output {
  margin: 0 !important;
  font-size: 16px !important;
  font-size: 1.6rem !important;
}
.contact-wrapper .wpcf7 span.red, .entry-contact-wrapper .wpcf7 span.red {
  color: #cc0000;
}
.contact-wrapper .cform tbody td, .entry-contact-wrapper .cform tbody td {
  border: none; /*border-bottom: 1px solid #ECF4FC;*/
  text-align: center;
}
.contact-wrapper .cform tbody th, .contact-wrapper .cform td, .entry-contact-wrapper .cform tbody th, .entry-contact-wrapper .cform td {
  padding: 10px 0px;
  /*border:1px solid #CCCCCC;*/
  vertical-align: middle;
  font-weight: normal;
  /*font-size: 100%;*/
  text-align: left;
}
.contact-wrapper .wpcf7 .wpcf7-not-valid, .entry-contact-wrapper .wpcf7 .wpcf7-not-valid {
  background: #F2DEDE;
}
.contact-wrapper .wpcf7 .wpcf7-response-output, .entry-contact-wrapper .wpcf7 .wpcf7-response-output {
  margin: 0px 0 20px 0;
  padding: 8px 35px 8px 14px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-size: 1.3rem;
  color: #DB4848;
}
.contact-wrapper .wpcf7 .wpcf7-validation-errors, .entry-contact-wrapper .wpcf7 .wpcf7-validation-errors {
  color: #B94A48;
  background-color: #F2DEDE;
  border: 1px solid #EED3D7;
  font-size: 13px;
  font-size: 1.3rem;
}
.contact-wrapper .wpcf7 .wpcf7-mail-sent-ok, .entry-contact-wrapper .wpcf7 .wpcf7-mail-sent-ok {
  color: #3A87AD;
  background-color: #D9EDF7;
  border: 1px solid #BCE8F1;
  font-size: 13px;
  font-size: 1.3rem;
}

.contact-thanks .btn_box, .entry-thanks .btn_box {
  margin-top: 50px;
}

@media screen and (max-width: 1019px) {
  .contact-wrapper, .entry-contact-wrapper {
    padding: 0 20px;
  }
  .contact-wrapper .contact-table, .entry-contact-wrapper .contact-table {
    width: 100%;
  }
  .contact-wrapper .contact-table th, .contact-wrapper .contact-table td, .entry-contact-wrapper .contact-table th, .entry-contact-wrapper .contact-table td {
    display: block;
    width: 100%;
  }
  .contact-wrapper .contact-table th, .entry-contact-wrapper .contact-table th {
    padding: 30px 0 0;
    border: none;
  }
  .contact-wrapper .contact-table td, .entry-contact-wrapper .contact-table td {
    padding: 30px 0;
  }
}
/****************************************
個人情報保護方針
*****************************************/
.privacy-policy dl {
  margin-top: 50px;
}
.privacy-policy dl dt {
  margin-bottom: 20px;
}
.privacy-policy dl dd {
  margin-bottom: 20px;
}
.privacy-policy dl dd ol li {
  margin-left: 1em;
  list-style-type: disc;
}
.privacy-policy dl dd ul li {
  margin-left: 1em;
  list-style-type: decimal;
}
.privacy-policy dl dd ul li ol li {
  list-style-type: disc;
}

/****************************************
404
*****************************************/
.notfound-wrapper .btn_box {
  margin-top: 50px;
}/*# sourceMappingURL=style.css.map */