@charset "UTF-8";
html {
  font-family: "Noto Sans JP", sans-serif;
  box-sizing: border-box;
  font-weight: normal;
  font-size: 10px;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i, a,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video, input[type=submit] {
  /* outline: 1px palevioletred solid; */
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

p, th, td, label, li, dl, dt, dd {
  font-size: 1.6rem;
  font-weight: normal;
}

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

@media screen and (max-width: 560px) {
  p {
    font-size: 1.5rem;
  }
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ul, li {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  color: black;
  font-size: 16px;
  text-decoration: none;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  cursor: pointer;
}

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

/* iphoneデフォルトのボタンcssを無効にする */
input[type=text],
input[type=email],
textarea, button, select, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

input[type=radio] {
  -webkit-appearance: auto;
}

input[type=submit] {
  cursor: pointer;
}

img {
  vertical-align: middle;
  width: 100%;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

summary {
  display: block;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

del {
  text-decoration: line-through;
}

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

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

*,
*:before,
*:after {
  box-sizing: inherit;
}

/*============== ブレイクポイント ==============*/
/*============== Fonts ==============*/
/*============== Color ==============*/
/* =============================================
ボタン
============================================= */
.el_commonBtn {
  height: 45px;
  max-width: 250px;
  position: relative;
  background-color: #FFCC66;
}
.el_commonBtn a {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
}
.el_commonBtn a p {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  line-height: 45px;
}
.el_commonBtn a p::after {
  content: "";
  width: 50px;
  height: 1px;
  background-color: black;
  position: absolute;
  top: 50%;
  right: -12px;
  transform: translateY(-50%);
  transition: 0.3s ease-out;
}
.el_commonBtn a:hover p::after {
  right: -30px;
}

/* =============================================
汎用タイトル
============================================= */
.el_commonTtl h3 {
  font-size: 60px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  line-height: 1.2;
}
@media screen and (max-width: 560px) {
  .el_commonTtl h3 {
    font-size: 50px;
  }
}
.el_commonTtl p {
  font-size: 18px;
}
@media screen and (max-width: 560px) {
  .el_commonTtl p {
    font-size: 16px;
  }
}

/* =============================================
大きな見出し
============================================= */
.el_bigTtl {
  width: 90%;
  margin-right: auto;
  margin-bottom: 70px;
  height: 155px;
  padding-left: 10%;
  background-color: #FFCC66;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .el_bigTtl {
    height: auto;
    margin-bottom: 30px;
    padding: 5%;
  }
}
.el_bigTtl p {
  font-size: 35px;
  font-family: "Noto Serif JP", serif;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .el_bigTtl p {
    font-size: 25px;
  }
}
@media screen and (max-width: 560px) {
  .el_bigTtl p {
    font-size: 23px;
  }
}
.el_bigTtl span:not(.el_bigTtl_small, .el_bigTtl_br) {
  color: white;
  border-bottom: 4px solid white;
}
@media screen and (max-width: 560px) {
  .el_bigTtl_small {
    font-size: 20px;
  }
}

/* =============================================
中見出し
============================================= */
.el_mediumTtl {
  margin-bottom: 40px;
  padding-bottom: 10px;
  font-size: 35px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  border-bottom: 4px solid #FFCC66;
}
@media screen and (max-width: 960px) {
  .el_mediumTtl {
    font-size: 30px;
  }
}
@media screen and (max-width: 560px) {
  .el_mediumTtl {
    font-size: 25px;
  }
}

/* =============================================
小見出し
============================================= */
.el_smallTtl {
  margin-top: 70px;
  margin-bottom: 30px;
  padding-left: 25px;
  position: relative;
  font-size: 25px;
  font-weight: 500;
}
@media screen and (max-width: 560px) {
  .el_smallTtl {
    margin-top: 50px;
    margin-bottom: 20px;
    font-size: 20px;
  }
}
.el_smallTtl::before {
  content: "";
  width: 13px;
  height: 50px;
  background-color: #FFCC66;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 960px) {
  .el_smallTtl::before {
    height: 100%;
  }
}

/* =============================================
テキスト系
============================================= */
.el_boldTxt {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.6;
}
@media screen and (max-width: 960px) {
  .el_boldTxt {
    font-size: 16px;
    line-height: 1.3;
  }
}
.el_boldTxt__big {
  font-size: 25px;
}

.el_explanation dt {
  margin-top: 60px;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 500;
}
@media screen and (max-width: 560px) {
  .el_explanation dt {
    margin-top: 40px;
  }
}

/* =============================================
ヘッダーのリンクメニュー（サービスページ）
============================================= */
.el_header_link {
  margin: 0 auto 100px;
  margin-bottom: 100px;
  width: 80%;
  max-width: 1092px;
}
.el_header_link a {
  font-size: 25px;
  font-family: "Noto Serif JP", serif;
  border-bottom: 1px solid #707070;
}
@media screen and (max-width: 960px) {
  .el_header_link a {
    font-size: 20px;
  }
}
.el_header_link li {
  margin-bottom: 20px;
}

/* =============================================
注意書き
============================================= */
.el_attention {
  margin-top: 30px;
  font-size: 13px;
  color: #EFA718;
  text-align: right;
}
@media screen and (max-width: 560px) {
  .el_attention {
    text-align: left;
  }
}
.el_attention__left {
  text-align: left;
}

/* =============================================
大きなメディア
============================================= */
.bl_bigMedia_ttl {
  padding-left: 55px;
  margin-bottom: 20px;
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 50px;
  position: relative;
  left: 20px;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 960px) {
  .bl_bigMedia_ttl {
    padding-left: 40px;
    display: block;
    left: auto;
  }
}
.bl_bigMedia_ttl::before {
  content: "";
  width: 15px;
  height: 130px;
  background-color: #FFCC66;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 960px) {
  .bl_bigMedia_ttl::before {
    width: 10px;
    height: 140%;
  }
}
.bl_bigMedia_ttl p:nth-child(1) {
  font-size: 60px;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .bl_bigMedia_ttl p:nth-child(1) {
    font-size: 45px;
  }
}
.bl_bigMedia_ttl p:nth-child(1) span {
  font-size: 17px;
  display: block;
}
.bl_bigMedia_ttl p:nth-child(2) {
  margin-top: 10px;
  font-size: 30px;
  line-height: 1.3;
}
@media screen and (max-width: 960px) {
  .bl_bigMedia_ttl p:nth-child(2) {
    font-size: 20px;
  }
}
.bl_bigMedia_ttl__sub {
  margin-bottom: 40px;
}
@media screen and (max-width: 960px) {
  .bl_bigMedia_ttl__sub {
    margin-bottom: 20px;
  }
}
.bl_bigMedia_ttl__sub p:nth-child(1) {
  font-size: 35px;
  line-height: 1.5;
}
.bl_bigMedia_ttl__sub::before {
  height: 160px;
}
@media screen and (max-width: 560px) {
  .bl_bigMedia_ttl__sub::before {
    height: 120px;
  }
}
@media screen and (max-width: 960px) {
  .bl_bigMedia_txt {
    margin-top: 10px;
  }
}
.bl_bigMedia_txt a {
  display: inline-block;
  margin-top: 18px;
  font-weight: 500;
  border-bottom: 1px solid #A0A0A0;
}

.bl_bigMedia_cont {
  padding: 40px 10%;
  margin-bottom: 60px;
  background-color: #F2F2F2;
}
@media screen and (max-width: 1200px) {
  .bl_bigMedia_cont {
    padding: 40px 5%;
  }
}
.bl_bigMedia_cont li {
  margin-bottom: 35px;
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 70px;
}
@media screen and (max-width: 960px) {
  .bl_bigMedia_cont li {
    display: block;
    text-align: center;
  }
}
.bl_bigMedia_cont li img {
  width: 150px;
}
.bl_bigMedia_cont li h5 {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 500;
}
.bl_bigMedia_cont li p {
  line-height: 1.5;
  text-align: left;
}
.bl_bigMedia_cont li:last-child {
  margin-bottom: 0;
}

/* =============================================
正方形のメディア
============================================= */
.bl_mediaCard h5 {
  margin-bottom: 50px;
  padding-bottom: 10px;
  font-size: 23px;
  font-weight: 500;
  border-bottom: 1px solid #707070;
}
.bl_mediaCard ul {
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  gap: 25px;
}
@media screen and (max-width: 960px) {
  .bl_mediaCard ul {
    gap: 15px;
  }
}
.bl_mediaCard ul li {
  box-sizing: border-box;
  padding: 20px 10px;
  width: calc((100% - 75px) / 4);
  height: 250px;
  background-color: #F2F2F2;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .bl_mediaCard ul li {
    width: calc((100% - 25px) / 2);
    height: 230px;
  }
}
@media screen and (max-width: 960px) {
  .bl_mediaCard ul li {
    height: 200px;
  }
}
@media screen and (max-width: 560px) {
  .bl_mediaCard ul li {
    width: 100%;
    height: auto;
    padding: 20px 5%;
    display: flex;
    gap: 15px;
    text-align: left;
  }
}
.bl_mediaCard ul li img {
  width: auto;
  height: 130px;
}
@media screen and (max-width: 960px) {
  .bl_mediaCard ul li img {
    height: 100px;
  }
}
.bl_mediaCard_txt {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bl_mediaCard_txt p {
  margin-top: 15px;
  line-height: 1.5;
  font-size: 14px;
}
.bl_mediaCard__3colum {
  width: 80%;
}
@media screen and (max-width: 1200px) {
  .bl_mediaCard__3colum {
    width: 100%;
  }
}
.bl_mediaCard__3colum ul li {
  width: calc((100% - 50px) / 3);
}
@media screen and (max-width: 1200px) {
  .bl_mediaCard__3colum ul li {
    width: calc((100% - 25px) / 2);
  }
}
@media screen and (max-width: 560px) {
  .bl_mediaCard__3colum ul li {
    width: 100%;
  }
}

/* =============================================
フロー図
============================================= */
.bl_flow_cont {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 960px) {
  .bl_flow_cont {
    display: block;
  }
}
.bl_flow_box {
  width: 50%;
}
.bl_flow_box .bl_flow_item:nth-child(3) {
  padding-bottom: 0;
}
@media screen and (max-width: 960px) {
  .bl_flow_box .bl_flow_item:nth-child(3) {
    padding-bottom: 30px;
  }
}
.bl_flow_box .bl_flow_item__bottom {
  padding-bottom: 0;
}
@media screen and (max-width: 960px) {
  .bl_flow_box {
    width: 100%;
  }
}

.bl_flow_item {
  padding-left: 45px;
  padding-bottom: 30px;
  position: relative;
}
@media screen and (max-width: 560px) {
  .bl_flow_item {
    padding-left: 25px;
  }
}
.bl_flow_item_ttl {
  display: flex;
  align-items: center;
  position: relative;
  right: -20px;
  line-height: 1;
}
@media screen and (max-width: 1200px) {
  .bl_flow_item_ttl {
    right: 0;
  }
}
.bl_flow_item_ttl p:nth-child(1) {
  margin-right: 30px;
  color: #A0A0A0;
  font-size: 50px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  text-align: center;
  letter-spacing: 5px;
  line-height: 1.5;
}
@media screen and (max-width: 1200px) {
  .bl_flow_item_ttl p:nth-child(1) {
    margin-right: 15px;
  }
}
.bl_flow_item_ttl p:nth-child(1) span {
  font-size: 14px;
  display: block;
  margin-bottom: -15px;
  letter-spacing: 0;
}
.bl_flow_item_ttl p:nth-child(2) {
  font-size: 25px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 1200px) {
  .bl_flow_item_ttl p:nth-child(2) {
    font-size: 20px;
  }
}
.bl_flow_item_txt {
  padding: 30px 15px;
  background-color: #F2F2F2;
}
.bl_flow_item::before {
  content: "";
  width: 15px;
  height: 100%;
  background-color: #A0A0A0;
  position: absolute;
  top: 0;
  left: 0;
}

.bl_flow_item__free .bl_flow_item_ttl p:nth-child(1) {
  color: #FFCC66;
}
.bl_flow_item__free::before {
  background-color: #FFCC66;
}

/* =============================================
実績
============================================= */
.bl_works_item {
  margin-top: 100px;
}
.bl_works_ttl {
  margin-bottom: 25px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .bl_works_ttl {
    flex-wrap: wrap;
    gap: 20px 0;
  }
}
.bl_works_ttl .el_smallTtl {
  margin: 0;
}
@media screen and (max-width: 960px) {
  .bl_works_ttl .el_smallTtl {
    width: 100%;
  }
}
.bl_works_ttl img {
  margin-left: 30px;
  width: 10%;
  height: 70px;
}
@media screen and (max-width: 560px) {
  .bl_works_ttl img {
    margin-left: 0;
    width: 30%;
  }
}
.bl_works dl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 30px;
}
@media screen and (max-width: 960px) {
  .bl_works dl {
    gap: 20px 30px;
  }
}
.bl_works dl dt {
  width: 110px;
  height: 60px;
  background-color: #F2F2F2;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  .bl_works dl dt {
    width: 100%;
  }
}
.bl_works dl dd {
  width: calc(100% - 140px);
  line-height: 1.3;
}
@media screen and (max-width: 960px) {
  .bl_works dl dd {
    width: 100%;
  }
}

/* =============================================
テーブル
============================================= */
.bl_baseTable {
  width: 100%;
}
.bl_baseTable img {
  width: 90px;
  height: 90px;
}
.bl_baseTable th, .bl_baseTable td {
  vertical-align: middle;
  padding: 30px 0;
  border-bottom: 1px solid #707070;
}
@media screen and (max-width: 560px) {
  .bl_baseTable th, .bl_baseTable td {
    padding: 0;
    width: 100%;
    display: block;
  }
}
.bl_baseTable th {
  width: 40%;
  padding: 20px 0 10px 10%;
  font-size: 18px;
  font-weight: 500;
  text-align: left;
}
@media screen and (max-width: 560px) {
  .bl_baseTable th {
    width: 100%;
    text-align: left;
    border-bottom: none;
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 560px) {
  .bl_baseTable td {
    padding-bottom: 20px;
  }
}
.bl_baseTable__price th, .bl_baseTable__price td {
  padding: 0;
  height: 95px;
  vertical-align: middle;
  display: table-cell;
}
.bl_baseTable__price th {
  padding-left: 30px;
  width: 20%;
  text-align: center;
}
.bl_baseTable__price td {
  width: 26.6666666667%;
  text-align: center;
}
.bl_baseTable__price_color img {
  width: 175px;
  height: 28px;
}
.bl_baseTable__price_color th, .bl_baseTable__price_color td {
  background-color: rgba(255, 204, 102, 0.23);
}
.bl_baseTable__price_color th {
  font-size: 15px;
}

.bl_baseTable__scroll {
  min-width: 700px;
}

/* =============================================
スクロールボックス
============================================= */
.bl_scrollBox {
  overflow: scroll;
}
.bl_scrollBox::-webkit-scrollbar {
  display: none;
}
.bl_scrollBox img {
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

/* =============================================
ヘッダー
============================================= */
.ly_header {
  width: 100%;
  height: 85px;
  background-color: white;
  position: absolute;
  top: 0;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .ly_header {
    height: 60px;
  }
}
.ly_header_cont_logo {
  width: 250px;
  height: 40px;
  position: relative;
}
.ly_header_cont_logo img {
  width: 200px;
}
.ly_header_cont_contact {
  width: 160px;
  padding: 10px 0;
  background-color: black;
  color: white;
}

.ly_pcHeader {
  height: 85px;
  padding-left: 50px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ly_pcHeader_nav {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ly_pcHeader li:not(.js_dropmenu li) {
  height: 100%;
  margin-left: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .ly_pcHeader li:not(.js_dropmenu li) {
    margin-left: 30px;
  }
}
.ly_pcHeader p {
  font-family: "DM Sans", sans-serif;
}
.ly_pcHeader a:not(.js_dropmenu_a) {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 960px) {
  .ly_pcHeader {
    display: none;
  }
}

.ly_spHeader {
  display: none;
  /* メニュー背景 */
}
.ly_spHeader_cont {
  padding-left: 30px;
  height: 85px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .ly_spHeader_cont {
    height: 60px;
  }
}
@media screen and (max-width: 960px) {
  .ly_spHeader {
    display: block;
  }
}
.ly_spHeader_menu {
  position: fixed;
  top: 0;
  left: 0;
  background: white;
  text-align: center;
  width: 100%;
  height: 100%;
  display: block;
  transform: translateX(100%);
  transition: all 0.6s;
  z-index: 10;
}
.ly_spHeader_menu > ul {
  margin: 0 auto;
  width: 100%;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.4s all;
}
@media screen and (max-width: 960px) {
  .ly_spHeader_menu > ul {
    position: absolute;
    top: 80px;
    transform: none;
  }
}
.ly_spHeader_menu li {
  width: 100%;
  padding: 1rem 0;
  font-size: 16px;
  position: relative;
}
.ly_spHeader_menu li a {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.ly_spHeader_menu li:last-child:not(.ly_spHeader_spOnly li) {
  padding-bottom: 0;
}
.ly_spHeader_menu li.ly_header_cont_contact {
  padding: 0;
  width: 80%;
  height: 50px;
  margin: 60px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ly_spHeader_menu.active {
  display: block;
  transform: translateX(0%);
}
@media screen and (max-width: 960px) {
  .ly_spHeader_spNone {
    display: none;
  }
}
.ly_spHeader_spOnly {
  display: none !important;
}
@media screen and (max-width: 960px) {
  .ly_spHeader_spOnly {
    display: block !important;
  }
}
.ly_spHeader_spOnly ul {
  margin-top: 10px;
}
.ly_spHeader_spOnly li {
  width: 80%;
  margin: 0 auto;
  background-color: #FFCC66;
}

/* ハンバーガーメニューボタン */
.hamburger {
  display: block;
  position: fixed;
  z-index: 11;
  right: 10px;
  top: 10px;
  width: 57px;
  height: 40px;
  cursor: pointer;
  text-align: center;
  background-color: black;
  /* スマホメニューを開いてる時のボタン */
}
.hamburger span {
  display: block;
  position: absolute;
  width: 35px;
  height: 2px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  transition: 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 14px;
}
.hamburger span:nth-child(2) {
  top: 25px;
}
.hamburger.active span:nth-child(1) {
  top: 20px;
  left: 12px;
  background: #fff;
  transform: rotate(-45deg);
}
.hamburger.active span:nth-child(2) {
  top: 20px;
  left: 12px;
  background: #fff;
  transform: rotate(45deg);
}

/* ドロップダウンメニュー */
.bl_dropmenu {
  width: 400px;
  display: none;
  background-color: #FFCC66;
  position: absolute;
  top: 70px;
}
.bl_dropmenu li {
  padding: 20px;
  margin-left: 0;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.bl_dropmenu li p {
  color: black;
  transition: 0.3s;
}
.bl_dropmenu li:hover p {
  color: white;
}
.bl_dropmenu li:nth-child(1) {
  margin-bottom: -20px;
}

/* 固定時ドロップダウン位置 */
.fixed .bl_dropmenu {
  top: 75px;
}

/* ハンバーガーメニュー時はposition:relativeに */
.globalMenuSp .bl_dropmenu {
  position: relative;
}
@media screen and (max-width: 960px) {
  .globalMenuSp .bl_dropmenu {
    width: auto;
  }
}
@media screen and (max-width: 560px) {
  .globalMenuSp .bl_dropmenu {
    top: auto;
  }
}

/* =============================================
コンタクトエリア
============================================= */
.ly_contactArea {
  padding: 60px 10%;
  background-color: #F2F2F2;
}
@media screen and (max-width: 560px) {
  .ly_contactArea {
    padding: 60px 5%;
  }
}
.ly_contactArea .el_commonBtn {
  width: 250px;
  margin-right: 40px;
}
@media screen and (max-width: 960px) {
  .ly_contactArea .el_commonBtn {
    margin: 0 auto;
  }
}
.ly_contactArea_wrapper {
  margin: 0 auto;
  max-width: 1200px;
}
.ly_contactArea_cont {
  margin-top: 40px;
  padding: 50px 100px;
  border: 1px solid #707070;
  background-color: white;
}
@media screen and (max-width: 960px) {
  .ly_contactArea_cont {
    padding: 30px;
  }
}
@media screen and (max-width: 560px) {
  .ly_contactArea_cont {
    padding: 30px 10px;
  }
}
.ly_contactArea_ttl {
  padding-bottom: 40px;
  margin-bottom: 50px;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  border-bottom: 1px solid #707070;
}
@media screen and (max-width: 560px) {
  .ly_contactArea_ttl {
    font-size: 18px;
    padding-bottom: 20px;
    margin-bottom: 30px;
  }
}
.ly_contactArea_txt {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .ly_contactArea_txt {
    display: block;
    text-align: center;
  }
}
.ly_contactArea_tel {
  font-family: "Jost", sans-serif;
}
@media screen and (max-width: 960px) {
  .ly_contactArea_tel {
    margin-bottom: 50px;
  }
}
.ly_contactArea_tel p {
  font-size: 40px;
  display: inline-block;
}
.ly_contactArea_tel span {
  font-size: 16px;
}
@media screen and (max-width: 1200px) {
  .ly_contactArea_tel span {
    display: block;
  }
}
.ly_contactArea_tel_ttl {
  display: block;
  font-size: 13px;
  margin-bottom: -10px;
}
@media screen and (max-width: 960px) {
  .ly_contactArea_tel_ttl {
    text-align: left;
  }
}

/* =============================================
フッター
============================================= */
.ly_footer {
  margin-top: 120px;
}
.ly_footer_copyright {
  margin-top: 70px;
  color: white;
}

.ly_footer_navArea {
  padding: 70px 0 40px;
  background-color: black;
  color: white;
  text-align: center;
}
.ly_footer_navArea_cont {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 960px) {
  .ly_footer_navArea_cont {
    display: block;
  }
}
.ly_footer_navArea_logo {
  width: 280px;
}
@media screen and (max-width: 960px) {
  .ly_footer_navArea_logo {
    margin: 0 auto 30px;
  }
}
.ly_footer_navArea_menu {
  display: flex;
  gap: 0 40px;
}
@media screen and (max-width: 960px) {
  .ly_footer_navArea_menu {
    display: block;
  }
}
.ly_footer_navArea_menu li {
  line-height: 2.5;
}
.ly_footer_navArea_menu a {
  color: white;
}

/* =============================================
コンテナー
============================================= */
.ly_inner {
  width: 80%;
  max-width: 1092px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 960px) {
  .ly_inner.ly_bigInner {
    width: 90%;
  }
}

/* =============================================
ヘッダータイトル
============================================= */
.ly_headerTtl {
  margin-top: 200px;
  margin-bottom: 100px;
}
@media screen and (max-width: 960px) {
  .ly_headerTtl {
    margin-top: 100px;
    margin-bottom: 60px;
  }
}
.ly_headerTtl__sub {
  width: 100%;
  max-width: 1366px;
  padding-left: 10%;
  padding-bottom: 30px;
  margin: 90px auto 0;
  border-bottom: 1px solid #BABABA;
}

/* =============================================
図のレイアウト
============================================= */
.ly_figure_cont {
  margin: 70px 0 90px;
}
@media screen and (max-width: 960px) {
  .ly_figure_cont {
    margin: 30px 0 50px;
  }
}
.ly_figure_cont__small {
  width: 80%;
}
@media screen and (max-width: 960px) {
  .ly_figure_cont__small {
    width: 100%;
  }
}
.ly_figure_cont__flex {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
}
.ly_figure_cont .ly_figure_cont__flex_arrow {
  width: 68px;
  height: 30px;
}
@media screen and (max-width: 1200px) {
  .ly_figure_cont .ly_figure_cont__flex_arrow {
    transform: rotate(90deg);
  }
}
@media screen and (max-width: 1200px) {
  .ly_figure_cont__flex {
    flex-wrap: wrap;
    gap: 40px 200px;
  }
  .ly_figure_cont__flex img {
    max-width: 600px;
  }
}
.ly_figure_cont .ly_figure_cont__price {
  margin: 0;
}
.ly_figure_cont .ly_figure_cont__price img {
  width: calc(50% - 10px);
}

/* =============================================
お問い合わせフォーム
============================================= */
.bl_form {
  margin: 120px auto 0;
  max-width: 830px;
}
@media screen and (max-width: 960px) {
  .bl_form {
    max-width: 600px;
    margin-top: 60px;
  }
}
.bl_form .input_non {
  display: none;
}
.bl_form > p {
  text-align: center;
  margin-bottom: 60px;
}
.bl_form dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}
.bl_form dt {
  font-weight: 500;
}
.bl_form dd {
  width: 60%;
}
@media screen and (max-width: 960px) {
  .bl_form dd {
    width: 100%;
  }
}
.bl_form input, .bl_form textarea, .bl_form select {
  padding: 10px;
  width: 100%;
  height: 42px;
  background-color: #F7F7F7;
  border: none;
}
.bl_form textarea {
  height: auto;
}
.bl_form .el_required {
  position: relative;
}
.bl_form .el_required::after {
  content: "※";
  color: #EFA718;
  position: absolute;
  right: -20px;
}
.bl_form_txt {
  margin-bottom: 100px;
  font-size: 15px;
}
.bl_form_txt span {
  font-size: 15px;
}
.bl_form_attention {
  font-size: 14px;
}

/* 送信ボタン */
.el_contactBtn {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}
.el_contactBtn input {
  width: 90%;
  max-width: 350px;
  height: 65px;
  background-color: black;
  color: white;
  font-size: 18px;
}
.el_contactBtn.el_backBtn {
  display: none;
}

/* 選択ボタン */
.bl_form_select {
  position: relative;
}
.bl_form_select::before {
  width: 17px;
  height: 8px;
  content: "";
  background: url("assets/img/figure/arrow_select.svg") center center no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

/* その他 */
.mw_wp_form .error {
  font-size: 10px !important;
  text-align: left;
  color: #B70000;
}

.bl_contact .hp_fw_md {
  margin: 80px auto 25px;
}

.bl_checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 100px;
  position: relative;
  left: -25px;
}
@media screen and (max-width: 560px) {
  .bl_checkbox {
    margin-bottom: 0;
  }
}
.bl_checkbox a, .bl_checkbox span {
  color: #3E3E3E;
  font-size: 15px;
}
.bl_checkbox a {
  border-bottom: 1px solid #8D8D8D;
}
.bl_checkbox .el_required {
  top: -5px;
  right: -20px;
}

.mw_wp_form_confirm .input_non {
  display: block;
}
.mw_wp_form_confirm .confirm_non {
  display: none;
}
.mw_wp_form_confirm .el_contactBtn.el_backBtn {
  display: flex;
}
.mw_wp_form_confirm .bl_form_select::before {
  display: none;
}

/* =============================================
トップページ
============================================= */
.un_fv #mute {
  width: 70px;
  height: 55px;
  background-color: black;
  position: absolute;
  bottom: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 960px) {
  .un_fv #mute {
    width: 60px;
    height: 40px;
    bottom: 15px;
  }
}
@media screen and (max-width: 560px) {
  .un_fv #mute {
    right: 10px;
  }
}
.un_fv #mute img {
  width: 30px;
}
@media screen and (max-width: 960px) {
  .un_fv #mute img {
    width: 20px;
  }
}

.un_fv {
  width: 100%;
  height: 9/25vw;
  position: relative;
}
.un_fv_video {
  width: 100%;
}
@media screen and (max-width: 960px) {
  .un_fv_video {
    padding-top: 60px;
  }
}
.un_fv_logo {
  font-size: 85px;
  color: white;
  font-family: "Jost", sans-serif;
  position: absolute;
  top: 20%;
  left: 10%;
  letter-spacing: 5px;
}
@media screen and (max-width: 960px) {
  .un_fv_logo {
    font-size: 50px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 960px) {
  .un_fv_logo {
    font-size: 30px;
  }
}

.un_banner {
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .un_banner {
    width: 90%;
  }
}
.un_banner_link {
  line-height: 2;
}
.un_banner_link a {
  padding-right: 25px;
  transition: all 0.3s;
  position: relative;
  border-bottom: 1px solid #FFCC66;
  line-height: 1.2;
  color: #EFA718;
}
.un_banner_link a:hover {
  opacity: 0.6;
}
.un_banner_link a::before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  bottom: 1px;
  right: 0;
  background: url(/wp-content/themes/arch_partners/assets/img/common/open-in-new.svg) center center no-repeat;
  background-size: contain;
}

.un_topAbout {
  padding: 0 0 45px;
  width: 90%;
  margin-top: 120px;
  margin-left: auto;
  background-color: #F2F2F2;
}
@media screen and (max-width: 560px) {
  .un_topAbout {
    margin-top: 100px;
  }
}
.un_topAbout_cont {
  width: 80%;
  min-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .un_topAbout_cont {
    min-width: auto;
  }
}
.un_topAbout_txt {
  margin: 0 0 60px;
  max-width: 800px;
}
.un_topAbout .el_commonTtl {
  position: relative;
  top: -60px;
}
@media screen and (max-width: 560px) {
  .un_topAbout .el_commonTtl {
    top: -50px;
  }
}

.un_topService {
  padding: 0 20px;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .un_topService {
    justify-content: left;
  }
}
@media screen and (max-width: 960px) {
  .un_topService {
    display: block;
    padding: 0 5%;
  }
}
.un_topService_right {
  width: 60%;
  background: url(assets/img/top/top_service.png) center center no-repeat;
  background-size: cover;
}
@media screen and (max-width: 960px) {
  .un_topService_right {
    width: 90%;
    height: 300px;
    margin-top: 30px;
    position: absolute;
    top: 120px;
  }
}
@media screen and (max-width: 560px) {
  .un_topService_right {
    top: 90px;
  }
}
.un_topService_txt {
  margin: 60px 0;
}
@media screen and (max-width: 960px) {
  .un_topService_txt {
    margin-bottom: 30px;
    padding-top: 300px;
  }
}

.un_topReason {
  padding: 0 20px;
  max-width: 1300px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  justify-content: space-between;
  gap: 60px;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .un_topReason {
    justify-content: left;
  }
}
@media screen and (max-width: 960px) {
  .un_topReason {
    display: block;
    padding: 0 5%;
  }
}
.un_topReason_left {
  width: 42%;
  background: url(assets/img/top/top_reason.png) center center no-repeat;
  background-size: cover;
}
@media screen and (max-width: 960px) {
  .un_topReason_left {
    width: 90%;
    height: 300px;
    margin-top: 30px;
    position: absolute;
    top: 250px;
  }
}
@media screen and (max-width: 560px) {
  .un_topReason_left {
    position: absolute;
    top: 180px;
  }
}
.un_topReason .un_topReason_ttl {
  margin: 60px 0;
  font-size: 35px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}
@media screen and (max-width: 1200px) {
  .un_topReason .un_topReason_ttl {
    font-size: 30px;
  }
}
@media screen and (max-width: 960px) {
  .un_topReason .un_topReason_ttl {
    margin-top: 30px;
    margin-bottom: 280px;
  }
}
@media screen and (max-width: 560px) {
  .un_topReason .un_topReason_ttl {
    font-size: 20px;
  }
}
@media screen and (max-width: 960px) {
  .un_topReason_txt {
    padding-top: 80px;
  }
}

.un_topNews {
  padding: 80px 0;
  display: flex;
  border-top: 1px solid #A0A0A0;
  border-bottom: 1px solid #A0A0A0;
}
@media screen and (max-width: 960px) {
  .un_topNews {
    padding: 50px 0;
    display: block;
  }
}
.un_topNews_cont {
  width: 80%;
  max-width: 1092px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 960px) {
  .un_topNews_cont {
    display: block;
  }
}
@media screen and (max-width: 560px) {
  .un_topNews_cont {
    width: 90%;
  }
}
.un_topNews_ttl {
  padding-left: 110px;
  font-size: 30px;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  position: relative;
  letter-spacing: 1px;
}
@media screen and (max-width: 960px) {
  .un_topNews_ttl {
    margin-bottom: 30px;
  }
}
.un_topNews_ttl::before {
  content: "";
  width: 90px;
  height: 1px;
  background-color: black;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.un_topNews_txtCont li {
  margin: 0 0 20px;
}
.un_topNews_txtCont li span {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  display: inline-block;
  margin-right: 50px;
}
@media screen and (max-width: 960px) {
  .un_topNews_txtCont li span {
    display: block;
  }
}

.un_topFaq_cont li {
  padding: 20px;
  border-bottom: 1px solid #A0A0A0;
  transition: 0.3s;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 560px) {
  .un_topFaq_cont li {
    padding: 20px 0;
  }
}
.un_topFaq_cont li::after {
  content: "";
  width: 25px;
  height: 32px;
  background: url(assets/img/common/arrow_toggle.svg) center center no-repeat;
  background-size: contain;
  position: absolute;
  top: 30px;
  right: 0;
  transition: 0.3s;
}
@media screen and (max-width: 560px) {
  .un_topFaq_cont li::after {
    width: 15px;
  }
}
.un_topFaq_cont li.active::after {
  transform: rotate(-180deg);
}
.un_topFaq_cont li p {
  padding-left: 50px;
  position: relative;
}
@media screen and (max-width: 960px) {
  .un_topFaq_cont li p {
    padding-left: 30px;
  }
}
.un_topFaq_cont li p::before {
  font-family: "Noto Serif JP", serif;
  position: absolute;
  top: 0;
  left: 0;
}
.un_topFaq_cont li p:nth-child(1) {
  font-size: 17px;
  font-weight: 500;
}
@media screen and (max-width: 560px) {
  .un_topFaq_cont li p:nth-child(1) {
    padding-right: 20px;
    font-size: 15px;
    line-height: 1.3;
  }
}
.un_topFaq_cont li p:nth-child(1)::before {
  content: "Q";
  font-size: 30px;
  color: #EFA718;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 560px) {
  .un_topFaq_cont li p:nth-child(1)::before {
    font-size: 25px;
  }
}
.un_topFaq_cont li p:nth-child(2) {
  margin-top: 30px;
  font-size: 16px;
  display: none;
}
@media screen and (max-width: 560px) {
  .un_topFaq_cont li p:nth-child(2) {
    font-size: 15px;
  }
}
.un_topFaq_cont li p:nth-child(2)::before {
  content: "A";
  font-size: 25px;
  font-weight: 600;
  left: 3px;
}
@media screen and (max-width: 560px) {
  .un_topFaq_cont li p:nth-child(2)::before {
    left: 0;
  }
}

/*============== Width ==============*/
.hp_w5 {
  width: 5%;
  margin: 0 auto;
}

.hp_w10 {
  width: 10%;
  margin: 0 auto;
}

.hp_w15 {
  width: 15%;
  margin: 0 auto;
}

.hp_w20 {
  width: 20%;
  margin: 0 auto;
}

.hp_w25 {
  width: 25%;
  margin: 0 auto;
}

.hp_w30 {
  width: 30%;
  margin: 0 auto;
}

.hp_w35 {
  width: 35%;
  margin: 0 auto;
}

.hp_w40 {
  width: 40%;
  margin: 0 auto;
}

.hp_w45 {
  width: 45%;
  margin: 0 auto;
}

.hp_w50 {
  width: 50%;
  margin: 0 auto;
}

.hp_w55 {
  width: 55%;
  margin: 0 auto;
}

.hp_w60 {
  width: 60%;
  margin: 0 auto;
}

.hp_w65 {
  width: 65%;
  margin: 0 auto;
}

.hp_w70 {
  width: 70%;
  margin: 0 auto;
}

.hp_w75 {
  width: 75%;
  margin: 0 auto;
}

.hp_w80 {
  width: 80%;
  margin: 0 auto;
}

.hp_w85 {
  width: 85%;
  margin: 0 auto;
}

.hp_w90 {
  width: 90%;
  margin: 0 auto;
}

.hp_w95 {
  width: 95%;
  margin: 0 auto;
}

.hp_w100 {
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 960px) {
  .hp_w5 {
    width: 90%;
  }
  .hp_w10 {
    width: 90%;
  }
  .hp_w15 {
    width: 90%;
  }
  .hp_w20 {
    width: 90%;
  }
  .hp_w25 {
    width: 90%;
  }
  .hp_w30 {
    width: 90%;
  }
  .hp_w35 {
    width: 90%;
  }
  .hp_w40 {
    width: 90%;
  }
  .hp_w45 {
    width: 90%;
  }
  .hp_w50 {
    width: 90%;
  }
  .hp_w55 {
    width: 90%;
  }
  .hp_w60 {
    width: 90%;
  }
  .hp_w65 {
    width: 90%;
  }
  .hp_w70 {
    width: 90%;
  }
  .hp_w75 {
    width: 90%;
  }
  .hp_w80 {
    width: 90%;
  }
  .hp_w85 {
    width: 90%;
  }
  .hp_w90 {
    width: 90%;
  }
  .hp_w95 {
    width: 90%;
  }
  .hp_w100 {
    width: 90%;
  }
}
/*============== Padding・Margin ==============*/
.hp_pdb_10 {
  padding-bottom: 10px;
}
@media screen and (max-width: 560px) {
  .hp_pdb_10 {
    padding-bottom: 5px;
  }
}

.hp_mgt_10 {
  margin-top: 10px;
}
@media screen and (max-width: 560px) {
  .hp_mgt_10 {
    margin-top: 5px;
  }
}

.hp_mgr_10 {
  margin-right: 10px;
}
@media screen and (max-width: 560px) {
  .hp_mgr_10 {
    margin-right: 5px;
  }
}

.hp_pdb_20 {
  padding-bottom: 20px;
}
@media screen and (max-width: 560px) {
  .hp_pdb_20 {
    padding-bottom: 10px;
  }
}

.hp_mgt_20 {
  margin-top: 20px;
}
@media screen and (max-width: 560px) {
  .hp_mgt_20 {
    margin-top: 10px;
  }
}

.hp_mgr_20 {
  margin-right: 20px;
}
@media screen and (max-width: 560px) {
  .hp_mgr_20 {
    margin-right: 10px;
  }
}

.hp_pdb_30 {
  padding-bottom: 30px;
}
@media screen and (max-width: 560px) {
  .hp_pdb_30 {
    padding-bottom: 15px;
  }
}

.hp_mgt_30 {
  margin-top: 30px;
}
@media screen and (max-width: 560px) {
  .hp_mgt_30 {
    margin-top: 15px;
  }
}

.hp_mgr_30 {
  margin-right: 30px;
}
@media screen and (max-width: 560px) {
  .hp_mgr_30 {
    margin-right: 15px;
  }
}

.hp_pdb_40 {
  padding-bottom: 40px;
}
@media screen and (max-width: 560px) {
  .hp_pdb_40 {
    padding-bottom: 20px;
  }
}

.hp_mgt_40 {
  margin-top: 40px;
}
@media screen and (max-width: 560px) {
  .hp_mgt_40 {
    margin-top: 20px;
  }
}

.hp_mgr_40 {
  margin-right: 40px;
}
@media screen and (max-width: 560px) {
  .hp_mgr_40 {
    margin-right: 20px;
  }
}

.hp_pdb_50 {
  padding-bottom: 50px;
}
@media screen and (max-width: 560px) {
  .hp_pdb_50 {
    padding-bottom: 25px;
  }
}

.hp_mgt_50 {
  margin-top: 50px;
}
@media screen and (max-width: 560px) {
  .hp_mgt_50 {
    margin-top: 25px;
  }
}

.hp_mgr_50 {
  margin-right: 50px;
}
@media screen and (max-width: 560px) {
  .hp_mgr_50 {
    margin-right: 25px;
  }
}

.hp_pdb_60 {
  padding-bottom: 60px;
}
@media screen and (max-width: 560px) {
  .hp_pdb_60 {
    padding-bottom: 30px;
  }
}

.hp_mgt_60 {
  margin-top: 60px;
}
@media screen and (max-width: 560px) {
  .hp_mgt_60 {
    margin-top: 30px;
  }
}

.hp_mgr_60 {
  margin-right: 60px;
}
@media screen and (max-width: 560px) {
  .hp_mgr_60 {
    margin-right: 30px;
  }
}

.hp_pdb_70 {
  padding-bottom: 70px;
}
@media screen and (max-width: 560px) {
  .hp_pdb_70 {
    padding-bottom: 35px;
  }
}

.hp_mgt_70 {
  margin-top: 70px;
}
@media screen and (max-width: 560px) {
  .hp_mgt_70 {
    margin-top: 35px;
  }
}

.hp_mgr_70 {
  margin-right: 70px;
}
@media screen and (max-width: 560px) {
  .hp_mgr_70 {
    margin-right: 35px;
  }
}

.hp_pdb_80 {
  padding-bottom: 80px;
}
@media screen and (max-width: 560px) {
  .hp_pdb_80 {
    padding-bottom: 40px;
  }
}

.hp_mgt_80 {
  margin-top: 80px;
}
@media screen and (max-width: 560px) {
  .hp_mgt_80 {
    margin-top: 40px;
  }
}

.hp_mgr_80 {
  margin-right: 80px;
}
@media screen and (max-width: 560px) {
  .hp_mgr_80 {
    margin-right: 40px;
  }
}

.hp_pdb_90 {
  padding-bottom: 90px;
}
@media screen and (max-width: 560px) {
  .hp_pdb_90 {
    padding-bottom: 45px;
  }
}

.hp_mgt_90 {
  margin-top: 90px;
}
@media screen and (max-width: 560px) {
  .hp_mgt_90 {
    margin-top: 45px;
  }
}

.hp_mgr_90 {
  margin-right: 90px;
}
@media screen and (max-width: 560px) {
  .hp_mgr_90 {
    margin-right: 45px;
  }
}

.hp_pdb_100 {
  padding-bottom: 100px;
}
@media screen and (max-width: 560px) {
  .hp_pdb_100 {
    padding-bottom: 50px;
  }
}

.hp_mgt_100 {
  margin-top: 100px;
}
@media screen and (max-width: 560px) {
  .hp_mgt_100 {
    margin-top: 50px;
  }
}

.hp_mgr_100 {
  margin-right: 100px;
}
@media screen and (max-width: 560px) {
  .hp_mgr_100 {
    margin-right: 50px;
  }
}

.hp_pdb_110 {
  padding-bottom: 110px;
}
@media screen and (max-width: 560px) {
  .hp_pdb_110 {
    padding-bottom: 55px;
  }
}

.hp_mgt_110 {
  margin-top: 110px;
}
@media screen and (max-width: 560px) {
  .hp_mgt_110 {
    margin-top: 55px;
  }
}

.hp_mgr_110 {
  margin-right: 110px;
}
@media screen and (max-width: 560px) {
  .hp_mgr_110 {
    margin-right: 55px;
  }
}

.hp_pdb_120 {
  padding-bottom: 120px;
}
@media screen and (max-width: 560px) {
  .hp_pdb_120 {
    padding-bottom: 60px;
  }
}

.hp_mgt_120 {
  margin-top: 120px;
}
@media screen and (max-width: 560px) {
  .hp_mgt_120 {
    margin-top: 60px;
  }
}

.hp_mgr_120 {
  margin-right: 120px;
}
@media screen and (max-width: 560px) {
  .hp_mgr_120 {
    margin-right: 60px;
  }
}

.hp_pdb_130 {
  padding-bottom: 130px;
}
@media screen and (max-width: 560px) {
  .hp_pdb_130 {
    padding-bottom: 65px;
  }
}

.hp_mgt_130 {
  margin-top: 130px;
}
@media screen and (max-width: 560px) {
  .hp_mgt_130 {
    margin-top: 65px;
  }
}

.hp_mgr_130 {
  margin-right: 130px;
}
@media screen and (max-width: 560px) {
  .hp_mgr_130 {
    margin-right: 65px;
  }
}

.hp_pdb_140 {
  padding-bottom: 140px;
}
@media screen and (max-width: 560px) {
  .hp_pdb_140 {
    padding-bottom: 70px;
  }
}

.hp_mgt_140 {
  margin-top: 140px;
}
@media screen and (max-width: 560px) {
  .hp_mgt_140 {
    margin-top: 70px;
  }
}

.hp_mgr_140 {
  margin-right: 140px;
}
@media screen and (max-width: 560px) {
  .hp_mgr_140 {
    margin-right: 70px;
  }
}

.hp_pdb_150 {
  padding-bottom: 150px;
}
@media screen and (max-width: 560px) {
  .hp_pdb_150 {
    padding-bottom: 75px;
  }
}

.hp_mgt_150 {
  margin-top: 150px;
}
@media screen and (max-width: 560px) {
  .hp_mgt_150 {
    margin-top: 75px;
  }
}

.hp_mgr_150 {
  margin-right: 150px;
}
@media screen and (max-width: 560px) {
  .hp_mgr_150 {
    margin-right: 75px;
  }
}

.hp_pdb_160 {
  padding-bottom: 160px;
}
@media screen and (max-width: 560px) {
  .hp_pdb_160 {
    padding-bottom: 80px;
  }
}

.hp_mgt_160 {
  margin-top: 160px;
}
@media screen and (max-width: 560px) {
  .hp_mgt_160 {
    margin-top: 80px;
  }
}

.hp_mgr_160 {
  margin-right: 160px;
}
@media screen and (max-width: 560px) {
  .hp_mgr_160 {
    margin-right: 80px;
  }
}

.hp_pdb_170 {
  padding-bottom: 170px;
}
@media screen and (max-width: 560px) {
  .hp_pdb_170 {
    padding-bottom: 85px;
  }
}

.hp_mgt_170 {
  margin-top: 170px;
}
@media screen and (max-width: 560px) {
  .hp_mgt_170 {
    margin-top: 85px;
  }
}

.hp_mgr_170 {
  margin-right: 170px;
}
@media screen and (max-width: 560px) {
  .hp_mgr_170 {
    margin-right: 85px;
  }
}

.hp_pdb_180 {
  padding-bottom: 180px;
}
@media screen and (max-width: 560px) {
  .hp_pdb_180 {
    padding-bottom: 90px;
  }
}

.hp_mgt_180 {
  margin-top: 180px;
}
@media screen and (max-width: 560px) {
  .hp_mgt_180 {
    margin-top: 90px;
  }
}

.hp_mgr_180 {
  margin-right: 180px;
}
@media screen and (max-width: 560px) {
  .hp_mgr_180 {
    margin-right: 90px;
  }
}

.hp_pdb_190 {
  padding-bottom: 190px;
}
@media screen and (max-width: 560px) {
  .hp_pdb_190 {
    padding-bottom: 95px;
  }
}

.hp_mgt_190 {
  margin-top: 190px;
}
@media screen and (max-width: 560px) {
  .hp_mgt_190 {
    margin-top: 95px;
  }
}

.hp_mgr_190 {
  margin-right: 190px;
}
@media screen and (max-width: 560px) {
  .hp_mgr_190 {
    margin-right: 95px;
  }
}

.hp_pdb_200 {
  padding-bottom: 200px;
}
@media screen and (max-width: 560px) {
  .hp_pdb_200 {
    padding-bottom: 100px;
  }
}

.hp_mgt_200 {
  margin-top: 200px;
}
@media screen and (max-width: 560px) {
  .hp_mgt_200 {
    margin-top: 100px;
  }
}

.hp_mgr_200 {
  margin-right: 200px;
}
@media screen and (max-width: 560px) {
  .hp_mgr_200 {
    margin-right: 100px;
  }
}

.hp_mgb_-60 {
  margin-bottom: -60px;
}

/* =============================================
改行調整
============================================= */
.hp_inline_block {
  display: inline-block;
}

/* =============================================
フォントカラー
============================================= */
.hp_fc_main {
  color: #EFA718;
}

/* =============================================
行間
============================================= */
.hp_lineheight_2 {
  line-height: 2;
}

/* =============================================
SP版のみ課題
============================================= */
@media screen and (max-width: 560px) {
  .pc_only {
    display: none;
  }
}

/* =============================================
ご挨拶
============================================= */
.un_greeting_flex {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}
@media screen and (max-width: 960px) {
  .un_greeting_flex {
    display: block;
  }
}
.un_greeting_flex h5 {
  margin-bottom: 60px;
  padding-bottom: 20px;
  font-size: 40px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  border-bottom: 1px solid #A0A0A0;
}
@media screen and (max-width: 960px) {
  .un_greeting_flex h5 {
    padding-bottom: 10px;
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 25px;
  }
}
.un_greeting_flex_right_img {
  margin-top: 20px;
  text-align: right;
}
@media screen and (max-width: 960px) {
  .un_greeting_flex_right_img {
    text-align: center;
  }
}
.un_greeting_flex_right_img img {
  max-width: 250px;
}
@media screen and (max-width: 960px) {
  .un_greeting_img {
    height: 100px;
  }
}
.un_greeting_nameCont {
  text-align: right;
  margin-left: auto;
}
.un_greeting_nameCont_box {
  display: inline-block;
  text-align: left;
}
.un_greeting_nameCont_box .un_greeting_name {
  font-size: 25px;
  font-family: "Noto Serif JP", serif;
}

.company .el_smallTtl {
  margin-bottom: 50px;
  font-family: "Noto Serif JP", serif;
  font-size: 35px;
}
@media screen and (max-width: 960px) {
  .company .el_smallTtl {
    font-size: 30px;
  }
}
@media screen and (max-width: 560px) {
  .company .el_smallTtl {
    font-size: 25px;
  }
}

/* =============================================
アーカイブ
============================================= */
.un_news li {
  padding: 45px 0;
  border-bottom: 1px solid #B9B9B9;
  display: flex;
  justify-content: left;
}
@media screen and (max-width: 960px) {
  .un_news li {
    padding: 20px 0;
    display: block;
  }
}
.un_news p {
  font-family: "Noto Serif JP", serif;
}
.un_news_date {
  width: 20%;
}

/* =============================================
シングル
============================================= */
.un_single_ttl {
  padding: 10px 25px;
  margin-bottom: 80px;
  font-size: 35px;
  font-family: "Noto Serif JP", serif;
  background-color: #FFCC66;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .un_single_ttl {
    font-size: 25px;
    margin-bottom: 60px;
  }
}
.un_single_cont h2 {
  margin-top: 100px;
  margin-bottom: 40px;
  padding-bottom: 5px;
  font-size: 30px;
  font-family: "Noto Serif JP", serif;
  font-weight: normal;
  border-bottom: 4px solid #FFCC66;
}
@media screen and (max-width: 960px) {
  .un_single_cont h2 {
    font-size: 22px;
  }
}
@media screen and (max-width: 560px) {
  .un_single_cont h2 {
    margin-top: 60px;
  }
}
.un_single_cont h2 strong {
  font-weight: normal;
}
.un_single_cont h3 {
  margin-top: 70px;
  margin-bottom: 30px;
  padding-left: 25px;
  position: relative;
  font-size: 22px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 560px) {
  .un_single_cont h3 {
    font-size: 18px;
  }
}
.un_single_cont h3::before {
  content: "";
  width: 10px;
  height: 100%;
  background-color: #FFCC66;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.un_single_cont p {
  line-height: 2;
}
.un_single_cont a {
  color: #EFA718;
  border-bottom: 1px solid #FFCC66;
}
.un_single_cont img {
  width: 60%;
  margin: 0px 0 30px;
}
@media screen and (max-width: 560px) {
  .un_single_cont img {
    width: 100%;
  }
}

/*============== ページネーション ==============*/
.el_pagenation {
  margin-top: 95px;
}

.page-numbers {
  display: flex;
  gap: 18px;
  justify-content: center;
}

.page-numbers li,
.page-numbers span {
  width: 48px;
  height: 48px;
  font-size: 18px;
  background-color: white;
  border: 1px solid #364CA3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-numbers a {
  color: #364CA3;
}

.page-numbers span {
  background-color: #364CA3;
  color: white;
}

/* =============================================
対談動画
============================================= */
@media screen and (max-width: 560px) {
  .un_single_video {
    padding-top: 0;
  }
}

/* =============================================
お知らせ 
中小M&Aガイドライン（第2版）遵守の宣言について
============================================= */
.postid-200 ol {
  padding-left: 2em;
}

.postid-200 ol li {
  list-style-type: decimal;
  font-weight: 500;
  line-height: 1.8;
}

.postid-200 ol ol {
  padding-left: 0;
}

.postid-200 ol ul li {
  list-style-type: none;
  position: relative;
  padding-left: 2em;
  font-weight: normal;
}

.postid-200 ol ul li:before {
  content: "・";
  padding-left: -2em;
  display: inline-block;
}

.postid-200 ol ol li {
  list-style-type: none;
  counter-increment: cnt;
  position: relative;
  font-weight: normal;
  padding-left: 3rem;
}

.postid-200 ol li:before {
  content: "(" counter(cnt) ")";
  display: inline-block;
  padding-left: 0;
  width: 1.5em;
  text-align: right;
  position: absolute;
  top: 0;
  left: 0;
}

/* =============================================
料金ページ
============================================= */
.un_price_txt {
  margin-bottom: -60px;
  font-size: 25px;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  .un_price_txt {
    font-size: 20px;
    margin-bottom: -20px;
  }
}
@media screen and (max-width: 560px) {
  .un_price_pc {
    display: none;
  }
}
.un_price_sp {
  display: none;
}
@media screen and (max-width: 560px) {
  .un_price_sp {
    display: block;
  }
}

/* =============================================
サービスページ
============================================= */
.un_service_flow img {
  width: 100%;
}
@media screen and (max-width: 560px) {
  .un_service_flow img {
    width: auto;
    height: 420px;
  }
}

.un_service2_1 img {
  height: 400px;
}
@media screen and (max-width: 960px) {
  .un_service2_1 img {
    height: 350px;
  }
}

.un_service2_2 img {
  height: 300px;
}

.un_service_consulsp {
  display: none;
}
@media screen and (max-width: 560px) {
  .un_service_consulsp {
    display: block;
  }
}

@media screen and (max-width: 560px) {
  .un_service_consulpc {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */