@charset "utf-8";

html {
  font-size: 62.5%;
}
body {
    font-family: "Noto Sans JP", sans-serif;
    font-feature-settings: "palt";
    margin-top: unset;
}
.vsp {
    display: none;
}
@media screen and (max-width: 767px) {
    .vsp {
        display: block;
    }
    .vpc {
        display: none;
    }
}
.col-12 a {
  transition: 0.5s;
}
.col-12 a:hover {
  opacity: 0.5;
}

/* cancel */
.row {
    margin-right: unset;
    margin-left: unset;
}
h1 {
    margin: unset;
    font-family: "Noto Sans JP", sans-serif;
    color: unset;
}
ul, ol {
    margin: unset;
}
#gr {
  height: unset;
}
#co {
  background: unset;
}

/*------------------------------------------------
 Page Top
------------------------------------------------*/
.pagetop {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 15px;
}
.pagetop a {
  display: block;
  background-color: #f85c37;
  text-align: center;
  color: #fff;
  font-size: 12px;
  text-decoration: none;
  padding: 5px 10px;
  filter:alpha(opacity=50);
  -moz-opacity: 0.5;
  transition: 0.5s;
  border-radius: 8px;
  /*opacity: 0.5;*/
}
.pagetop a:hover {
    display: block;
    background-color: #323232;
    text-align: center;
    color: #fff;
    font-size: 12px;
    text-decoration: none;
    padding:5px 10px;
	filter:alpha(opacity=50);
    -moz-opacity: 0.5;
    /*opacity: 0.5;*/
}

/* header */
#headerwrap h1,
.col-md-7 h2,
.col-md-12 h4,
.btn,
#wh h4 {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
}
h1.site-title a {
    color: #fff;
    transition: 0.5s;
}
h1.site-title a:hover {
    color: #ff6c00;
}

@media screen and (max-width: 767px) {
  .col-md-7 h2,
  .col-md-12 h4 {
    font-size: 2.4rem;
  }
  .btn {
    font-size: 2.0rem;
    width: calc(100% - 90px);
    padding: 20px 0;
  }
}

/* ==========  基本リセット  ========== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
/*body { font-family: system-ui, sans-serif; }*/

/* ==========  ヘッダー共通  ========== */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 20px 40px;
  background: #000;
    color: #fff;
  /*border-bottom: 1px solid #e0e0e0;*/
}
.site-title {
  /*font-size: 2.4rem;*/
    font-size: clamp(1.6rem, 0.591rem + 1.21vw, 2.4rem);
  font-weight: 700;
  line-height: 0;
}
@media screen and (max-width: 1024px) {
    .site-header {
        padding: 15px 20px 25px;
    }
    .site-title {
        line-height: 1.75;
    }
}

/* ==========  PC 用ナビ  ========== */
.site-nav {
    width: max(50%, 300px);
}
.site-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}
.site-nav ul li {
    white-space: nowrap;
    text-align: center;
}
@media screen and (min-width: 1200px) {
    .site-nav ul li {
        width: calc(100% / 5);
    }
}
.site-nav a {
  position: relative;
  text-decoration: none;
  font-size: clamp(1.4rem, 0.753rem + 0.61vw, 2.0rem);
  font-weight: 700;
  color: #fff;
  padding: 10px 0;
  display: block;
}

/* ホバー・フォーカス時の下線アニメーション */
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 5px;
  background: #ff6c00;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .25s, transform .25s;
}
.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 767px) {
  .site-nav a {
    font-size: 2.0rem;
  }
}

/* ==========  ハンバーガーメニュー（スマホのみ）  ========== */
.nav-toggle,
.nav-toggle-label {
  display: none;         /* PC では非表示 */
}

@media screen and (max-width: 1024px) {
  /* チェックボックスを画面外へ */
  .nav-toggle { position: absolute; left: -9999px; }

  /* ハンバーガーアイコン表示 */
  .nav-toggle-label {
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    width: 40px;
    height: 32px;
    cursor: pointer;
    position: fixed;
    right: 20px;
    z-index: 1101;
  }
  .nav-toggle-label span {
    display: block;
    width: 100%;
    height: 4px;
    background: #ff6c00;
    transition: transform .25s, opacity .25s;
  }

  /* ナビを縦方向のドロワーに変更（初期は閉じる） */
  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 75%;
    max-width: 280px;
    height: 100%;
    background: #000;
    opacity: 0.85;
    padding: 80px 24px 24px;   /* ハンバーガーと重ならないよう余白 */
    transform: translateX(100%);
    transition: transform .3s ease;
    box-shadow: -4px 0 12px rgba(0,0,0,.1);
    z-index: 1000;
  }
  .site-nav ul {
    flex-direction: column;
    gap: 1.25rem;
  }

  /* チェックが入ったらメニューを開き、アイコンを × 形状へ */
  .nav-toggle:checked ~ .site-nav {
    transform: translateX(0);
  }
  .nav-toggle:checked + .nav-toggle-label span:nth-child(1) {
    transform: translateY(20px) rotate(45deg);
  }
  .nav-toggle:checked + .nav-toggle-label span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle:checked + .nav-toggle-label span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  /* body のスクロールを止める */
  .nav-toggle:checked ~ .site-nav,
  .nav-toggle:checked ~ * {   /* チェックが入ったら */
    overscroll-behavior: contain;
  }
  body:has(#nav-toggle:checked) {
    overflow: hidden;        /* 背景をスクロール不能に */
  }
}

/* Footer */

footer {
  background: #272727;
  color: #fff;
  padding: 20px;
}
.ftrBox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.ftrBox__left p {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.1rem;
}
.ftrBox__right ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}
.ftrBox__right ul li {
  white-space: nowrap;
  text-align: center;
}
.ftrBox__right ul li:before {
  content: "";
  border: 1px solid #737373;
  margin: 0 20px 0 0;
}
.ftrBox__right ul li a {
  position: relative;
  text-decoration: none;
  font-size: clamp(1.2rem, 0.612rem + 0.69vw, 1.6rem);
  font-weight: 300;
  color: #fff;
  padding: 4px 0;
  transition: 0.5s;
}
.ftrBox__right ul li a:hover {
  color: #ff6c00;
}
@media screen and (max-width: 1024px) {
  .ftrBox {
    text-align: center;
  }
  .ftrBox__left {
    order: 2;
    margin: 20px auto 0;
  }
  .ftrBox__left p {
    line-height: 1.75;
  }
  .ftrBox__right {
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .ftrBox__right ul {
    display: block;
  }
  .ftrBox__right ul li:before {
    border: unset;
  }
  .ftrBox__right ul li a {
    display: block;
    border-bottom: 1px solid #737373;
    padding: 0 0 25px 0;
    line-height: 0;
    text-align-last: justify;
    font-size: 1.8rem;
  }
  .ftrBox__right ul li:nth-child(1) {
    border-top: 1px solid #737373;
  }
}

.main__ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 4.2rem;
  font-weight: 700;
  color: #fff;
  padding: 80px 0;
}
.concept__txt {
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.75;
}
.concept__txt p span {
  background: linear-gradient(transparent 60%, #ffff00 50%);
}
.concept__to__corp {
  font-weight: 500;
  line-height: 1.5;
  border-top: 1px solid;
  border-bottom: 1px solid;
  padding: 20px 0;
  text-align: center;
}
.concept__to__corp a {
  color: unset;
  transition: 0.5s;
}
.concept__to__corp a:hover {
  color: #ff6c00;
}
@media screen and (max-width: 767px) {
  .main__ttl {
    font-size: 2.8rem;
    line-height: 1.5;
  }
  .concept__to__corp {
    margin: 30px auto 0;
  }
}

.support__txt {
  font-weight: 500;
}

.priceBox {
  width: calc(1200 / 1250 * 100%);
  max-width: 1200px;
  margin: 50px auto;
  padding: 0;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  font-weight: 500;
}
.priceBox .priceBox__left,
.priceBox .priceBox__right {
  width: calc(100% / 2 - 30px);
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e7e7e7;
}
.left__ttl,
.right__ttl {
  font-size: 2.8rem;
  font-weight: 600;
 padding: 15px 0;
  border-radius: 10px 10px 0 0; 
}
.left__ttl {
  background: #94e8e8;
}
.right__ttl {
  background: #ffda22;
}
.left__txt,
.right__txt {
  display: block;
  padding: 0;
  margin: 0;
}
.left__txt p {
  background: #deefef;
}
.right__txt P {
  background: #fffbe5;
}
.left__txt p,
.right__txt p {
  font-size: 2.8rem;
  font-weight: 700;
  padding: 40px 0 20px;
}
.left__txt p span,
.right__txt p span {
  font-size: 7.2rem;
  color: #ef7186;
}
.left__txt p small,
.right__txt p small {
  font-size: 1.6rem;
  font-weight: 500;
}
.priceBox__left ul,
.priceBox__right ul {
  list-style: none;
  text-align: left;
  font-size: 1.8rem;
  line-height: 1.75;
  width: min(90%, 340px);
  margin: 0 auto 30px;
  padding: 0 0 0 1rem;
  text-indent: -1rem;
}
.priceBox__left ul li::before,
.priceBox__right ul li::before {
  content: "・";
}
@media screen and (max-width: 767px) {
  .priceBox .priceBox__left,
  .priceBox .priceBox__right {
    width: calc(100% - 30px);
  }
  .priceBox .priceBox__left {
    margin: 0 0 20px;
  }
  .priceBox__left ul,
  .priceBox__right ul {
    font-size: 1.45rem;
  }
}

#gr {
  padding: 50px 0;
  background: url(../img/bg_company_map2.png) no-repeat center center #C0ECE4;
}
h1.intro__corp {
  color: #272727;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: left;
  padding: 30px 0 0;
}
.intro__txt {
  color: #272727;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 20px 0 0;
}
.intro__txt span {
  display: block;
  padding: 10px 0;
  font-size: 2.0rem;
  font-weight: 600;
}
iframe {
  margin: 0 0 30px;
}

#contactus {
  margin: 50px auto;
}
#contactus h4 {
  font-weight: 700;
}
.contactus__txt {
  font-weight: 500;
}

/*
.contactus__address {
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.address__left,
.address__right {
  width: calc(100% / 2);
}
.address__left {
  text-align: right;
  padding: 0 30px 0;
}
.address__left img {
  height: 50px;
}
.address__left a {
  transition: 0.5s;
}
.address__left a:hover {
  opacity: 0.5;
}
.contactus__address p {
  margin: 0;
  padding: 0;
}
.contactus__address p:nth-child(1) {
  font-size: 1.8rem;
}
*/
.contactus__address {
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.address__left,
.address__center,
.address__right {
  padding: 0 15px;
}
.address__left {
  flex: 1;
}
.address__center {
  flex: 1;
}
.address__right {
  flex: n;
}
.contactus__address img {
  max-width: 100%;
}
.contactus__address a {
  transition: 0.5s;
}
.contactus__address a:hover {
  opacity: 0.5;
}
.contactus__address p {
  margin: 0;
  padding: 0;
}
.contactus__address p:nth-child(1) {
  font-size: 1.8rem;
}


.address__underPage__padding {
  width: calc(1200 / 1366 * 100%);
  max-width: 1200px;
  padding: 50px 30px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .address__left,
  .address__center,
  .address__right {
    flex: unset;
  }
  .address__left,
  .address__center {
    margin: 0 0 20px 0;
  }
  .address__right p {
    font-size: 1.5rem;
    line-height: 1.5;
    padding: 10px 0 0 0;
    margin: 0;
  }
}
@media screen and (max-width: 767px) {
  .contactus__txt {
    text-align: left;
  }
  h1.intro__corp {
    font-size: 2.0rem;
    line-height: 1.5;
  }
  /*.address__left,
  .address__right {
    width: 100%;
  }
  .address__left {
    text-align: center;
    padding: 0 0 30px;
  }
  .address__left img {
    height: 80px;
    opacity: 0.5;
  }*/
  .address__underPage__padding {
    padding: 0;
    margin: 50px auto 0;
  }
  .btn {
    width: 100%;
    border-radius: 15px;
  }
  .btn__price {
    width: calc(100% - 30px);
  }
}


/*------------------------------------------
  運営会社
------------------------------------------*/

#ptitle {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1;
  padding: 30px 0;
}
.fw .col-md-9 h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.5;
}
.fw .col-md-9 p {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.75;
}
.pg .col-md-4 h4 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
}
.service__area {
  text-align: left;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.75;
  width: calc(100% - 100px);
  margin: 0 auto;
}
#company table {
  font-size: 1.6rem;
  font-weight: 400;
}
#company table tbody th.splan {
  font-weight: 600;
}
#company table tbody td.bodtop,
#company table tbody tr th {
  border-top: 1px solid #cdcdcd;
}
#company table tbody tr td,
#company table tbody tr th {
  border-bottom: 1px solid #cdcdcd;
}
@media screen and (max-width: 767px) {
  #ptitle {
    font-size: 3.2rem;
  }
  .service__area {
    width: calc(100% - 30px);
  }
  .corp__btn {
    width: 100%;
  }
  #company table th {
    width: 25%;
    font-size: 1.4rem;
    padding: 0 10px;
  }
  #company table td {
    width: 75%;
    font-size: 1.4rem;
    padding: 10px;
  }
  .corp__infotable {
    padding: 0;
  }
}

/*------------------------------------------
  コンセプト
------------------------------------------*/

#concept {
  background: #fff;
}
#concept .col-md-12 h2 {
  font-family: "Noto Sans JP", sans-serif;
}
.concept__maintxt {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1.75;
}
.concept__maintxt span {
  background: linear-gradient(transparent 60%, #ffff00 50%);
}
.fg .col-md-9 h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.5;
}
.fg .col-md-9 p {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  #concept .col-md-12 h2 {
    font-size: 2.4rem;
    text-align: left;
    line-height: 1.75;
  }
  .concept__maintxt {
    font-size: 1.8rem;
    text-align: left;
  }
}

/*------------------------------------------
  サポート内容
------------------------------------------*/

#support .fc .col-md-12 h4,
#support .fc .col-md-9 h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}
#support .fc .col-md-9 li {
  list-style: none;
  padding: 0 0 0 10px;
  text-indent: -1.0rem;
  font-size: 2.0rem;
  line-height: 1.75;
}
#support .fc .col-md-9 li::before {
  content: "・";
  padding: 0 5px 0;
}
#support .fc .col-md-9 h3 {
  font-size: 2.8rem;
}
#support .fw .col-md-9 h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.5;
}
#support .fg .col-md-9 h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  #support .fc .col-md-9 h3 {
    font-size: 1.8rem;
  }
  #support .fc .col-md-9 li {
    font-size: 1.5rem;
    text-indent: -2rem;
  }
}

/*------------------------------------------
  料金（ページ）
------------------------------------------*/

#price {
  background: #fff;
}
.priceTable__parent {
  display: grid;
  grid-template-columns: 20% 1fr 1fr;
  grid-template-rows: repeat(15, 1fr);
  gap: 0px;
  border-bottom: 1px solid #e0e0e0;
  font-size: 1.8rem;
  font-weight: 500;
  margin: 0 auto 30px;
}
.priceTable__parent p {
  margin: 0;
  padding: 0;
  line-height: unset;
}
.priceTable__ttl,
.priceTable__light,
.priceTable__standard {
  border-top: 1px solid #e0e0e0;
  padding: 0.5em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.priceTable__light {
  border-right: 1px solid #e0e0e0;
}
.priceTable__ttl {
  background: #f7f7f7;
}
.priceTable__parent div:nth-child(2) {
  background: #94e8e8;
  font-size: 2.0rem;
  font-weight: 700;
}
.priceTable__parent div:nth-child(3) {
  background: #ffda22;
  font-size: 2.0rem;
  font-weight: 700;
}
.priceTable__parent div:nth-child(5) {
  background: #deefef;
  font-size: 2.4rem;
  font-weight: 700;
}
.priceTable__parent div:nth-child(6) {
  background: #fffbe5;
  font-size: 2.4rem;
  font-weight: 700;
}
.priceTable__parent div:nth-child(8) {
  font-weight: 700;
  font-size: 2.4rem;
}
.priceTable__parent div:nth-child(9) span {
  font-size: 2.4rem;
  font-weight: 700;
  color: #ff0000;
}
.priceTable__parent div:nth-child(3n+1) {
  font-size: 1.6rem;
}
.priceTable__parent div:nth-child(5),
.priceTable__parent div:nth-child(6),
.priceTable__parent div:nth-child(8),
.priceTable__parent div:nth-child(9) {
  display: inline-flex;
  flex-direction: column;
  align-items: baseline;
}
.priceTable__parent .priceTable__light p,
.priceTable__parent .priceTable__standard p {
  margin: auto;
}
.priceTable__parent div:nth-child(n) small {
  font-weight: 500;
  font-size: 1.4rem;
}
.priceTable__parent div:nth-child(20),
.priceTable__parent div:nth-child(21) {
  color: #ff0000;
  font-size: 2.0rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .priceTable {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* iOS で慣性スクロール有効化 */
  }
  .priceTable__parent {
    min-width: 450px;
  }
  .priceTable__parent p {
    line-height: 1.2;
  }
}
.priceTable__cap {
  text-align: left;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.25;
  min-width: 450px;
}
.priceTable__cap dl {
  margin: 0;
  padding: 0 0 30px;
}
.priceTable__cap dl dt {
  float: left;
  padding: 5px 0 0 0;
}
.priceTable__cap dl dd {
  margin: 0 0 0 1em;
  padding: 5px 0 0 0;
}
.priceTable__cap dd:nth-of-type(1),
.priceTable__cap dd:nth-of-type(2) {
  color: #ff0000;
  font-weight: 600;
}
.price__recommend {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: right;
}
.price__recommend p {
  margin: 0;
  line-height: unset;
  display: block;
  padding: 15px;
  font-weight: 600;
  font-size: 2.0rem;
  background: #ff6922;
  color: #fff;
  width: min(30%, 200px);
  border-radius: 10px 10px 0 0;
}
@media screen and (max-width: 767px) {
  .price__recommend {
    min-width: 450px;
  }
  .price__recommend p {
    font-size: 1.6rem;
  }
}
.plan__service__txt {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.75;
  text-align: left;
}

/*------------------------------------------
  制作実績
------------------------------------------*/
#works {
  background: #fff;
}
#works .ww .col-md-4 h4,
#works .wg .col-md-4 h4 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
}
#works .wg {
  background: unset;
}
.result__standard__ttl {
  background: #ffda22;
  width: calc(1170 / 1200 * 100%);
  max-width: 1170px;
  padding: 20px 15px;
  margin: 50px auto 0;
  text-align: center;
  border-radius: 10px 10px 0 0;
}
.result__light__ttl {
  background: #94e8e8;
  width: calc(1170 / 1200 * 100%);
  max-width: 1170px;
  padding: 20px 15px;
  margin: 50px auto 0;
  text-align: center;
  border-radius: 10px 10px 0 0;
}
.result__standard__ttl p,
.result__light__ttl p {
  margin: 0;
  padding: 0;
  font-weight: 700;
  font-size: 2.8rem;
}

/*------------------------------------------
  プライバシーポリシー
------------------------------------------*/

#privacy {
  background: #fff;
}
.privacyBox {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 30px;
}
.privacyBox h4 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.8rem;
  font-weight: 600;
  margin: 30px 0 0;;
  padding: 20px 0 10px;
  border-bottom: 6px solid #c0ece4;
}
.privacyBox p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 2.0rem;
  line-height: 1.75;
  margin: 0;
  padding: 10px 0 0;
}
.privacy__sign__txt {
  text-align: right;
  font-weight: 400;
  font-size: 1.6rem;
}
.privacy__sign__txt span {
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .privacyBox h4 {
    font-size: 2.2rem;
  }
  .privacyBox p {
    font-size: 1.8rem;
  }
}

/*------------------------------------------
  お問い合わせ
------------------------------------------*/

#contact table tbody th.splan {
  font-weight: unset;
}
#formWrap .red,
#formWrap p.red {
  font-weight: 500;
}
#formWrap .red h4 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  padding: 0 0 30px 0;
}
#formWrap .formTable {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
}
.thanks__txt {
  font-weight: 500;
}
.thanks__txt h4,
#formWrap h4 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
}
.thanks__txt p {
  text-align: left;
  font-size: 1.8rem;
  line-height: 1.75;
}

/*------------------------------------------
  フッターバナー
------------------------------------------*/

.xon__bnrBox {
  max-width: min(85%, 800px);
  margin: 0 auto 20px;
  padding: 30px;
  border: 1px solid #c5c5c5;
  border-radius: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.xon__bnrBox .xonbnrBox__left,
.xon__bnrBox .xonbnrBox__right {
  margin: 0;
  padding: 0;
}
.xon__bnrBox .xonbnrBox__left {
  font-weight: 500;
  font-size: 1.8rem;
  text-align: center;
  flex: 30%;
}
.xon__bnrBox .xonbnrBox__left p {
  margin: 0;
  padding: 0;
}
.xon__bnrBox .xonbnrBox__right {
  flex: 70%;
}
.xon__bnrBox .xonbnrBox__right img {
  max-width: calc(100% - 60px);
}
.xon__bnrBox .xonbnrBox__right a {
  transition: 0.5s;
}
.xon__bnrBox .xonbnrBox__right a:hover {
  opacity: 0.3;
}
@media screen and (max-width: 767px) {
  .xon__bnrBox {
    padding: 15px;
    margin: 30px auto 0;
  }
  .xon__bnrBox .xonbnrBox__left,
  .xon__bnrBox .xonbnrBox__right {
    flex: unset;
  }
  .xon__bnrBox .xonbnrBox__left {
    font-size: 1.4rem;
    padding: 0 0 15px 0;
    width: 100%;
  }
  .xon__bnrBox .xonbnrBox__right img {
    max-width: 100%;
  }
}














