@charset "UTF-8";
/* @font-face でローカルフォントを優先 */
@font-face {
  font-family: "Local Noto Sans JP";
  src: local("Noto Sans JP");
}
body {
  font-family: "inter", "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: -0.5px;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

/*基本*/
:root {
  font-size: 19px;
  line-height: 1.8;
  --color-red: #ff0000;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-gray: #e8e2e2;
  --color-d-red: #cb0303;
  --color-blue: #003ce5;
  --color-yellow: #f7ea00;
  --maxwidth: 1600px;
  scroll-padding-top: 30px;
}
@media screen and (max-width: 1079px) {
  :root {
    scroll-padding-top: 10px;
  }
}

img {
  max-width: 600px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  height: auto;
}
@media screen and (min-width: 1080px) {
  img {
    width: auto;
    max-width: 100%;
    height: auto;
  }
}

a,
button {
  cursor: pointer;
}

.pd_sp {
  padding-left: 16px;
  padding-right: 16px;
}

.ta_c {
  text-align: center;
}

.fs_big {
  font-size: 140%;
  line-height: 1.5;
}

.fs_120 {
  font-size: 120%;
  line-height: 1.5;
}

.pc_only {
  display: none !important;
}
@media screen and (min-width: 1080px) {
  .pc_only {
    display: block !important;
  }
}

.pctab_only {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .pctab_only {
    display: block !important;
  }
}
@media screen and (max-width: 767px) {
  .pctab_only {
    display: none !important;
  }
}

.sp_only {
  display: block !important;
}
@media screen and (min-width:768px) and (max-width:1079px) {
  .sp_only {
    display: none !important;
  }
}
@media screen and (min-width: 1080px) {
  .sp_only {
    display: none !important;
  }
}

.sptab_only {
  display: none !important;
}
@media screen and (max-width: 1079px) {
  .sptab_only {
    display: block !important;
  }
}
@media screen and (min-width: 1080px) {
  .sptab_only {
    display: none !important;
  }
}

.bold {
  font-weight: 700;
  font-family: "Inter", "Noto Sans JP", sans-serif;
}

.normal {
  font-weight: 500;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

p {
  line-height: 1.8;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
}

.p2 {
  font-size: 22px;
  line-height: 180%;
}
@media screen and (max-width: 767px) {
  .p2 {
    font-size: 20px;
  }
}

.fc_yellow {
  color: var(--color-yellow);
}

.fc_red {
  color: var(--color-red);
}

.ul_yellow {
  background: linear-gradient(transparent 60%, var(--color-yellow) 60%);
  display: inline;
}

.note {
  font-size: 12px;
  line-height: 1.3;
}

.outline {
  color: #fff;
  text-shadow: 1px 1px 0 #000, -1px 1px 0 #000, 1px -1px 0 #000, -1px -1px 0 #000, 0px 1px 0 #000, 0px -1px 0 #000, 1px 0px 0 #000, -1px 0px 0 #000;
}

.btn_big,
.btn_small {
  background-color: var(--color-red);
  color: var(--color-white);
  padding: 24px 32px;
  border-radius: 8px;
  font-size: 32px;
  text-decoration: none;
  width: 800px;
  text-align: center;
  margin-inline: auto;
  line-height: 1.2;
  display: grid;
  align-items: center;
  grid-template-columns: auto 24px;
  justify-content: center;
  gap: 16px;
}
@media screen and (max-width: 1079px) {
  .btn_big,
  .btn_small {
    width: 90%;
    max-width: 600px;
    font-size: clamp(18px, 7dvw, 32px);
    padding: 16px;
    gap: 8px;
  }
}
.btn_big:after,
.btn_small:after {
  content: "";
  margin-right: 8px;
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url("../img/ico-right-arrow.svg") no-repeat center center;
  background-size: contain;
  margin-left: 8px;
}
.btn_small {
  font-size: 20px;
  width: auto;
  padding: 16px 32px;
}
@media screen and (max-width: 1079px) {
  .btn_small {
    padding: 16px;
  }
}

.section_margin {
  margin-top: 128px;
  margin-bottom: 128px;
}
@media screen and (min-width:768px) and (max-width:1079px) {
  .section_margin {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .section_margin {
    margin-top: 64px;
    margin-bottom: 64px;
  }
}

.section_padding {
  padding-top: 128px;
  padding-bottom: 128px;
}
@media screen and (min-width:768px) and (max-width:1079px) {
  .section_padding {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .section_padding {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

.section_1080 {
  max-width: 1080px;
  margin-inline: auto;
}

.mb_big {
  margin-bottom: 128px;
}
@media screen and (min-width:768px) and (max-width:1079px) {
  .mb_big {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .mb_big {
    margin-bottom: 64px;
  }
}

.mb_middle {
  margin-bottom: 56px;
}
@media screen and (min-width:768px) and (max-width:1079px) {
  .mb_middle {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 767px) {
  .mb_middle {
    margin-bottom: 24px;
  }
}

.mb_ssmall {
  margin-bottom: 16px;
}

.mb_small {
  margin-bottom: 32px;
}
@media screen and (min-width:768px) and (max-width:1079px) {
  .mb_small {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 767px) {
  .mb_small {
    margin-bottom: 20px;
  }
}

.no_wb {
  word-break: normal;
  overflow-wrap: normal;
}

.title {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.title .title_small {
  display: block;
  text-align: left;
  font-size: 36px;
}
@media screen and (max-width: 1079px) {
  .title .title_small {
    font-size: clamp(15px, 6dvw, 36px);
    text-align: center;
  }
}
@media screen and (max-width: 1079px) {
  .title {
    font-size: clamp(24px, 8dvw, 48px);
    margin-bottom: 24px;
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: 767px) {
  .title {
    margin-bottom: 20px;
  }
}
.title:before {
  content: "";
  display: block;
  width: 85px;
  height: 66px;
  background: url("../img/ico-title.svg") no-repeat center center;
  background-size: contain;
  margin-right: 10px;
}
@media screen and (max-width: 1079px) {
  .title:before {
    width: clamp(40px, 15dvw, 85px);
    height: clamp(31px, 12dvw, 66px);
  }
}

/********************************************************
ヘッダー
*********************************************************/
/* PC優先　デザイン */
/* --- ヘッダー全体の固定設定 --- */
.site-header {
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
}
@media screen and (max-width: 1079px) {
  .site-header {
    position: inherit;
    box-shadow: none;
  }
}
.site-header .logo {
  width: 257px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .site-header .logo {
    width: 200px;
  }
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  position: relative;
  max-width: var(--maxwidth);
  margin-inline: auto;
}

.sp-header-buttons {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.sp-header-buttons a {
  text-align: center;
  padding: 15px 5px;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.btn-mail-sp {
  background-color: var(--color-red);
}

.btn-mail-sp::before {
  content: "";
  margin-right: 5px;
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("../img/ico-mail.svg") no-repeat center center;
  background-size: contain;
}

.btn-tel-sp {
  background-color: var(--color-blue);
}

.btn-tel-sp::before {
  content: "";
  margin-right: 5px;
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("../img/ico-tel.svg") no-repeat center center;
  background-size: contain;
}

.tel-box {
  display: flex !important;
  align-items: center;
  font-size: 20px;
  gap: 10px;
  justify-content: end;
}
.tel-box span {
  display: block;
}
.tel-box .tel-icon {
  background: var(--color-blue);
  border-radius: 4px;
  padding: 10px;
  width: 37px;
  height: 37px;
}
.tel-box .tel-label {
  font-size: 20px;
}
.tel-box .tel-num {
  font-weight: bold;
  font-size: 37px;
  font-weight: 700;
}
.tel-box .tel-time {
  font-size: 12px;
}

/* --- ナビゲーション & ハンバーガー --- */
.hamburger-btn {
  display: block;
  position: relative;
  z-index: 1001;
  width: 30px;
  height: 24px;
  border: none;
  background: transparent;
  padding: 10px;
}
.hamburger-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-black);
  position: absolute;
  left: 0;
  transition: all 0.3s;
}
.hamburger-btn span:nth-child(1) {
  top: 0;
}
.hamburger-btn span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.hamburger-btn span:nth-child(3) {
  bottom: 0;
}
.hamburger-btn.is-active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.hamburger-btn.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger-btn.is-active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}
@media screen and (min-width: 1080px) {
  .hamburger-btn {
    display: none;
  }
}

.main-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 1000;
  transition: right 0.3s;
  padding-top: 30px;
}
.main-nav.is-active {
  right: 0;
}
.main-nav li {
  font-size: 16px;
}
.main-nav li > ul {
  padding-left: 32px;
}
.main-nav a {
  text-decoration: none;
  font-size: clamp(13px, 1.2dvw, 16px);
}
@media screen and (max-width: 1079px) {
  .main-nav a {
    border-bottom: 1px dotted var(--color-black);
    display: block;
    padding: 16px;
    font-size: 16px;
  }
}
@media screen and (max-width: 1079px) {
  .main-nav .main-nav-btn {
    margin: 16px;
  }
  .main-nav .main-nav-btn a {
    display: grid;
    grid-template-columns: 30px auto;
    background-color: var(--color-blue);
    color: var(--color-white);
    border-radius: 10px;
    justify-content: center;
    align-items: center;
    gap: 24px;
    height: 60px;
    padding: 0;
  }
  .main-nav .main-nav-btn img {
    width: auto;
    height: 40px;
  }
  .main-nav .main-nav-telspbtn {
    margin: 16px;
  }
  .main-nav .main-nav-telspbtn a {
    display: grid;
    grid-template-columns: 30px auto;
    background-color: var(--color-red);
    color: var(--color-white);
    border-radius: 10px;
    justify-content: center;
    align-items: center;
    gap: 24px;
    height: 60px;
  }
  .main-nav .main-nav-telspbtn img {
    width: auto;
    height: 30px;
  }
}

/* PC: 横並びメニュー */
/* --- PC: 横並びメニュー & ドロップダウン --- */
@media screen and (min-width: 1080px) {
  .main-nav {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    padding-top: 0;
  }
  .main-nav > ul {
    display: flex;
    gap: 20px;
    align-items: center;
    text-align: center;
  }
  .main-nav > ul > li {
    position: relative;
    margin-bottom: 0;
  }
  .main-nav > ul > li:hover {
    color: var(--color-red);
  }
  .main-nav > ul > li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .main-nav > ul > li > ul {
    position: absolute;
    top: 100%;
    left: 20%;
    transform: translateX(-50%) translateY(10px);
    width: 280px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    z-index: 100;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
  }
  .main-nav > ul > li > ul li {
    text-align: left;
    width: 100%;
  }
  .main-nav > ul > li > ul li a {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    color: var(--color-black);
    border-bottom: none;
    transition: background 0.2s;
  }
  .main-nav > ul > li > ul li a:hover {
    background-color: #f8f8f8;
    color: var(--color-red);
  }
  .main-nav {
    /* お問い合わせボタン */
  }
  .main-nav .main-nav-btn a {
    background-color: var(--color-red);
    color: var(--color-white);
    padding: 8px 16px;
    border-radius: 30px;
    display: flex;
    gap: 5px;
  }
}
/********************************************************
トップページ
*********************************************************/
.top_img_wrap {
  background-image: url(../img/top/pc-mainimg.jpg);
  background-image: url(../img/top/pc-mainimg.webp);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.top_img {
  margin-inline: auto;
  max-width: 1800px;
  color: var(--color-white);
  padding: 100px 32px 32px 32px;
  position: relative;
}
@media screen and (min-width:768px) and (max-width:1079px) {
  .top_img {
    padding: 100px 16px 80px 16px;
  }
}
@media screen and (max-width: 767px) {
  .top_img {
    margin: 0;
    padding: 100px 16px 80px 16px;
  }
}
.top_img p,
.top_img h1 {
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .top_img p,
  .top_img h1 {
    margin-bottom: 16px;
  }
}
.top_img .top_img_soku {
  background: var(--color-red);
  border-radius: 50%;
  height: 176px;
  width: 176px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 56px;
  line-height: 1.1;
}
@media screen and (max-width: 767px) {
  .top_img .top_img_soku {
    font-size: 32px;
    height: 100px;
    width: 100px;
  }
}
.top_img h1 {
  font-size: 69px;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .top_img h1 {
    font-size: 35px;
  }
}
.top_img h2 {
  font-size: 23px;
  display: block;
}
@media screen and (max-width: 767px) {
  .top_img h2 {
    font-size: 18px;
    margin-bottom: 8px;
  }
}
.top_img ul {
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .top_img ul {
    gap: 5px;
  }
}
.top_img li {
  border: 3px solid var(--color-red);
  color: var(--color-red);
  border-radius: 50px;
  display: inline-block;
  padding: 8px 32px;
  font-size: 21px;
  background-color: rgba(0, 0, 0, 0.5);
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .top_img li {
    padding: 8px;
    font-size: 18px;
    margin-bottom: 8px;
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
    display: flex;
  }
}
.top_img .top_chara {
  position: absolute;
  bottom: -30px;
  right: 10px;
  width: 421px;
  height: auto;
}
@media screen and (min-width: 1080px) and (max-width: 1300px) {
  .top_img .top_chara {
    width: 450px;
  }
}
@media screen and (max-width: 1079px) {
  .top_img .top_chara {
    position: absolute;
    bottom: -50px;
    right: 50%;
    transform: translateX(50%);
    width: clamp(0px, 90dvw, 400px);
  }
}

/* フォーム */
.cta {
  background-color: #daeaf8;
  padding: 48px;
  max-width: 1080px;
  margin: 48px auto 0 auto;
  display: flex;
  gap: 32px;
  position: relative;
}
@media screen and (max-width: 1079px) {
  .cta {
    padding: 16px 16px 42px 16px;
    display: block;
    margin: 60px 16px 0;
  }
}

.cta-inner1 {
  display: grid;
  grid-template-columns: 267px 1fr;
  align-items: center;
  height: 240px;
  width: 500px;
}
@media screen and (max-width: 1079px) {
  .cta-inner1 {
    width: auto;
    height: auto;
    grid-template-columns: 40dvw 1fr;
    align-items: center;
  }
  .cta-inner1 p {
    font-size: clamp(13px, 3dvw, 16px);
  }
}

.cta-inner1_title {
  background-color: var(--color-blue);
  color: #fff;
  padding: 16px;
  font-size: 64px;
  line-height: 1.3;
  text-align: center;
}
@media screen and (max-width: 1079px) {
  .cta-inner1_title {
    font-size: clamp(16px, 8dvw, 40px);
  }
}

.cta_woman {
  width: 270px;
  height: auto;
  position: absolute;
  bottom: 0px;
  left: 0px;
}
@media screen and (max-width: 1079px) {
  .cta_woman {
    position: static;
    width: clamp(100px, 40dvw, 200px);
  }
}

.cta_t2 span {
  display: block;
}
.cta_t2 {
  background-color: var(--color-red);
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--color-white);
  font-size: 29px;
  justify-content: center;
  grid-template-columns: 50px 1fr;
}
.cta_t2 img {
  width: 50px;
  height: auto;
}
@media screen and (max-width: 1079px) {
  .cta_t2 {
    font-size: clamp(18px, 5dvw, 32px);
  }
}

.top_form_wrap {
  width: 100%;
  background: var(--color-white);
  padding: 24px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.cta_triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
  border-top: 26px solid var(--color-red);
  border-bottom: 0;
  margin-inline: auto;
  margin-bottom: 10px;
}

.cta_radio-list li a {
  display: block;
  padding: 16px 8px;
  border: 2px solid var(--color-black);
  border-radius: 8px;
  text-align: center;
  font-size: 20px;
  color: var(--color-black);
  text-decoration: none;
  transition: all 0.3s;
  margin-bottom: 8px;
}
@media screen and (max-width: 1079px) {
  .cta_radio-list li a {
    font-size: 18px;
    padding: 12px 8px;
  }
}
.cta_radio-list li a .badge {
  background-color: var(--color-red);
  font-size: 90%;
  padding: 5px;
  color: var(--color-white);
  margin-left: 5px;
}
@media screen and (max-width: 1079px) {
  .cta_radio-list li a .badge {
    font-size: 14px;
  }
}

.cta_bottom {
  background-color: var(--color-blue);
  padding-top: 100px;
  margin-top: -50px;
  padding-bottom: 64px;
}
@media screen and (max-width: 1079px) {
  .cta_bottom {
    padding: 42px 16px 24px 16px;
    margin: 0px 16px 32px 16px;
  }
}

.cta_bottom_t {
  color: var(--color-white);
  font-size: 45px;
  text-align: center;
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cta_bottom_t:before {
  background: url(../img/cta_b_c.png) no-repeat center center;
  background-size: contain;
  content: "";
  display: block;
  width: 64px;
  height: 109px;
}
@media screen and (max-width: 1079px) {
  .cta_bottom_t {
    font-size: clamp(24px, 8dvw, 45px);
  }
  .cta_bottom_t:before {
    width: 40px;
    height: 68px;
  }
}

.cta_bottom_btn {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 50px;
}
.cta_bottom_btn li a {
  width: 450px;
  display: grid;
  text-align: center;
  height: 120px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 8px;
}
@media screen and (max-width: 1079px) {
  .cta_bottom_btn {
    display: block;
  }
  .cta_bottom_btn li:first-child {
    margin-bottom: 16px;
  }
  .cta_bottom_btn li a {
    width: clamp(100px, 95%, 600px);
    margin-inline: auto;
    height: 100px;
  }
}

.cta-btn-line {
  background: #2aa502;
  color: var(--color-white);
  font-size: 39px;
  text-decoration: none;
}
@media screen and (max-width: 1079px) {
  .cta-btn-line {
    font-size: clamp(18px, 7dvw, 39px);
  }
}

.cta-btn-tel {
  background: var(--color-white);
  color: var(--color-black);
  line-height: 1;
  display: flex;
  align-items: center;
}
.cta-btn-tel .cta_tel_num {
  font-size: 49px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  align-items: center;
}
@media screen and (max-width: 1079px) {
  .cta-btn-tel .cta_tel_num {
    grid-template-columns: 36px 1fr;
  }
}
.cta-btn-tel .cta_tel_num:before {
  background: url(../img/line-md--phone-loop.svg) no-repeat center center;
  background-size: contain;
  content: "";
  display: inline-block;
  width: 42px;
  height: 42px;
}
@media screen and (max-width: 1079px) {
  .cta-btn-tel .cta_tel_num {
    font-size: clamp(18px, 8dvw, 39px);
  }
  .cta-btn-tel .cta_tel_num:before {
    width: 36px;
    height: 36px;
  }
}
.cta-btn-tel .cta_tel_time {
  font-size: 20px;
}

/* ループフォーム（ページ下部） */
.cta_loop {
  background: #91ccff;
  padding-top: 128px;
}
@media screen and (max-width: 1079px) {
  .cta_loop {
    padding-top: 64px;
  }
}
.cta_loop .cta {
  margin: 0 auto;
}
@media screen and (max-width: 1079px) {
  .cta_loop .cta_bottom {
    margin: 0;
  }
}

.cta_loop_t {
  font-size: 49px;
  text-align: center;
}
@media screen and (max-width: 1079px) {
  .cta_loop_t {
    font-size: clamp(18px, 8dvw, 48px);
  }
}

/* 悩み */
.top_nayami {
  background: #43b1d4;
}

.top_nayami_in {
  max-width: 1080px;
  background-image: url("../img/top/AdobeStock_561671906.png");
  background-image: url("../img/top/AdobeStock_561671906.webp");
  background-repeat: no-repeat;
  background-position: left bottom;
  margin-inline: auto;
  padding: 64px 0;
  position: relative;
}
@media screen and (max-width: 1079px) {
  .top_nayami_in {
    background-position: calc(50% + 100px) bottom;
    padding: 64px 16px 260px 16px;
    background-size: auto 400px;
  }
}
@media screen and (min-width:768px) and (max-width:1079px) {
  .top_nayami_in {
    background-size: auto auto;
  }
}

.top_nayami_t {
  font-size: 63px;
  line-height: normal;
}
@media screen and (max-width: 1079px) {
  .top_nayami_t {
    font-size: clamp(24px, 11dvw, 48px);
    padding: 0 16px;
  }
}

.top_nayami_txt {
  margin-top: 40px;
}
.top_nayami_txt li {
  margin-bottom: 24px;
}
@media screen and (max-width: 1079px) {
  .top_nayami_txt {
    margin-top: 24px;
  }
  .top_nayami_txt li {
    margin-bottom: 16px;
    text-align: center;
  }
}

.top_nayami_txt li:first-child {
  margin-left: 400px;
}
@media screen and (max-width: 1079px) {
  .top_nayami_txt li:first-child {
    margin-left: 0;
  }
}

.top_nayami_txt li:nth-child(2) {
  margin-left: 500px;
}
@media screen and (max-width: 1079px) {
  .top_nayami_txt li:nth-child(2) {
    margin-left: 0;
  }
}

.top_nayami_txt li:nth-child(3) {
  margin-left: 450px;
}
@media screen and (max-width: 1079px) {
  .top_nayami_txt li:nth-child(3) {
    margin-left: 0;
  }
}

.top_nayami_txt li > span {
  border-radius: 32px;
  border: 3px solid #fff;
  background: rgba(2, 83, 113, 0.46);
  display: inline-block;
  padding: 16px 32px;
  color: var(--color-white);
  font-size: 29px;
}
.top_nayami_txt li > span .fc_yellow {
  font-size: 120%;
  display: block;
}
@media screen and (max-width: 1079px) {
  .top_nayami_txt li > span {
    font-size: clamp(14px, 5dvw, 29px);
    padding: 16px;
  }
}

.top_nayami2 {
  background-image: url(../img/top/bg1.png);
  background-image: url(../img/top/bg1.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 92px 16px;
}

.top_nayami2_t {
  font-size: 74px;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 32px;
}
@media screen and (max-width: 1079px) {
  .top_nayami2_t {
    font-size: clamp(24px, 12dvw, 60px);
  }
}

/* 強み */
.top_tuyomi {
  position: relative;
  max-width: 1440px;
  height: 1092px;
  margin-bottom: 32px;
  margin-inline: auto;
}
@media screen and (max-width: 1079px) {
  .top_tuyomi {
    height: auto;
  }
}

.top_tuyomi_img {
  position: absolute;
  left: 0;
}
@media screen and (max-width: 1079px) {
  .top_tuyomi_img {
    position: inherit;
  }
  .top_tuyomi_img img {
    width: 100dvw;
    max-width: 100dvw;
    height: 80dvw;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
  }
  .top_tuyomi_img {
    width: 100dvw;
  }
}
@media screen and (min-width:768px) and (max-width:1079px) {
  .top_tuyomi_img img {
    height: 500px;
  }
}

.tuyomi_list {
  position: relative;
  width: 1080px;
  margin-inline: auto;
}
@media screen and (max-width: 1079px) {
  .tuyomi_list {
    position: inherit;
    width: auto;
  }
}
.tuyomi_list ul {
  position: absolute;
  right: 0;
  margin: 48px 0;
}
@media screen and (max-width: 1079px) {
  .tuyomi_list ul {
    position: inherit;
    margin: -30px 16px 32px;
  }
}
.tuyomi_list li {
  border: 2px solid var(--color-d-red);
  width: 580px;
  background-color: var(--color-white);
  margin-bottom: 24px;
}
@media screen and (max-width: 1079px) {
  .tuyomi_list li {
    width: auto;
  }
}
.tuyomi_list li h3 {
  background-color: var(--color-d-red);
  color: var(--color-white);
  font-size: 42px;
  line-height: 1;
  text-align: center;
  padding: 16px;
}
@media screen and (max-width: 1079px) {
  .tuyomi_list li h3 {
    font-size: clamp(18px, 9dvw, 42px);
  }
}
.tuyomi_list li p {
  padding: 24px;
  line-height: 1.8;
}

/* ニュース */
.top_news {
  max-width: 800px;
  margin-inline: auto;
  width: 90dvw;
  margin-bottom: 60px;
  max-height: 200px;
  overflow-y: scroll;
  border: 1px solid var(--color-gray);
  padding: 20px;
}
.top_news li a {
  display: grid;
  text-decoration: none;
  margin-bottom: 10px;
  grid-template-columns: 130px 1fr;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .top_news li a {
    display: block;
    margin-bottom: 16px;
  }
}
.top_news li a .news_date {
  color: var(--color-d-red);
  display: block;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .top_news li a .news_date {
    text-align: left;
  }
}

/* 利用例 */
.top_ex {
  background: var(--color-gray);
  padding: 128px 16px;
}
@media screen and (max-width: 1079px) {
  .top_ex {
    padding: 82px 16px;
  }
}

.top_ex_li {
  max-width: 1080px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
@media screen and (max-width: 1079px) {
  .top_ex_li {
    grid-template-columns: 1fr;
  }
  .top_ex_li li:not(:last-child) {
    margin-bottom: 32px;
  }
}

.top_ex_kenimg,
.top_ex_unimg {
  background-image: url(../img/top/ex_ken.jpg);
  background-image: url(../img/top/ex_ken.webp);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 478px;
  display: grid;
  align-items: center;
  color: var(--color-white);
  padding: 16px;
  font-size: 30px;
  line-height: 1.3;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 1079px) {
  .top_ex_kenimg,
  .top_ex_unimg {
    height: 300px;
    font-size: clamp(18px, 8dvw, 30px);
  }
}
.top_ex_kenimg p,
.top_ex_unimg p {
  background: var(--color-red);
  padding: 8px 16px;
  display: inline-block;
  font-size: 24px;
  line-height: 1;
  margin-bottom: 8px;
}

.top_ex_unimg {
  background-image: url(../img/top/ex_un.jpg);
  background-image: url(../img/top/ex_un.webp);
}

.top_ex_p {
  padding: 16px;
}

/* なぜ */
.top_why_t {
  line-height: 1.3;
  color: var(--color-white);
  font-size: 32px;
  text-align: center;
  margin-inline: auto;
}
@media screen and (max-width: 1079px) {
  .top_why_t {
    font-size: clamp(18px, 7dvw, 32px);
  }
}
.top_why_t span {
  background: var(--color-blue);
  padding: 3px 10px;
}
@media screen and (max-width: 1079px) {
  .top_why_t span {
    display: block;
    margin-bottom: 8px;
  }
}

.top_why_wrap {
  display: grid;
  grid-template-columns: 1fr 560px;
  gap: 24px;
}
@media screen and (max-width: 1079px) {
  .top_why_wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.top_why_wrap img.top_why_chara {
  width: 386px;
  margin-inline: auto;
}
@media screen and (max-width: 1079px) {
  .top_why_wrap img.top_why_chara {
    width: 100%;
  }
}

/* フッター */
footer {
  background-image: url(../img/footer_bg.png);
  background-image: url(../img/footer_bg.webp);
  background-repeat: repeat-x;
  background-position: bottom;
  background-color: #fdf0d6;
  padding: 128px 16px 228px;
}
footer .logo {
  width: 80dvw;
  max-width: 430px;
  margin-inline: auto;
}

.footer-company-info {
  max-width: 500px;
  margin-inline: auto;
  font-style: normal;
}
.footer-company-info li:not(:last-child) {
  margin-bottom: 8px;
}

.copy {
  text-align: center;
  display: block;
}

/***************************************************************
事例
***************************************************************/
.ex_kentop,
.ex_transtop,
.ex_ittop {
  background-image: url(../img/ex/ken_topimg.jpg);
  background-image: url(../img/ex/ken_topimg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 130px 16px;
}

.ex_transtop {
  background-image: url(../img/ex/trans_topimg.jpg);
  background-image: url(../img/ex/trans_topimg.webp);
}

.ex_ittop {
  background-image: url(../img/ex/it_topimg.jpg);
  background-image: url(../img/ex/it_topimg.webp);
}

.ex_toptxt {
  background: var(--color-red);
  color: var(--color-white);
  font-size: clamp(15px, 3dvw, 24px);
  display: inline-block;
  padding: 5px 16px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.ex_top_in {
  max-width: 1080px;
  margin-inline: auto;
}

.ex_toptxt2 {
  font-size: clamp(18px, 8dvw, 60px);
  color: var(--color-white);
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
}

.ex_top_b {
  background: linear-gradient(180deg, #fff 0%, #eecece 100%);
  padding: 0 16px;
}
.ex_top_b p {
  background-image: url(../img/ex/ex_top_b.png);
  background-image: url(../img/ex/ex_top_b.webp);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: bottom left;
  max-width: 888px;
  margin-inline: auto;
  padding: 64px 0 64px 250px;
}
@media screen and (max-width: 1079px) {
  .ex_top_b p {
    padding: 200px 0 32px 0;
    background-position: calc(50% + 20px) 16px;
    background-size: 180px auto;
  }
}

.ex_scene li {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  width: 832px;
  padding: 32px;
  margin-inline: auto;
}
@media screen and (min-width:768px) and (max-width:1079px) {
  .ex_scene li {
    width: 100%;
    padding: 32px 0;
  }
}
@media screen and (max-width: 767px) {
  .ex_scene li {
    grid-template-columns: 1fr;
    width: 100%;
    padding: 32px 0;
  }
  .ex_scene li img {
    width: 100%;
    aspect-ratio: 16/9;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.ex_scene li:not(:last-child) {
  margin-bottom: 32px;
  border-bottom: var(--color-black) 3px solid;
  padding-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .ex_scene li:not(:last-child) {
    border: none;
  }
}

.ex_scene_t {
  font-size: 30px;
  border-bottom: 5px solid var(--color-red);
  padding-bottom: 8px;
  margin-bottom: 16px;
  display: inline-block;
}
@media screen and (max-width: 1079px) {
  .ex_scene_t {
    font-size: clamp(18px, 9dvw, 30px);
  }
}

.ex_real_wrap {
  background: var(--color-gray);
  padding: 0 0 128px 0;
}
@media screen and (max-width: 1079px) {
  .ex_real_wrap {
    padding: 0 0 64px 0;
  }
}

.ex_real_t {
  background: var(--color-d-red);
  color: var(--color-white);
  font-size: 49px;
  display: grid;
  grid-template-columns: 185px auto;
  justify-content: center;
  align-items: center;
  margin-bottom: 96px;
}
@media screen and (max-width: 1079px) {
  .ex_real_t {
    grid-template-columns: 180px 8em;
    font-size: clamp(18px, 9dvw, 49px);
    margin-bottom: 42px;
  }
}
@media screen and (max-width: 767px) {
  .ex_real_t {
    grid-template-columns: 30% 70%;
    align-items: end;
  }
  .ex_real_t span {
    padding: 16px 0;
  }
}

.ex_real_case_wrap {
  max-width: 1080px;
  margin-inline: auto;
  border: 4px solid var(--color-black);
  background: var(--color-white);
  padding: 48px 96px;
  box-shadow: 8px 8px 0 0 rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 1079px) {
  .ex_real_case_wrap {
    padding: 16px;
    margin-inline: 16px;
  }
}

.ex_real_case_t {
  width: 183px;
}
@media screen and (max-width: 1079px) {
  .ex_real_case_t {
    display: grid;
    width: auto;
    grid-template-columns: 20dvw 1fr;
    align-items: end;
  }
}
.ex_real_case_t img {
  width: 84px;
  height: auto;
}
@media screen and (max-width: 1079px) {
  .ex_real_case_t img {
    width: clamp(60px, 20dvw, 100px);
    height: auto;
  }
}
.ex_real_case_t p {
  background: var(--color-red);
  color: var(--color-white);
  font-size: 52px;
  line-height: 0.6;
  width: 183px;
  height: 183px;
  display: grid;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media screen and (max-width: 1079px) {
  .ex_real_case_t p {
    display: block;
    font-size: 36px;
    height: auto;
    padding: 15px 15px;
  }
}
.ex_real_case_t p span {
  font-size: 86px;
  display: block;
  margin-top: -40px;
}
@media screen and (max-width: 1079px) {
  .ex_real_case_t p span {
    display: inline;
    margin-top: 0;
    font-size: 130%;
  }
}

.ex_case_twrap {
  display: grid;
  grid-template-columns: 186px 50px 615px;
  justify-content: space-between;
  align-items: end;
}
@media screen and (max-width: 1079px) {
  .ex_case_twrap {
    grid-template-columns: 1fr;
  }
}

.ex_case_koma {
  display: grid;
  grid-template-columns: auto 66px;
  background: var(--color-red);
  color: var(--color-white);
  border-radius: 50px;
  width: 268px;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  position: relative;
  top: 30px;
  right: -10px;
}
@media screen and (max-width: 1079px) {
  .ex_case_koma {
    font-size: 20px;
    width: 60dvw;
    top: 15px;
    grid-template-columns: auto 50px;
    gap: 16px;
  }
}

.ex_case_koma2 {
  border: 6px solid var(--color-red);
  background: var(--color-white);
  padding: 42px 16px 16px 16px;
  font-size: 45px;
}
@media screen and (max-width: 1079px) {
  .ex_case_koma2 {
    font-size: clamp(24px, 6dvw, 45px);
    border: 4px solid var(--color-red);
    padding: 32px 16px 16px;
  }
}

.ex_case_hukidasi {
  display: grid;
  grid-template-columns: 100px auto auto;
  justify-content: start;
  align-items: center;
  margin-left: 16px;
}
@media screen and (max-width: 767px) {
  .ex_case_hukidasi {
    grid-template-columns: 20dvw 10px auto;
    margin: 0;
  }
}
.ex_case_hukidasi p {
  background-color: var(--color-red);
  color: var(--color-white);
  border-radius: 30px;
  height: auto;
  font-size: 21px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 50px;
  padding: 10px 16px;
}
@media screen and (max-width: 767px) {
  .ex_case_hukidasi p {
    height: auto;
    text-align: left;
    font-size: clamp(14px, 3.8dvw, 21px);
    line-height: 1.3;
    border-radius: 5px;
    padding: 10px;
  }
}
.ex_case_hukidasi .ex_hukidasi_tri {
  height: 25.9807621135px;
  width: 30px;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
  background: var(--color-red);
  position: relative;
  right: -15px;
}
@media screen and (max-width: 767px) {
  .ex_case_hukidasi .ex_hukidasi_tri {
    right: 10px;
  }
}

.ex_case_kekka {
  border: 5px solid var(--color-red, #f00);
  background: var(--color-yellow, #f7ea00);
  color: var(--color-red);
  padding: 16px 24px;
  font-size: 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  line-height: 1.3;
}
@media screen and (max-width: 1079px) {
  .ex_case_kekka {
    font-size: clamp(20px, 5dvw, 28px);
    padding: 16px;
  }
}

.ex_case_pro {
  display: grid;
  grid-template-columns: 287px 1fr;
  gap: 32px;
}
@media screen and (max-width: 1079px) {
  .ex_case_pro {
    grid-template-columns: 1fr;
  }
  .ex_case_pro img.ex_case_pro_img {
    aspect-ratio: 16/9;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.ex_case_pro dl {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 8px 16px;
  line-height: 1.3;
}
@media screen and (max-width: 1079px) {
  .ex_case_pro dl {
    grid-template-columns: 20dvw 1fr;
    gap: 16px 8px;
  }
}
.ex_case_pro dt {
  background: var(--color-black);
  color: var(--color-white);
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
}
@media screen and (max-width: 1079px) {
  .ex_case_pro dt {
    font-size: clamp(18px, 5dvw, 25px);
  }
}
.ex_case_pro dd {
  font-size: 22px;
}
@media screen and (max-width: 1079px) {
  .ex_case_pro dd {
    font-size: clamp(18px, 4dvw, 25px);
  }
}

.ex_case_pro_t {
  background: #d5d1d1;
  display: grid;
  grid-template-columns: auto 1fr;
  padding: 0 24px;
  align-items: center;
  font-size: 28px;
  gap: 24px;
}
@media screen and (max-width: 1079px) {
  .ex_case_pro_t {
    grid-template-columns: auto auto;
    font-size: clamp(18px, 5dvw, 24px);
    padding: 0 16px;
  }
}
.ex_case_pro_t img {
  height: 100px;
  width: auto;
}
@media screen and (max-width: 767px) {
  .ex_case_pro_t img {
    width: 20dvw;
    height: auto;
  }
}

.ex_case_1,
.ex_case_2,
.ex_case_3 {
  background: #323232;
  color: var(--color-white);
  padding: 32px;
  display: grid;
  grid-template-columns: 300px 1fr;
  align-items: center;
}
@media screen and (max-width: 1079px) {
  .ex_case_1,
  .ex_case_2,
  .ex_case_3 {
    grid-template-columns: 1fr;
    padding: 16px;
  }
}
.ex_case_1,
.ex_case_2,
.ex_case_3 {
  gap: 40px;
}
.ex_case_1 img,
.ex_case_2 img,
.ex_case_3 img {
  height: 100px;
  width: auto;
}

.ex_case_2 {
  background: var(--color-red, #f00);
}

.ex_case_3 {
  background: var(--color-yellow, #f7ea00);
  color: var(--color-black);
}

.ex_case_1t,
.ex_case_2t,
.ex_case_3t {
  font-size: 38px;
  text-align: center;
  background: #606060;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 16px 8px;
  line-height: 1.3;
}
@media screen and (max-width: 1079px) {
  .ex_case_1t,
  .ex_case_2t,
  .ex_case_3t {
    font-size: clamp(18px, 7dvw, 38px);
  }
}

.ex_case_2t {
  background: #c80505;
}

.ex_case_3t {
  background: #f7b500;
  color: var(--color-black);
  font-size: 22px;
  line-height: 1;
}
.ex_case_3t span {
  font-size: 58px;
  color: var(--color-white);
}

img.tri_gray {
  width: 50px;
}

.ex_case_bimg img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .ex_case_bimg img {
    aspect-ratio: 16/8;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: left center;
       object-position: left center;
  }
}

@media screen and (max-width: 767px) {
  .ex_case_bimg img.un_b_bg {
    -o-object-position: center center;
       object-position: center center;
  }
}

.ex_case_bt {
  font-size: 54px;
}
@media screen and (max-width: 1079px) {
  .ex_case_bt {
    font-size: clamp(18px, 8dvw, 54px);
  }
}

.ex_case_bpoint {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 32px;
}
@media screen and (max-width: 1079px) {
  .ex_case_bpoint {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .ex_case_bpoint img {
    aspect-ratio: 1/1;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top center;
       object-position: top center;
    width: 30dvw;
    max-width: 150px;
  }
}
.ex_case_bpoint ul li {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
}
@media screen and (max-width: 1079px) {
  .ex_case_bpoint ul li {
    grid-template-columns: clamp(0px, 21dvw, 130px) 1fr;
  }
}
.ex_case_bpoint ul li div {
  background-color: var(--color-red);
  color: var(--color-white);
  font-size: 28px;
  line-height: 1;
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: grid;
  align-items: center;
  text-align: center;
  justify-content: center;
  align-content: center;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1079px) {
  .ex_case_bpoint ul li div {
    width: clamp(80px, 20dvw, 110px);
    height: clamp(80px, 20dvw, 110px);
    font-size: clamp(8px, 5dvw, 28px);
  }
}
.ex_case_bpoint ul li div span {
  font-size: 120%;
}
.ex_case_bpoint ul li p {
  border: 5px solid var(--color-red);
  padding-left: 80px;
  margin-left: -50px;
  position: relative;
  z-index: 1;
  align-items: center;
  display: grid;
  font-size: 28px;
  line-height: 1.3;
  padding: 10px 10px 10px 80px;
}
@media screen and (max-width: 1079px) {
  .ex_case_bpoint ul li p {
    font-size: 20px;
    margin-left: 0;
    padding: 16px;
  }
}

.ex_case_b_other_t {
  font-size: 36px;
}

.ex_case_b_other {
  display: grid;
  grid-template-columns: auto auto;
  gap: 64px;
  justify-content: center;
}
@media screen and (max-width: 1079px) {
  .ex_case_b_other {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* キャラ紹介 */
.chara_top {
  background-image: url(../img/chara/top.jpg);
  background-image: url(../img/chara/top.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 62px 16px;
}
@media screen and (max-width: 767px) {
  .chara_top {
    background-image: url(../img/chara/top_sp.jpg);
    padding: 40dvw 16px 0;
    background-size: contain;
    background-position: right top;
  }
}

.chara_top_in {
  background: rgba(255, 255, 255, 0.7);
  padding: 30px;
  width: 530px;
  position: relative;
  left: calc(50dvw - 530px);
}
@media screen and (min-width:768px) and (max-width:1079px) {
  .chara_top_in {
    width: 60dvw;
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .chara_top_in {
    width: 90dvw;
    left: inherit;
  }
}

.chara_top_t1 {
  border: 1px solid var(--color-black);
  padding: 16px;
  background-color: var(--color-white);
  display: grid;
  grid-template-columns: 126px 1fr;
  align-items: center;
  margin-bottom: 16px;
  font-size: 31px;
}
@media screen and (max-width: 1079px) {
  .chara_top_t1 {
    font-size: clamp(22px, 3.5dvw, 31px);
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .chara_top_t1 {
    grid-template-columns: 80px auto;
  }
  .chara_top_t1 img {
    height: auto;
    width: 80px;
  }
}

.chara_top_t2 {
  font-size: 52px;
  line-height: 1.3;
}
@media screen and (max-width: 1079px) {
  .chara_top_t2 {
    font-size: clamp(32px, 5dvw, 52px);
  }
}
@media screen and (max-width: 767px) {
  .chara_top_t2 {
    text-align: center;
  }
}

.chara_top_bbg {
  background-image: url(../img/chara/top_b_bg.png);
  background-image: url(../img/chara/top_b_bg.webp);
  background-repeat: repeat-x;
  background-position: bottom;
  background-color: #baeaff;
  padding-top: 60px;
}
@media screen and (max-width: 767px) {
  .chara_top_bbg {
    padding-top: 30px;
  }
}
.chara_top_bbg img {
  max-width: 421px;
}
@media screen and (max-width: 767px) {
  .chara_top_bbg img {
    max-width: 80dvw;
  }
}

.chara_top_btxt {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  max-width: 830px;
  margin-inline: auto;
}
@media screen and (max-width: 1079px) {
  .chara_top_btxt {
    grid-template-columns: 1fr;
  }
  .chara_top_btxt img {
    max-width: 300px;
    height: auto;
    width: 70dvw;
  }
}

.chara_note {
  font-size: 14px;
  line-height: 1.5;
  margin-inline: auto;
  width: 90dvw;
  display: block;
  max-width: 630px;
}

.chara_enemy {
  background: #232323;
  color: var(--color-white);
  padding: 128px 16px;
}
@media screen and (max-width: 1079px) {
  .chara_enemy {
    padding: 82px 16px;
  }
}

.chara_enemy_in {
  max-width: 700px;
  margin-inline: auto;
}

.chara_ene_t1 {
  text-align: center;
}
.chara_ene_t1 span {
  background: var(--color-yellow);
  padding: 8px 32px;
  line-height: 1.3;
  color: var(--color-black);
  font-size: 22px;
  display: inline-block;
}

.chara_ene_t2 {
  font-size: 57px;
}
@media screen and (max-width: 1079px) {
  .chara_ene_t2 {
    font-size: clamp(32px, 8dvw, 57px);
  }
}

.chara_syoutai {
  background: #585858;
  padding: 0 0 198px 0px;
}
@media screen and (max-width: 1079px) {
  .chara_syoutai {
    padding: 0 0px 128px 0px;
  }
}

.chara_s_t {
  background-image: url("../img/chara/stripe.png"), url("../img/chara/stripe.png");
  background-repeat: repeat-x, repeat-x;
  background-position: top, bottom;
  background-color: var(--color-red);
  color: var(--color-white);
  font-size: 39px;
  background-size: 59px auto;
  padding: 59px 0;
  display: grid;
  grid-template-columns: 260px auto;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.chara_s_t h3 {
  padding: 0 16px;
}
@media screen and (max-width: 1079px) {
  .chara_s_t {
    font-size: clamp(24px, 8dvw, 39px);
    grid-template-columns: 1fr;
    padding: 32px 0 59px 0;
    text-align: center;
    margin-bottom: 16px;
  }
  .chara_s_t img {
    width: 80dvw;
    max-width: 200px;
  }
  .chara_s_t h3 {
    padding: 0 16px 16px;
  }
}

.chara_syoutai_li {
  max-width: 932px;
  margin-inline: auto;
}
.chara_syoutai_li li {
  display: grid;
  grid-template-columns: 256px 1fr;
}
@media screen and (max-width: 767px) {
  .chara_syoutai_li li {
    grid-template-columns: 1fr;
  }
  .chara_syoutai_li li img.chara_kougeki {
    width: 80dvw;
    max-width: 300px;
    position: relative;
    top: 30px;
  }
}

.chara_s_liin {
  background-color: var(--color-white);
  padding: 32px 16px;
}

.chara_s_liint {
  display: grid;
  grid-template-columns: 149px 1fr;
  font-size: 37px;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .chara_s_liint {
    font-size: clamp(20px, 7.5dvw, 37px);
    grid-template-columns: 1fr;
    text-align: center;
  }
  .chara_s_liint > img {
    width: 50dvw !important;
  }
}

.chara_sokode {
  background-image: url(../img/chara/bg.png);
  background-image: url(../img/chara/bg.webp);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  padding: 200px 16px 128px 16px;
}
@media screen and (max-width: 1079px) {
  .chara_sokode {
    padding: 40dvw 16px 20dvw;
  }
}

.chara_sokode_t {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
}

.chara_intro_t {
  background: var(--color-red);
  text-align: center;
  padding: 54px 16px;
}

.chara_intro_wrap {
  background-image: url(../img/chara/bg2.png);
  background-image: url(../img/chara/bg2.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 82px 16px;
}

.chara_intro_li {
  max-width: 910px;
  margin-inline: auto;
}
.chara_intro_li li {
  position: relative;
  margin-top: 128px;
}
@media screen and (max-width: 767px) {
  .chara_intro_li {
    max-width: 600px;
  }
}

.chara_intro_lt1,
.chara_intro_lt2,
.chara_intro_lt3,
.chara_intro_lt4,
.chara_intro_lt5 {
  background-color: var(--color-red);
  color: var(--color-white);
  font-size: 44px;
  text-align: center;
  border: 4px solid var(--color-white, #fff);
  box-shadow: 4px 4px 0 0 #000;
  padding: 16px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  top: -80px;
}
@media screen and (max-width: 1079px) {
  .chara_intro_lt1,
  .chara_intro_lt2,
  .chara_intro_lt3,
  .chara_intro_lt4,
  .chara_intro_lt5 {
    font-size: clamp(25px, 6dvw, 44px);
  }
}

.chara_intro_limg1,
.chara_intro_limg3,
.chara_intro_limg2,
.chara_intro_limg4,
.chara_intro_limg5 {
  background-color: var(--color-red);
  border-radius: 40px 0 0 40px;
  padding: 100px 16px 32px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .chara_intro_limg1,
  .chara_intro_limg3,
  .chara_intro_limg2,
  .chara_intro_limg4,
  .chara_intro_limg5 {
    border-radius: 40px 40px 0 0;
    padding: 80px 0 16px 0;
  }
  .chara_intro_limg1 img,
  .chara_intro_limg3 img,
  .chara_intro_limg2 img,
  .chara_intro_limg4 img,
  .chara_intro_limg5 img {
    width: 150px;
  }
}

.chara_intro_lt2,
.chara_intro_limg2 {
  background-color: #f7ea00;
  color: var(--color-black);
}

.chara_intro_lt3,
.chara_intro_limg3 {
  background-color: #003ce5;
}

.chara_intro_lt4,
.chara_intro_limg4 {
  background-color: #ff76ae;
}

.chara_intro_lt5,
.chara_intro_limg5 {
  background-color: #2aa502;
}

.chara_intro_lwrap {
  display: grid;
  grid-template-columns: 300px 1fr;
}
@media screen and (max-width: 767px) {
  .chara_intro_lwrap {
    grid-template-columns: 1fr;
  }
}

.chara_intro_txt {
  background-color: var(--color-white);
  padding: 100px 32px 32px 32px;
  border-radius: 0 40px 40px 0;
  background: #eae4e4;
}
@media screen and (max-width: 767px) {
  .chara_intro_txt {
    border-radius: 0 0 40px 40px;
    padding: 32px 16px;
  }
}

.chara_intro_kom {
  font-size: 27px;
  display: grid;
  grid-template-columns: 1fr 128px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .chara_intro_kom {
    grid-template-columns: 1fr 25dvw;
    font-size: clamp(18px, 5dvw, 27px);
  }
}
.chara_intro_kom p {
  border: 1px solid var(--color-black);
  background-color: var(--color-white);
  padding: 32px 16px;
  line-height: 1.3;
  border-radius: 24px;
}
@media screen and (max-width: 1079px) {
  .chara_intro_kom p {
    padding: 16px;
  }
}

/* ファクターズについて */
.infinite-scroll {
  width: 100%;
  height: 292px;
  background-image: url("../img/f/flow.png");
  background-repeat: repeat-x;
  background-size: auto 100%;
  animation: scroll-left 30s linear infinite;
}

@keyframes scroll-left {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -1440px 0;
  }
}
.f_top {
  background-image: url(../img/f/topimg.jpg);
  background-image: url(../img/f/topimg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--color-white);
  background-position: center center;
  height: 560px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .f_top {
    height: auto;
    padding: 100px 0;
  }
}
.f_top h1 {
  font-size: 52px;
}
@media screen and (max-width: 1079px) {
  .f_top h1 {
    font-size: clamp(28px, 8dvw, 52px);
  }
}

.f_topb_wrap {
  max-width: 800px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 195px 1fr;
  gap: 32px;
}
@media screen and (max-width: 1079px) {
  .f_topb_wrap {
    grid-template-columns: 1fr;
  }
  .f_topb_wrap img {
    max-width: 300px;
    width: 70dvw;
  }
}

.f_topb_check {
  background: var(--color-gray);
  max-width: 1080px;
  border-radius: 32px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 358px 1fr;
  gap: 32px;
  padding: 0px 32px 0 32px;
  align-items: end;
}
@media screen and (max-width: 1079px) {
  .f_topb_check {
    grid-template-columns: 1fr;
    max-width: 600px;
    padding: 32px;
  }
  .f_topb_check img {
    max-width: 300px;
  }
}
@media screen and (max-width: 767px) {
  .f_topb_check {
    margin-inline: 16px;
  }
}
.f_topb_check ul {
  padding: 42px 0 42px;
}
@media screen and (max-width: 1079px) {
  .f_topb_check ul {
    padding: 0;
  }
}
.f_topb_check ul li {
  display: grid;
  grid-template-columns: 37px 1fr;
  gap: 16px;
  align-items: center;
  font-size: 22px;
  line-height: 1.3;
}

.f_r_wrap {
  background: var(--color-d-red);
  padding: 64px 16px;
}

.f_r_t {
  font-size: 58px;
  text-align: center;
  color: var(--color-white);
}
@media screen and (max-width: 1079px) {
  .f_r_t {
    font-size: clamp(32px, 8dvw, 58px);
  }
}

.f_r_li > li {
  background: var(--color-white);
  padding: 40px;
}
@media screen and (max-width: 1079px) {
  .f_r_li > li {
    padding: 32px 16px;
  }
}
.f_r_li .f_r_lit {
  display: grid;
  grid-template-columns: 116px auto auto;
  gap: 16px;
  align-items: center;
}
@media screen and (max-width: 1079px) {
  .f_r_li .f_r_lit {
    grid-template-columns: 20dvw auto;
  }
  .f_r_li .f_r_lit > *:nth-child(3) {
    grid-column: 1/3;
  }
}
.f_r_li .f_r_lit1 p {
  font-size: 28px;
  border-radius: 30px;
  border: 1px solid var(--color-black);
  display: inline-block;
  padding: 8px 32px;
  line-height: 1;
}
@media screen and (max-width: 1079px) {
  .f_r_li .f_r_lit1 p {
    font-size: clamp(18px, 5dvw, 28px);
    margin-bottom: 10px;
  }
}
.f_r_li .f_r_lit1 p span {
  font-size: 140%;
}
.f_r_li .f_r_lit1 h3 {
  font-size: 49px;
}
@media screen and (max-width: 1079px) {
  .f_r_li .f_r_lit1 h3 {
    font-size: clamp(28px, 8dvw, 49px);
  }
}
.f_r_li .f_r_lit2 span {
  background: var(--color-red);
  line-height: 1.3;
  color: var(--color-white);
  padding: 12px 18px;
  font-size: 25px;
}
@media screen and (max-width: 1079px) {
  .f_r_li .f_r_lit2 span {
    display: block;
  }
}
.f_r_li .f_r_li_in {
  display: grid;
  grid-template-columns: 48% 48%;
  gap: 4%;
}
@media screen and (max-width: 1079px) {
  .f_r_li .f_r_li_in {
    grid-template-columns: 1fr;
    gap: 42px;
  }
}
.f_r_li .f_r_li_in_t {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  font-size: 29px;
  gap: 24px;
}
.f_r_li .f_r_li_in_li {
  background-color: var(--color-gray);
  padding: 24px;
}
.f_r_li .f_r_li_in_li li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  font-size: 22px;
  align-items: center;
}

.f_r_li_in_p {
  background-color: var(--color-gray);
  padding: 24px;
}

.f_nayami_t {
  background: #3c3c3c;
  color: var(--color-white);
  font-size: 33px;
  padding: 32px 16px;
}
@media screen and (max-width: 1079px) {
  .f_nayami_t {
    font-size: clamp(24px, 7dvw, 38px);
  }
}

.f_nayami_in {
  background: var(--color-black);
  color: var(--color-white);
  padding-bottom: 64px;
}
@media screen and (max-width: 1079px) {
  .f_nayami_in {
    padding: 0 16px 64px 16px;
  }
}
.f_nayami_in li span {
  border: 1px solid var(--color-white);
  border-radius: 50px;
  padding: 16px;
  line-height: 1.3;
  display: inline-block;
  border-radius: 16px;
}

.f_btm_wrap {
  background-image: url(../img/f/btm_bg.png);
  background-image: url(../img/f/btm_bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  height: 568px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1079px) {
  .f_btm_wrap {
    background-image: url(../img/f/btm_bg_sp.png);
    background-image: url(../img/f/btm_bg_sp.webp);
    background-position: top center;
    height: auto;
    padding: clamp(300px, 40dvw, 400px) 0 0 0;
  }
}
.f_btm_wrap p {
  padding-left: 480px;
}
@media screen and (max-width: 1079px) {
  .f_btm_wrap p {
    background-color: var(--color-white);
    padding: 16px 16px 64px 16px;
  }
}

/* 会社概要 */
.com_top {
  background-image: url(../img/com/topimg.jpg);
  background-image: url(../img/com/topimg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  height: 500px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1079px) {
  .com_top {
    background-position: center;
    height: auto;
  }
}
.com_top h1 {
  display: inline-block;
  width: 1080px;
  text-shadow: 2px 2px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, -1px -1px 0 #fff, 0px 1px 0 #fff, 0px -1px 0 #fff, 1px 0px 0 #fff, -1px 0px 0 #fff;
  font-size: 42px;
  line-height: 1.5;
}
@media screen and (max-width: 1079px) {
  .com_top h1 {
    width: 100%;
    padding: 20dvw 16px;
    font-size: clamp(24px, 6dvw, 42px);
  }
}

.com_top_b {
  font-size: 24px;
  line-height: 1.8;
}
@media screen and (max-width: 1079px) {
  .com_top_b {
    font-size: clamp(18px, 5dvw, 24px);
  }
}

.com_dl {
  max-width: 600px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 200px 1fr;
}
@media screen and (max-width: 767px) {
  .com_dl {
    grid-template-columns: 1fr;
  }
}
.com_dl dt {
  border-bottom: 3px solid var(--color-black);
  padding: 24px;
}
@media screen and (max-width: 767px) {
  .com_dl dt {
    background-color: var(--color-gray);
    border-bottom: none;
  }
}
.com_dl dd {
  border-bottom: 1px solid var(--color-black);
  padding: 24px;
}
@media screen and (max-width: 767px) {
  .com_dl dd {
    padding: 24px 24px 32px 24px;
    border: none;
  }
}

.com_b_img {
  background-image: url(../img/com/bg.jpg);
  background-image: url(../img/com/bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: bottom center;
}
@media screen and (max-width: 767px) {
  .com_b_img {
    height: 400px;
  }
  .com_b_img img {
    max-width: 400px;
    width: 80dvw;
  }
}

.follow_btn {
  position: fixed;
  bottom: 10px;
  right: 10px;
  display: block;
  width: 150px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .follow_btn {
    width: 100px;
  }
}/*# sourceMappingURL=style.css.map */