@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Noto+Sans+JP:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap');
.service_wrap {
  display: flex;
  justify-content: space-between;
  gap: clamp(10px, 2vw, 30px);
}
.service_wrap .use_item {
  text-align: center;
  flex: 0 0 calc(25% - clamp(10px, 2vw, 30px));
}
.service_wrap .use_item .imgbox {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  background: #eee;
}
.service_wrap .use_item .imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* テキスト */
.service_wrap .use_item p {
  line-height: 1.8;
}
@media screen and (max-width:768px) {
  .service_wrap {
    flex-wrap: wrap;
    gap: 30px clamp(10px, 2vw, 30px);
  }
  .service_wrap .use_item {
    flex: 0 0 calc(50% - clamp(10px, 2vw, 30px));
  }
}
.flowbox .service_wrap {
  display: flex;
  justify-content: space-between;
  gap: clamp(10px, 2vw, 30px);
}
.flowbox .service_wrap .use_item {
  text-align: center;
  flex: 0 0 calc(25% - clamp(10px, 2vw, 30px));
}
/* 画像：四角・比率固定 */
.flowbox .service_wrap .use_item .imgbox {
  position: relative;
  width: 100%;
  aspect-ratio: 270 / 232; /* 見本っぽい横長 */
  border-radius: 0;
  overflow: visible;
  margin: 0 auto 12px;
  background: #eee;
}
.flowbox .service_wrap .use_item .imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* 左上の丸番号 */
body.on .flowbox .service_wrap .use_item .imgbox .step_num {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #333;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  line-height: 1;
     font-family: "Lato", sans-serif;
    font-size: 20px;
    
}
/* テキスト */
.flowbox .service_wrap .use_item p {
  line-height: 1.8;
}
.flowbox .service_wrap .use_item:nth-child(2) {
  animation-delay: .2s;
}
.flowbox .service_wrap .use_item:nth-child(3) {
  animation-delay: .4s;
}
.flowbox .service_wrap .use_item:nth-child(4) {
  animation-delay: .6s;
}
@media screen and (max-width:1080px) {
  .flowbox .service_wrap {
    flex-wrap: wrap;
    gap: 60px clamp(10px, 2vw, 30px);
  }
  .flowbox .service_wrap .use_item {
    flex: 0 0 calc(50% - clamp(10px, 2vw, 30px));
  }
  .flowbox .service_wrap .use_item:nth-child(3) {
    animation-delay: 0s;
  }
  .flowbox .service_wrap .use_item:nth-child(4) {
    animation-delay: .2s;
  }
}
@media screen and (max-width:576px) {
  .flowbox .service_wrap {
    flex-wrap: wrap;
    gap: 40px;
  }
  .flowbox .service_wrap .use_item {
    flex: 0 0 100%;
    max-width: 300px;
    margin: auto;
  }
  .flowbox .service_wrap .use_item:nth-child(2), .flowbox .service_wrap .use_item:nth-child(4) {
    animation-delay: 0s;
  }
}
.circle .boxwrap1 .rightbox {
  flex: 0 0 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.circle .boxwrap1 .imgbox {
  width: 100%;
  min-width: 200px;
  max-width: 300px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
}
.circle .boxwrap1 .imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}



@media (max-width: 768px) {
    .circle .boxwrap1 h2{
  font-size: clamp(18px, 2vw, 24px);
}
    
  .circle .boxwrap1 .leftbox {
    max-width: 500px;
  }
    
}
.worries_c .inner {
  max-width: 1280px;
  margin: 0 auto;
}
.worries_c .grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(12px, 2.2vw, 20px) clamp(18px, 3vw, 40px);
}
.worries_c .item {
  display: flex;
  align-items: center;
  gap: clamp(6px, 2.2vw, 18px);
}
.worries_c .icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.worries_c .icon i {
  color: #333;
}
.worries_c .text {
  margin: 0;
  line-height: 1.9;
  color: #333;
}
/* 1080以下は1列 */
@media screen and (max-width:1080px) {
  .worries_c .grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: auto;
  }
}
@media screen and (max-width:576px) {
  .worries_c .icon {
    width: 22px;
    height: 22px;
  }
  .worries_c .icon i {
    font-size: 10px;
  }
}
.pagetitle {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 320px;
  max-height: 640px;
  aspect-ratio: 2.25 / 1;
  display: flex;
  align-items: center;
  padding: clamp(30px, 6vw, 80px);
  overflow: hidden;
  color: #333;
}
body.gjs-dashed .pagetitle::after {
  display: none;
}
.pagetitle .titlebox1 {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
.pagetitle .titlebox1 p {
  color: #333;
}
.pagetitle .titlebox1 .title {
  color: #333;
}
.pagetitle .titlebox1 .title, .pagetitle .titlebox1 p {
  opacity: 0;
}
body.gjs-dashed .pagetitle .titlebox1 .title, body.gjs-dashed .pagetitle .titlebox1 p {
  opacity: 1;
}
.pagetitle .titlebox1 .title {
  animation-name: pagetitle2;
  animation-duration: 1.8s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
  animation-delay: 1.0s;
}
.pagetitle .titlebox1 .en {
  animation-name: pagetitle1;
  animation-duration: 1.8s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
  animation-delay: 0.4s;
}
@keyframes pagetitle1 {
  0% {
    opacity: 0;
    -ms-filter: blur(6px);
    filter: blur(6px);
    letter-spacing: -0.2rem;
  }
  100% {
    opacity: 1;
    -ms-filter: blur(0px);
    filter: blur(0px);
    letter-spacing: 0.1rem;
  }
}
@keyframes pagetitle2 {
  0% {
    opacity: 0;
    -ms-filter: blur(6px);
    filter: blur(6px);
    letter-spacing: -0.1rem;
  }
  100% {
    opacity: 1;
    -ms-filter: blur(0px);
    filter: blur(0px);
    letter-spacing: 0.3rem;
  }
}
@keyframes pagetitle3 {
  0% {
    opacity: 0;
    -ms-filter: blur(6px);
    filter: blur(6px);
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    -ms-filter: blur(0px);
    filter: blur(0px);
    transform: translateX(0px);
  }
}
.right {
  display: flex;
  justify-content: flex-end;
}
.pagetitle_f2 .imgbox {
  overflow: hidden;
}
.pagetitle_f2 .imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.recruit_wrap {
  color: #fff;
  position: relative;
}
.recruit_wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 46, 77, 0.4); /* ← 濃さ調整 */
  z-index: 1;
}
.recruit_wrap > * {
  position: relative;
  z-index: 2;
  text-align: center;
}
@media screen and (max-width: 1080px) {
  .recruit_wrap .txtbox p {
    text-align: left;
  }
}
.section07 {
  padding-top: 80px;
  padding-bottom: 80px;
}
.section07 .card_wrap {
  display: flex;
  gap: 40px;
  align-items: stretch;
}
.section07 .card_box {
  flex: 1;
  background: #fff;
  border-radius: 6px;
}
.section07 .card_box a {
  display: block;
  text-align: center;
  padding: 60px 20px;
  text-decoration: none;
  color: #333;
}
.section07 .icon {
  margin-bottom: 10px;
}
.section07 .icon i {
  font-size: 26px;
}
.section07 .card_box {
  flex: 1;
  background: #fff;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  transition: .3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
}
/* hoverで少し浮く */
.section07 .card_box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, .08);
}
/* 下ライン */
.section07 .card_box::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: #333;
  transform: translateX(-50%);
  transition: .3s;
}
/* hoverライン */
.section07 .card_box:hover::after {
  width: 100%;
}
/* アイコン */
.section07 .icon i {
  font-size: 26px;
  transition: .3s;
}
/* アイコン拡大 */
.section07 .card_box:hover .icon i {
  transform: scale(1.3);
}
@media screen and (max-width:768px) {
  .section07 .card_wrap {
    flex-direction: column;
    gap: 20px;
  }
}
.section08 {
  padding-top: 50px;
  padding-bottom: 50px;
  background: #F4F5F7;
}
.section08 .link_grid {
  display: flex;
  gap: 24px;
  align-items: stretch;
}
.section08 .link_item {
  width: calc(25% - 18px);
}
.section08 .link_item a {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid #eee;
  text-decoration: none;
  color: #333;
  transition: .3s;
  box-shadow: 0 4px 8px rgba(0, 0, 0, .08);
}
.section08 .link_item a:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, .06);
}
.section08 .imgbox {
  width: 72px;
  height: 48px;
  overflow: hidden;
  flex: 0 0 auto;
}
.section08 .imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: .4s;
}
.section08 .link_item a:hover .imgbox img {
  transform: scale(1.08);
}
.section08 .txtbox {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.section08 .txtbox p {
  margin: 0;
  line-height: 1;
}
.section08 .txtbox .en {
  font-size: 0.8em;
}
@media screen and (max-width:1280px) {
  .section08 .link_grid {
    flex-wrap: wrap;
  }
  .section08 .link_item {
    width: calc(50% - 12px);
  }
}
@media screen and (max-width:768px) {
  .section08 .link_grid {
    flex-direction: column;
  }
  .section08 .link_item {
    width: 100%;
  }
}
.footer_b {
  align-items: flex-start;
}
.footer_b .rightbox {
  align-items: flex-start;
}
.footer_b .rightbox .title p {
  margin-bottom: 20px;
  font-family: "Lato", sans-serif;
  font-size: 20px;
}
.footer_b .rightbox .item p {
  font-weight: 300;
}
@media screen and (max-width:1080px) {
  .footer_b {
    align-items: center;
    flex-direction: column;
    gap: 60px;
  }
  .footer_b .rightbox {
    display: flex;
  }
}
@media screen and (max-width:768px) {
  .footer_b .rightbox {
    display: none;
  }
}
.title1 {
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
  justify-content: flex-start;
}
/* 01 */
.title1 .num {
  position: relative;
  padding-right: 16px;
  margin: 0;
}
/* 縦線 */
.title1 .num::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 60%;
  background: #333;
}
/* タイトル */
.title1 .default_title2 {
  margin: 0;
}
.newstop_b .webgene-blog .webgene-item a .date {
  width: 120px;
}
.newstop_b .webgene-blog .webgene-item a .catelabel {
  border: #7491B9 solid 1px;
  color: #7491B9;
  padding: 2px 5px;
}
.newstop_b .webgene-blog .webgene-item a h3 {
  color: #373B3E;
}
.use_area .use_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 4vw, 40px);
}
.use_area .use_item {
  position: relative;
}
.use_area .imgbox {
  width: clamp(140px, 18vw, 240px);
  height: clamp(140px, 18vw, 240px);
  border-radius: 50%;
  overflow: hidden;
}
.use_area .imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.6) contrast(.9);
}
.use_area .use_item p {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  letter-spacing: .2em;
}
.use_area .use_center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.use_area .use_center p {
  letter-spacing: .2em;
}
.topline {
  position: relative;
  padding-top: 20px;
}
.topline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #222;
}
.entitle0 {
  font-family: "Lato", "Noto Sans JP", "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Sawarabi Mincho", "serif";
  font-size: clamp(40px, 4vw, 72px);
  letter-spacing: 0.2rem;
}
.entitle1 {
  font-family: "Lato", "Noto Sans JP", "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Sawarabi Mincho", "serif";
  font-size: clamp(24px, 3vw, 42px);
  letter-spacing: 0.2rem;
}
.entitle2 {
  font-family: "Lato", "Noto Sans JP", "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Sawarabi Mincho", "serif";
  font-size: clamp(24px, 3vw, 28px);
  letter-spacing: 0.1rem;
}
.fontlato {
  font-family: "Lato", "Noto Sans JP", "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Sawarabi Mincho", "serif";
}
.fontmincho {
  font-family: "Zen Old Mincho", "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Sawarabi Mincho", "serif";
}
.fontnoto {
  "Noto Sans JP", "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Sawarabi Mincho", "serif" !important;
}
.lineheight22 {
  line-height: 2.2;
  letter-spacing: 0.08em;
  font-weight: 400;
}
.default_title1 {
  font-size: clamp(28px, 4vw, 32px);
}
.default_title2 {
  font-size: clamp(24px, 3vw, 28px);
}
.default_title3 {
  font-size: clamp(17px, 1.8vw, 22px);
}
.default_title4 {
  font-size: clamp(22px, 2.8vw, 28px);
}
.default_txt1 {
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 2;
}
.default_txt2 {
  font-size: clamp(12px, 1.2vw, 14px);
  line-height: 2;
}
.default_txt3 {
  font-size: clamp(15px, 1.6vw, 18px);
}
.default_txt4 {
  font-size: clamp(16px, 2.0vw, 20px);
}
.color1 {
  color: #7E7E7E;
}
.color2 {
  color: #73663C;
}
.color3 {
  color: #AF818E;
}
.color4 {
  color: #9084AA;
}
.bg1 {
  background: #E9EBEF;
}
.bg2 {
  background: #0C1020;
}
.bg3 {
  background: #AF818E;
}
.txtwhite {
  color: #fff;
}
.boxwrap1 {
  gap: clamp(20px, 4vw, 90px);
  flex-wrap: nowrap;
  max-width: 1280px;
}
.boxwrap1 .rightbox {
  flex: 0 0 50%;
}
.boxwrap1 .leftbox {
  flex: 1;
}
.boxwrap1 .morebox {
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .boxwrap1 {
    flex-direction: column;
  }
  .boxwrap2 .leftbox, .boxwrap2 .rightbox {
    flex: none;
    width: 100%;
  }
  .txt-center {
    text-align: left;
  }
}
.twocolumn {
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(32px, 5vw, 60px);
  max-width: 1280px;
  margin: auto;
  align-items: flex-start;
}
.twocolumn .boxwrap1 {
  width: calc((100% - clamp(32px, 5vw, 60px)) / 2);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0;
}
.twocolumn .boxwrap1 .rightbox {
  width: 100%;
}
.twocolumn .boxwrap1 .imgbox {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #eef1f5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media screen and (max-width:768px) {
  .twocolumn {
    flex-direction: column;
  }
  .twocolumn .boxwrap1 {
    width: 100%;
  }
}
.titlebox1 {
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
}
.more a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  text-decoration: none;
  transition: .3s ease;
  font-family: "Lato", "Noto Sans JP", "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Sawarabi Mincho", "serif";
}
.more p {
  margin: 0;
  font-size: 16px;
  letter-spacing: 0.15em;
  color: #fff;
}
.more2 a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid #333333;
  backdrop-filter: blur(2px);
  color: #fff;
  text-decoration: none;
  transition: .3s ease;
  font-family: "Lato", "Noto Sans JP", "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Sawarabi Mincho", "serif";
}
.more2 p {
  margin: 0;
  font-size: 16px;
  letter-spacing: 0.15em;
  color: #333333;
  font-weight: 400;
}
.more2b a {
  border: 1px solid #fff;
  background: #333;
}
.more2b p {
  color: #fff;
}
.main-wrap {
  position: relative;
  overflow: hidden;
}
.header_n {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 25px clamp(16px, 4vw, 30px);
  justify-content: space-between;
  z-index: 99;
  flex-wrap: nowrap;
}
.header_n.on {
  mix-blend-mode: difference;
}
.header_n .logo {
  max-width: 220px;
}
.header_n .head_nav {
  justify-content: space-between;
  flex-wrap: nowrap;
}
.header_n .head_nav .head_menu .ul .li a p, .header_n .morebox p {
  font-family: "Lato", "Noto Sans JP", "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Sawarabi Mincho", "serif";
  font-size: clamp(14px, 1.6vw, 16px);
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.1rem;
}
.header_n .head_nav .more a {
  padding-top: 13px;
}
.header_n .menu-bt {
  text-align: center;
  cursor: pointer;
  position: relative;
}
.header_n .menu-bt p {
  font-family: "Lato", "Noto Sans JP", "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Sawarabi Mincho", "serif";
  font-size: 15px;
  color: #fff;
  line-height: 1;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: ease 0.3s;
  pointer-events: none;
}
.header_n .menu-bt p.close_txt {
  opacity: 0;
}
.header_n .menu-bt .active p.open_txt {
  opacity: 0;
}
.header_n .menu-bt .active p.close_txt {
  opacity: 1;
}
.header_n .menu-bt .line {
  position: relative;
  width: 32px;
  height: 16px;
}
.header_n .menu-bt .line div {
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  background-color: #FFFFFF;
  transition: ease 0.3s;
}
.header_n .menu-bt .line div:nth-of-type(1) {
  top: 0;
}
.header_n .menu-bt .line div:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
.header_n .menu-bt .line div:nth-of-type(3) {
  bottom: 0;
}
.header_n .menu-bt.active .line div:nth-of-type(1) {
  width: 90%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.header_n .menu-bt.active .line div:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%) translateX(50%);
  opacity: 0;
}
.header_n .menu-bt.active .line div:nth-of-type(3) {
  width: 90%;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 50%) rotate(-45deg);
}
.header_n .head_nav .head_menu {
  display: block;
}
.header_n .head_nav .head_menu .ul {
  gap: clamp(20px, 4vw, 30px);
}
/* ナビリンク */
.header_n .head_nav .head_menu .ul .li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  text-decoration: none;
}
/* 英語 */
.header_n .head_nav .head_menu .ul .li a p.en {
  letter-spacing: 0.18em;
  line-height: 1;
  white-space: nowrap;
  transition: .3s;
}
/* hover 文字 */
.header_n .head_nav .head_menu .ul .li a:hover p.en {
  transform: translateY(-3px);
  opacity: .85;
}
/* 下ライン */
.header_n .head_nav .head_menu .ul .li a::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #fff;
  transform: translateX(-50%);
  transition: .3s;
}
/* hoverライン */
.header_n .head_nav .head_menu .ul .li a:hover::after {
  width: 70%;
}
.morebox {
  gap: clamp(16px, 4vw, 20px);
}
.header_n .rightbox {
  flex-wrap: nowrap;
  gap: clamp(16px, 4vw, 20px);
}
.header_n .head_nav .head_menu .ul .li a p, .header_n .morebox p {
  color: #333;
}
/* ナビ下線 */
.header_n .head_nav .head_menu .ul .li a::after {
  background: #333;
}
/* ハンバーガー線 */
.header_n .menu-bt .line div {
  background: #333;
}
/* MENU文字 */
.header_n .menu-bt p {
  color: #333;
}
.header_n .morebox .more a {
  border: 1px solid #333;
}
.header_n .morebox .more:last-child a {
  background: #333;
  border-color: #333;
}
.header_n .morebox .more:last-child p {
  color: #fff;
}
.header_n .logo1 {
  display: none;
}
.menu-wrap {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(34, 88, 158, 0.75);
  z-index: 98;
}
.menu-wrap > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  padding: 100px 20px 50px;
}
.menu-wrap .menuwarap_box {
  gap: 60px;
  width: 90%;
  max-width: 1000px;
}
.menu-wrap .ul {
  justify-content: center;
  align-items: stretch;
  gap: 30px 10px;
}
.menu-wrap .ul .li {
  width: calc(100% / 3 - 20px / 3);
}
.menu-wrap .ul .li a {
  position: relative;
  display: block;
  padding: 10px 30px;
  background-color: rgba(25, 30, 43, 0.50);
}
.menu-wrap .ul .li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition: ease 0.3s;
  width: 8px;
  height: 10px;
  background-image: url("../img//arrow1.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  z-index: 2;
}
.menu-wrap .ul .li a:hover::after {
  transform: translateY(-50%) translateX(3px);
}
.menu-wrap .ul .li p {
  font-family: "Lato", "Noto Sans JP", "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Sawarabi Mincho", "serif";
  color: #fff;
  text-align: center;
}
.menu-wrap .ul .li p.en {
  font-size: clamp(16px, 2.0vw, 20px);
}
.menu-wrap .ul .li p.jp {
  font-size: clamp(12px, 1.2vw, 14px);
}
.menu-wrap .morebox {
  gap: 20px 30px;
}
.menu-wrap .morebox a {
  width: 280px;
}
.menu-wrap .snsbox {
  gap: 20px 30px;
}
.snsbox a i {
  font-size: 30px;
  color: #fff;
  margin-right: 15px;
  transition: .3s;
}
.snsbox a .fa-line {
  font-size: 35px;
}
.snsbox a:hover {
  opacity: .7;
}
/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px) {
  /* ---------- header_n ---------- */
  .header_n .head_nav .head_menu {
    display: none !important;
  }
}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px) {}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px) {
  .header_n .rightbox .morebox {
    display: none !important;
  }
  .menu-wrap .ul .li {
    width: calc(100% / 2 - 10px / 2);
  }
  .menu-wrap .ul {
    gap: 20px 10px;
  }
}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px) {
  /* ---------- header_n_j ---------- */
  .header_n {
    padding: 15px 20px;
  }
  .header_n .head_nav .more {
    display: none;
  }
  .header_n .logo {
    width: 50%;
  }
  .menu-wrap > div {
    padding: 80px 20px 30px;
  }
  .menu-wrap .menuwarap_box {
    gap: 30px;
    width: 100%;
    padding: 0px;
  }
  .menu-wrap .ul .li a {
    padding: 6px 10px;
    padding-left: 15px;
  }
  .menu-wrap .ul .li a::after {
    right: 10px;
    width: 6px;
    height: 8px;
  }
  .menu-wrap .ul .li p {
    text-align: left;
  }
  .menu-wrap .morebox {
    gap: 10px 20px;
  }
  .menu-wrap .morebox a {
    width: 240px;
  }
  .menu-wrap .snsbox {
    gap: 20px 30px;
  }
}
html {}
body {
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  background-color: #FAFAFA;
  color: #333333;
  font-weight: 300;
}
body .bg_img_wrap {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
body.on .bg_img_wrap .bg_img {
  display: none;
}
body .bg_img_wrap2 {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
body.on .bg_img_wrap2 > img {
  display: none;
}
a {
  display: inline-block;
  transition: ease 0.3s;
}
a:hover {
  opacity: 0.5;
}
a p, a, a i {
  color: #000000;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.font-black {
  font-weight: 900;
}
.mg_b_1 {
  margin-bottom: 150px;
}
.mg_b_2 {
  margin-bottom: 100px;
}
.mg_b_3 {
  margin-bottom: 80px;
}
.mg_b_4 {
  margin-bottom: 50px;
}
.mg_b_5 {
  margin-bottom: 30px;
}
@media screen and (max-width: 1080px) {
  .mg_b_1 {
    margin-bottom: 100px;
  }
  .mg_b_2 {
    margin-bottom: 80px;
  }
  .mg_b_3 {
    margin-bottom: 60px;
  }
  .mg_b_4 {
    margin-bottom: 40px;
  }
  .mg_b_5 {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 576px) {
  .mg_b_1 {
    margin-bottom: 80px;
  }
  .mg_b_2 {
    margin-bottom: 60px;
  }
  .mg_b_3 {
    margin-bottom: 50px;
  }
  .mg_b_4 {
    margin-bottom: 30px;
  }
  .mg_b_5 {
    margin-bottom: 20px;
  }
}
.mg_t_1 {
  margin-top: 150px;
}
.mg_t_2 {
  margin-top: 100px;
}
.mg_t_3 {
  margin-top: 80px;
}
.mg_t_4 {
  margin-top: 50px;
}
.mg_t_5 {
  margin-top: 30px;
}
@media screen and (max-width: 1080px) {
  .mg_t_1 {
    margin-top: 100px;
  }
  .mg_t_2 {
    margin-top: 80px;
  }
  .mg_t_3 {
    margin-top: 60px;
  }
  .mg_t_4 {
    margin-top: 40px;
  }
  .mg_t_5 {
    margin-top: 30px;
  }
}
@media screen and (max-width: 576px) {
  .mg_t_1 {
    margin-top: 80px;
  }
  .mg_t_2 {
    margin-top: 60px;
  }
  .mg_t_3 {
    margin-top: 50px;
  }
  .mg_t_4 {
    margin-top: 30px;
  }
  .mg_t_5 {
    margin-top: 20px;
  }
}
.pd_wrap {
  padding: 150px 80px 0;
}
.pd_wrap_all {
  padding: 150px 80px 150px;
}
.pd_wrap_side {
  padding-left: 80px;
  padding-right: 80px;
}
.pd_wrap_t {
  padding-top: 150px;
}
.pd_wrap_b {
  padding-bottom: 150px;
}
.pd_wrap_tb {
  padding-top: 150px;
  padding-bottom: 150px;
}
@media screen and (max-width: 1280px) {
  .pd_wrap {
    padding: 150px 60px 0;
  }
  .pd_wrap_all {
    padding: 150px 60px 150px;
  }
  .pd_wrap_side {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media screen and (max-width: 768px) {
  .pd_wrap {
    padding: 100px 50px 0;
  }
  .pd_wrap_all {
    padding: 100px 50px 100px;
  }
  .pd_wrap_side {
    padding-left: 50px;
    padding-right: 50px;
  }
  .pd_wrap_t {
    padding-top: 100px;
  }
  .pd_wrap_b {
    padding-bottom: 100px;
  }
  .pd_wrap_tb {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 576px) {
  .pd_wrap {
    padding: 80px 20px 0;
  }
  .pd_wrap_all {
    padding: 80px 20px 80px;
  }
  .pd_wrap_side {
    padding-left: 20px;
    padding-right: 20px;
  }
  .pd_wrap_t {
    padding-top: 80px;
  }
  .pd_wrap_b {
    padding-bottom: 80px;
  }
  .pd_wrap_tb {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.cate_wrap > .cate {
  padding-top: 150px;
}
/* ---------- common ---------- */
/* ---------- header ---------- */
.header {}
/* ---------- footer ---------- */
/* ANIME */
.sc-anime.topin.on {
  opacity: 0;
  transform: translateY(-50px);
}
.sc-anime.topin.on.active {
  animation-name: topin;
  animation-duration: 1.2s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}
.sc-anime.bottomin.on {
  opacity: 0;
  transform: translateY(50px);
}
.sc-anime.bottomin.on.active {
  animation-name: bottomin;
  animation-duration: 1.2s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}
.sc-anime.leftin.on {
  opacity: 0;
  transform: translateX(-50px);
}
.sc-anime.leftin.on.active {
  animation-name: leftin;
  animation-duration: 1.2s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}
.sc-anime.rightin.on {
  opacity: 0;
  transform: translateX(50px);
}
.sc-anime.rightin.on.active {
  animation-name: rightin;
  animation-duration: 1.2s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}
.sc-anime.fadein.on {
  opacity: 0;
}
.sc-anime.fadein.on.active {
  animation-name: fadein;
  animation-duration: 1.2s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}
.sc-anime.blurin.on {
  opacity: 0;
  -ms-filter: blur(6px);
  filter: blur(6px);
}
.sc-anime.blurin.on.active {
  animation-name: blurin;
  animation-duration: 1.2s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}
.sc-anime.blurin2.on {
  opacity: 0;
  transform: translateY(50px);
  -ms-filter: blur(6px);
  filter: blur(6px);
}
.sc-anime.blurin2.on.active {
  animation-name: blurin2;
  animation-duration: 1.2s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}
@keyframes topin {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes bottomin {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes leftin {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes rightin {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes upin {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes blurin {
  0% {
    opacity: 0;
    -ms-filter: blur(6px);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    -ms-filter: blur(0px);
    filter: blur(0px);
  }
}
@keyframes blurin2 {
  0% {
    opacity: 0;
    transform: translateY(50px);
    -ms-filter: blur(6px);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
    -ms-filter: blur(0px);
    filter: blur(0px);
  }
}
/* color */
.txt-color-normal {
  color: #000000;
}
.txt-white {
  color: #ffffff;
}
.txt-red {
  color: red;
}
.txt-color1 {
  color: #FFE93C
}
.txt-color2 {
  color: #F1F1E9
}
.txt-color3 {
  color: #021745
}
.txt-color4 {
  color: #EBF5E5
}
.bg-white {
  background-color: #ffffff;
}
.bg-black {
  background-color: black
}
.bg-color1 {
  background-color: #FFE93C
}
.bg-color2 {
  background-color: #F1F1E9
}
.bg-color3 {
  background-color: #021745
}
.bg-color4 {
  background-color: #EBF5E5
}
.border-color1 {
  border-color: #FFE93C
}
.border-color2 {
  border-color: #F1F1E9
}
.border-color3 {
  border-color: #021745
}
.border-color4 {
  border-color: #EBF5E5
}
.hvr-txt-color-normal:hover {
  color: #000000;
}
.hvr-txt-white:hover {
  color: #ffffff;
}
.hvr-txt-red:hover {
  color: red;
}
.hvr-txt-color1:hover {
  color: #FFE93C
}
.hvr-txt-color2:hover {
  color: #F1F1E9
}
.hvr-txt-color3:hover {
  color: #021745
}
.hvr-txt-color4:hover {
  color: #EBF5E5
}
.hvr-bg-white:hover {
  background-color: #ffffff;
}
.hvr-bg-black:hover {
  background-color: black
}
.hvr-bg-color1:hover {
  background-color: #FFE93C
}
.hvr-bg-color2:hover {
  background-color: #F1F1E9
}
.hvr-bg-color3:hover {
  background-color: #021745
}
.hvr-bg-color4:hover {
  background-color: #EBF5E5
}
.hvr-border-color1:hover {
  border-color: #FFE93C
}
.hvr-border-color2:hover {
  border-color: #F1F1E9
}
.hvr-border-color3:hover {
  border-color: #021745
}
.hvr-border-color4:hover {
  border-color: #EBF5E5
}
/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px) {
  .pd_wrap {
    padding: 150px 60px 0;
  }
  .pd_wrap_all {
    padding: 150px 60px 150px;
  }
  .pd_wrap_side {
    padding-left: 60px;
    padding-right: 60px;
  }
  /* ---------- common ---------- */
  /* ---------- header ---------- */
  /* ---------- footer ---------- */
}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px) {
  /* ---------- common ---------- */
  /* ---------- header ---------- */
  /* ---------- footer ---------- */
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px) {
  .pd_wrap {
    padding: 100px 50px 0;
  }
  .pd_wrap_all {
    padding: 100px 50px 100px;
  }
  .pd_wrap_side {
    padding-left: 50px;
    padding-right: 50px;
  }
  .cate_wrap > .cate {
    padding-top: 100px;
  }
  /* ---------- common ---------- */
  /* ---------- header ---------- */
  /* ---------- footer ---------- */
}
/* ---------- スマートフォン ---------- */
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px) {
  .pd_wrap {
    padding: 80px 20px 0;
  }
  .pd_wrap_all {
    padding: 80px 20px 80px;
  }
  .pd_wrap_side {
    padding-left: 20px;
    padding-right: 20px;
  }
  .cate_wrap > .cate {
    padding-top: 80px;
  }
  /* ---------- common ---------- */
  /* ---------- header ---------- */
  /* ---------- footer ---------- */
}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px) {}