@charset "UTF-8";
/*============== Fonts ==============*/
/*============== Color ==============*/
/*============== ブレイクポイント ==============*/
/* FV拡大 */
@keyframes fadezoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
.js_fvAnimation {
  animation: fadezoom 5s 0s forwards;
}

/*　ハンバーガーメニューボタン　*/
.hamburger {
  display: block;
  position: fixed;
  z-index: 3;
  right: 0;
  top: 0;
  width: 76px;
  height: 76px;
  cursor: pointer;
  text-align: center;
  background-color: #C1272D;
  z-index: 11;
}

.hamburger span {
  display: block;
  position: absolute;
  width: 35px;
  height: 2px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 23px;
}

.hamburger span:nth-child(2) {
  top: 36px;
}

.hamburger span:nth-child(3) {
  top: 49px;
}

/* スマホメニューを開いてる時のボタン */
.hamburger.active {
  background: none;
}

.hamburger.active span:nth-child(1) {
  top: 36px;
  left: 20px;
  background: #fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 36px;
  left: 20px;
  background: #fff;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* メニュー背景　*/
nav.globalMenuSp {
  position: fixed;
  top: 0;
  left: 0;
  background: #696969;
  text-align: center;
  width: 100%;
  height: 100%;
  display: block;
  transform: translateX(100%);
  transition: all 0.6s;
  z-index: 10;
}

nav.globalMenuSp ul {
  margin: 0 auto;
  width: 100%;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

nav.globalMenuSp ul li {
  width: 100%;
  padding: 1em 0;
  transition: 0.4s all;
  font-size: 2rem;
}

nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}

nav.globalMenuSp ul li:hover {
  background: #ddd;
}

/* クリックでjQueryで追加・削除 */
nav.globalMenuSp.active {
  display: block;
  transform: translateX(0%);
}

/* メニュー展開中スクロール禁止 */
body.fixed {
  width: 100%;
  height: 100%;
  position: fixed;
}

.bl_flexbox {
  display: flex;
  justify-content: space-between;
}

.bl_flexbox__wrap {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.bl_flexbox__rev {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}

.bl_flexbox__start {
  justify-content: start;
}

#banner {
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  margin: 80px auto 130px;
  gap: 60px;
}

.bl_banner {
  width: 100%;
}

.bl_banner figure {
  width: 60%;
  margin: 0 auto;
}

.bl_banner__s figure {
  width: 32%;
}

@media screen and (max-width: 960px) {
  h2, h3, h4 {
    text-align: center;
    margin-top: 10px;
  }
  .bl_flexbox, .bl_flexbox__rev {
    display: block;
  }
  .el_btn__s {
    width: 100%;
    margin: auto;
  }
  .el_header_logo {
    width: 95px;
    padding: 0;
    padding-top: 10px;
  }
  #banner {
    width: 90%;
    margin: 70px auto 0px;
    gap: 30px;
    padding: 20px 0;
  }
  .bl_banner figure {
    width: 100%;
    margin: 0 auto;
  }
  .bl_banner__s figure {
    width: 50%;
  }
}
/*============== 画像とテキストのメディアカード ==============*/
.bl_mediaCard {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 960px) {
  .bl_mediaCard {
    display: block;
  }
}
.bl_mediaCard_item {
  width: 27%;
}
.bl_mediaCard_item figure {
  margin-bottom: 0;
}
@media screen and (max-width: 960px) {
  .bl_mediaCard_item {
    padding: 20px;
    width: 100%;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    text-align: left;
    background-color: white;
  }
}
@media screen and (max-width: 560px) {
  .bl_mediaCard_item {
    margin-bottom: 30px;
  }
}
.bl_mediaCard_img {
  background: url(assets/img/service/service_1.png) no-repeat center center/cover;
  width: 100%;
  height: 18vw;
  margin-bottom: 15px;
}
.bl_mediaCard_img.bl_mediaCard_img2 {
  background-image: url(assets/img/service/service_2.png);
}
.bl_mediaCard_img.bl_mediaCard_img3 {
  background-image: url(assets/img/service/service_3.png);
}
@media screen and (max-width: 960px) {
  .bl_mediaCard_img {
    margin-bottom: 0;
    width: 45%;
    height: 20vw;
  }
}
@media screen and (max-width: 560px) {
  .bl_mediaCard_img {
    width: 100%;
    height: 30vw;
  }
}

/*============== アイコンメディア ==============*/
.bl_iconMedia {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 100px 0;
  text-align: center;
}
.bl_iconMedia_item {
  width: 26%;
}
.bl_iconMedia_item img {
  width: 80px;
  margin: 0 auto;
}
.bl_iconMedia_item p {
  color: #C1272D;
  font-weight: 500;
}
.bl_iconMedia_item .bl_iconMedia_attention {
  font-size: 0.9rem;
  color: black;
  line-height: 1.5rem;
}

/*============== テーブル ==============*/
.bl_table {
  width: 100%;
}
.bl_table th, .bl_table td {
  border-top: 1px solid #707070;
  padding: 18px;
}
@media screen and (max-width: 960px) {
  .bl_table {
    text-align: left;
  }
  .bl_table th, .bl_table td {
    width: 100%;
    display: block;
    margin: auto;
  }
  .bl_table th {
    padding-bottom: 10px;
    border: none;
  }
}

/*============== ボタン形を全面リンクにする ==============*/
.ly_header_globalNavi a,
.el_btn a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 13;
}

/*============== 四角いボタン ==============*/
.el_btn {
  width: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  letter-spacing: 0.2rem;
  position: relative;
  transition: all 0.4s ease-out;
  cursor: pointer;
  border: #C1272D 1px solid;
  overflow: hidden;
}

.el_btn__s {
  width: 300px;
  padding: 1.4rem 3rem;
  font-size: 1.4rem;
  box-sizing: border-box;
}

.el_btn__l {
  max-width: 400px;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  font-size: 1.6rem;
}

.el_btn p {
  z-index: 2;
}

.el_btn__s:hover, .el_btn__l:hover {
  color: #C1272D;
}

.el_btn__s::before, .el_btn__s::after,
.el_btn__l::before, .el_btn__l::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  transition: all 0.3s;
  z-index: 1;
}

.el_btn__s::before, .el_btn__l::before {
  width: 0%;
  background: white;
}

.el_btn__s::after,
.el_btn__l::after {
  background: #C1272D;
  width: 100%;
}

.el_btn__s:hover::before, .el_btn__l:hover::before {
  width: 100%;
  transition-delay: 0.4s;
}

.el_btn__s:hover::after, .el_btn__l:hover::after {
  width: 0%;
}

.el_btn_contact {
  font-size: 1.4rem;
}

/* ---------------------------
elクラス
---------------------------*/
.el_yohaku {
  height: calc(400px - 20vw);
  width: 100%;
}

.el_stripe {
  width: 100%;
  height: 100%;
  background-size: auto auto;
  background-color: rgb(255, 255, 255);
  background-image: repeating-linear-gradient(0deg, transparent, transparent 11px, rgb(230, 231, 244) 11px, rgb(230, 231, 244) 12px);
  z-index: -1;
}

.ly_inner {
  max-width: 900px;
  margin: 0 auto;
}

/* ---------------------------
下層ページ各タイトル
---------------------------*/
.bl_sub_ttl {
  width: 77%;
  margin-bottom: 115px;
}

.bl_sub_ttl hr {
  color: #707070;
  position: relative;
  right: 4rem;
}

.bl_sub_ttlTxt > h2, .bl_sub_ttlTxt > p {
  position: relative;
  left: 10rem;
}

.bl_sub_ttlTxt > p {
  margin-top: 25px;
}

.bl_sub_ttl h2 {
  font-size: 4.3rem;
  font-family: "Sawarabi Mincho", serif;
  margin-bottom: 20px;
  color: black;
}

.bl_sub_subTtl {
  font-family: "Noto Serif JP", serif;
  font-size: 1.6rem;
  color: #C1272D;
}

main:not(.un_top) {
  padding-top: 150px;
}

.bl_service_sp_ttl {
  display: none;
}

@media screen and (max-width: 1200px) {
  .bl_service_sp_ttl {
    display: block;
  }
}
@media screen and (max-width: 960px) {
  main:not(.un_top, #ly_form_thenks) {
    padding-top: 40px;
  }
  main:not(.un_top) {
    padding-bottom: 0;
  }
  .bl_sub_ttl {
    background-color: white;
    width: 100%;
    padding-top: 40px;
    padding-bottom: 50px;
    margin-bottom: 18px;
  }
  #ly_base .bl_sub_ttl {
    margin-bottom: 0;
  }
  .bl_sub_ttl hr {
    width: 70%;
    right: auto;
    left: auto;
  }
  .bl_sub_ttlTxt > h2, .bl_sub_ttlTxt > p {
    left: auto;
    text-align: center;
  }
  .bl_sub_ttlTxt > h2 {
    font-size: 3rem;
  }
}
@media screen and (max-width: 560px) {
  .bl_sub_ttlTxt > p {
    width: 80%;
    margin: auto;
    margin-top: 25px;
  }
}
/*============== 上に線があるタイトル ==============*/
.el_topLine_ttl {
  font-size: 2.9rem;
  color: black;
  text-align: center;
  position: relative;
  margin-bottom: 80px;
}
@media screen and (max-width: 960px) {
  .el_topLine_ttl {
    margin-bottom: 30px;
  }
}

.el_topLine_ttl::before {
  content: "";
  width: 9.6rem;
  height: 5px;
  background-color: #C1272D;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.el_ttlDeco {
  font-family: "Sawarabi Mincho", serif;
  font-size: 1rem;
  letter-spacing: 0.2rem;
  display: block;
}

/* ページネーション */
.el_pagenation {
  text-align: center;
}

.el_pagenation a {
  color: black;
  font-size: 1.6rem;
}

/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark

font-family: 'Noto Sans JP', sans-serif;
font-family: $ttl_font;
font-family: $english_font;
*/
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;
}

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;
  /* overflow-y: scroll; */
}

p, th, td {
  font-size: 14px;
  line-height: 2.5rem;
  font-weight: normal;
}

h1, h2, h3, h4 {
  font-family: "Sawarabi Mincho";
  font-weight: normal;
  color: #C1272D;
  letter-spacing: 0.5rem;
}

h2 {
  font-size: 47px;
}

h3 {
  font-size: 43px;
}

h4 {
  font-size: 35px;
  margin-bottom: 50px;
}

h5 {
  font-family: "Noto Serif JP", serif;
  font-weight: normal;
  font-size: 20px;
  letter-spacing: 0.5rem;
  color: black;
}

.un_top h2, .un_top h3, .un_top h4 {
  font-family: "Noto Serif JP", serif;
  font-weight: normal;
}

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: white;
  text-decoration: none;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  cursor: pointer;
}

footer a, .bl_news_item a {
  color: black;
}

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

input[type=radio], input[name=birthday_day],
input[type=checkbox] {
  -webkit-appearance: auto;
}

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

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

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

del {
  text-decoration: line-through;
}

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

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

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

/* jsが読み込まれてからslickのスライダーを表示する */
.slider {
  display: none;
  height: 0;
}

.slider.slick-initialized {
  display: block; /*slick-initializedが付与されたら表示*/
}

@media screen and (max-width: 960px) {
  h2, h3, h4, h5 {
    text-align: center;
    letter-spacing: 0;
  }
}
/****************************************

Helperクラス

*****************************************/
/*============== 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_pdt_10 {
  padding-top: 10px;
}

.hp_pdb_10 {
  padding-bottom: 10px;
}

.hp_mgt_10 {
  margin-top: 10px;
}

.hp_mgr_10 {
  margin-right: 10px;
}

.hp_mgb_10 {
  margin-bottom: 10px;
}

@media screen and (max-width: 960px) {
  .hp_pdt_10 {
    padding-top: 6px;
  }
  .hp_pdb_10 {
    padding-bottom: 6px;
  }
  .hp_mgt_10 {
    margin-top: 6px;
  }
  .hp_mgr_10 {
    margin-right: 6px;
  }
  .hp_mgb_10 {
    margin-bottom: 6px;
  }
}
@media screen and (max-width: 560px) {
  .hp_pdb_10 {
    padding-bottom: 3px;
  }
  .hp_mgt_10 {
    margin-top: 3px;
  }
  .hp_mgr_10 {
    margin-right: 3px;
  }
  .hp_mgb_10 {
    margin-bottom: 3px;
  }
}
.hp_pdt_20 {
  padding-top: 20px;
}

.hp_pdb_20 {
  padding-bottom: 20px;
}

.hp_mgt_20 {
  margin-top: 20px;
}

.hp_mgr_20 {
  margin-right: 20px;
}

.hp_mgb_20 {
  margin-bottom: 20px;
}

@media screen and (max-width: 960px) {
  .hp_pdt_20 {
    padding-top: 12px;
  }
  .hp_pdb_20 {
    padding-bottom: 12px;
  }
  .hp_mgt_20 {
    margin-top: 12px;
  }
  .hp_mgr_20 {
    margin-right: 12px;
  }
  .hp_mgb_20 {
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 560px) {
  .hp_pdb_20 {
    padding-bottom: 6px;
  }
  .hp_mgt_20 {
    margin-top: 6px;
  }
  .hp_mgr_20 {
    margin-right: 6px;
  }
  .hp_mgb_20 {
    margin-bottom: 6px;
  }
}
.hp_pdt_30 {
  padding-top: 30px;
}

.hp_pdb_30 {
  padding-bottom: 30px;
}

.hp_mgt_30 {
  margin-top: 30px;
}

.hp_mgr_30 {
  margin-right: 30px;
}

.hp_mgb_30 {
  margin-bottom: 30px;
}

@media screen and (max-width: 960px) {
  .hp_pdt_30 {
    padding-top: 18px;
  }
  .hp_pdb_30 {
    padding-bottom: 18px;
  }
  .hp_mgt_30 {
    margin-top: 18px;
  }
  .hp_mgr_30 {
    margin-right: 18px;
  }
  .hp_mgb_30 {
    margin-bottom: 18px;
  }
}
@media screen and (max-width: 560px) {
  .hp_pdb_30 {
    padding-bottom: 9px;
  }
  .hp_mgt_30 {
    margin-top: 9px;
  }
  .hp_mgr_30 {
    margin-right: 9px;
  }
  .hp_mgb_30 {
    margin-bottom: 9px;
  }
}
.hp_pdt_40 {
  padding-top: 40px;
}

.hp_pdb_40 {
  padding-bottom: 40px;
}

.hp_mgt_40 {
  margin-top: 40px;
}

.hp_mgr_40 {
  margin-right: 40px;
}

.hp_mgb_40 {
  margin-bottom: 40px;
}

@media screen and (max-width: 960px) {
  .hp_pdt_40 {
    padding-top: 24px;
  }
  .hp_pdb_40 {
    padding-bottom: 24px;
  }
  .hp_mgt_40 {
    margin-top: 24px;
  }
  .hp_mgr_40 {
    margin-right: 24px;
  }
  .hp_mgb_40 {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 560px) {
  .hp_pdb_40 {
    padding-bottom: 12px;
  }
  .hp_mgt_40 {
    margin-top: 12px;
  }
  .hp_mgr_40 {
    margin-right: 12px;
  }
  .hp_mgb_40 {
    margin-bottom: 12px;
  }
}
.hp_pdt_50 {
  padding-top: 50px;
}

.hp_pdb_50 {
  padding-bottom: 50px;
}

.hp_mgt_50 {
  margin-top: 50px;
}

.hp_mgr_50 {
  margin-right: 50px;
}

.hp_mgb_50 {
  margin-bottom: 50px;
}

@media screen and (max-width: 960px) {
  .hp_pdt_50 {
    padding-top: 30px;
  }
  .hp_pdb_50 {
    padding-bottom: 30px;
  }
  .hp_mgt_50 {
    margin-top: 30px;
  }
  .hp_mgr_50 {
    margin-right: 30px;
  }
  .hp_mgb_50 {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 560px) {
  .hp_pdb_50 {
    padding-bottom: 15px;
  }
  .hp_mgt_50 {
    margin-top: 15px;
  }
  .hp_mgr_50 {
    margin-right: 15px;
  }
  .hp_mgb_50 {
    margin-bottom: 15px;
  }
}
.hp_pdt_60 {
  padding-top: 60px;
}

.hp_pdb_60 {
  padding-bottom: 60px;
}

.hp_mgt_60 {
  margin-top: 60px;
}

.hp_mgr_60 {
  margin-right: 60px;
}

.hp_mgb_60 {
  margin-bottom: 60px;
}

@media screen and (max-width: 960px) {
  .hp_pdt_60 {
    padding-top: 36px;
  }
  .hp_pdb_60 {
    padding-bottom: 36px;
  }
  .hp_mgt_60 {
    margin-top: 36px;
  }
  .hp_mgr_60 {
    margin-right: 36px;
  }
  .hp_mgb_60 {
    margin-bottom: 36px;
  }
}
@media screen and (max-width: 560px) {
  .hp_pdb_60 {
    padding-bottom: 18px;
  }
  .hp_mgt_60 {
    margin-top: 18px;
  }
  .hp_mgr_60 {
    margin-right: 18px;
  }
  .hp_mgb_60 {
    margin-bottom: 18px;
  }
}
.hp_pdt_70 {
  padding-top: 70px;
}

.hp_pdb_70 {
  padding-bottom: 70px;
}

.hp_mgt_70 {
  margin-top: 70px;
}

.hp_mgr_70 {
  margin-right: 70px;
}

.hp_mgb_70 {
  margin-bottom: 70px;
}

@media screen and (max-width: 960px) {
  .hp_pdt_70 {
    padding-top: 42px;
  }
  .hp_pdb_70 {
    padding-bottom: 42px;
  }
  .hp_mgt_70 {
    margin-top: 42px;
  }
  .hp_mgr_70 {
    margin-right: 42px;
  }
  .hp_mgb_70 {
    margin-bottom: 42px;
  }
}
@media screen and (max-width: 560px) {
  .hp_pdb_70 {
    padding-bottom: 21px;
  }
  .hp_mgt_70 {
    margin-top: 21px;
  }
  .hp_mgr_70 {
    margin-right: 21px;
  }
  .hp_mgb_70 {
    margin-bottom: 21px;
  }
}
.hp_pdt_80 {
  padding-top: 80px;
}

.hp_pdb_80 {
  padding-bottom: 80px;
}

.hp_mgt_80 {
  margin-top: 80px;
}

.hp_mgr_80 {
  margin-right: 80px;
}

.hp_mgb_80 {
  margin-bottom: 80px;
}

@media screen and (max-width: 960px) {
  .hp_pdt_80 {
    padding-top: 48px;
  }
  .hp_pdb_80 {
    padding-bottom: 48px;
  }
  .hp_mgt_80 {
    margin-top: 48px;
  }
  .hp_mgr_80 {
    margin-right: 48px;
  }
  .hp_mgb_80 {
    margin-bottom: 48px;
  }
}
@media screen and (max-width: 560px) {
  .hp_pdb_80 {
    padding-bottom: 24px;
  }
  .hp_mgt_80 {
    margin-top: 24px;
  }
  .hp_mgr_80 {
    margin-right: 24px;
  }
  .hp_mgb_80 {
    margin-bottom: 24px;
  }
}
.hp_pdt_90 {
  padding-top: 90px;
}

.hp_pdb_90 {
  padding-bottom: 90px;
}

.hp_mgt_90 {
  margin-top: 90px;
}

.hp_mgr_90 {
  margin-right: 90px;
}

.hp_mgb_90 {
  margin-bottom: 90px;
}

@media screen and (max-width: 960px) {
  .hp_pdt_90 {
    padding-top: 54px;
  }
  .hp_pdb_90 {
    padding-bottom: 54px;
  }
  .hp_mgt_90 {
    margin-top: 54px;
  }
  .hp_mgr_90 {
    margin-right: 54px;
  }
  .hp_mgb_90 {
    margin-bottom: 54px;
  }
}
@media screen and (max-width: 560px) {
  .hp_pdb_90 {
    padding-bottom: 27px;
  }
  .hp_mgt_90 {
    margin-top: 27px;
  }
  .hp_mgr_90 {
    margin-right: 27px;
  }
  .hp_mgb_90 {
    margin-bottom: 27px;
  }
}
.hp_pdt_100 {
  padding-top: 100px;
}

.hp_pdb_100 {
  padding-bottom: 100px;
}

.hp_mgt_100 {
  margin-top: 100px;
}

.hp_mgr_100 {
  margin-right: 100px;
}

.hp_mgb_100 {
  margin-bottom: 100px;
}

@media screen and (max-width: 960px) {
  .hp_pdt_100 {
    padding-top: 60px;
  }
  .hp_pdb_100 {
    padding-bottom: 60px;
  }
  .hp_mgt_100 {
    margin-top: 60px;
  }
  .hp_mgr_100 {
    margin-right: 60px;
  }
  .hp_mgb_100 {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 560px) {
  .hp_pdb_100 {
    padding-bottom: 30px;
  }
  .hp_mgt_100 {
    margin-top: 30px;
  }
  .hp_mgr_100 {
    margin-right: 30px;
  }
  .hp_mgb_100 {
    margin-bottom: 30px;
  }
}
/* =============================================
Margin
============================================= */
.hp_mgl_a {
  margin-left: auto;
}

.hp_txt_c {
  text-align: center;
}

.hp_flex_rv {
  flex-direction: row-reverse;
}

.hp_bd_b {
  border-bottom: 1px solid #707070;
}

.hp_fc_b {
  color: #C1272D;
}

.hp_fs_s {
  font-size: 1.2rem;
}

.hp_br_sp {
  display: none;
}

@media screen and (max-width: 560px) {
  .hp_br_sp {
    display: block;
  }
}
/*============== 背景色 ==============*/
.hp_bg_color {
  background-color: #E6E6E6;
}

.hp_bg_white {
  background-color: white;
}

.hp_bg_second {
  background-color: #F2F2F2;
}

/* ---------------------------
ファーストビュースライド
---------------------------*/
.ly_fv {
  width: 100%;
  padding-top: 80vh;
  position: relative;
}

.ly_fvSlide_wrapper,
.ly_fv_back_w {
  width: 75vw;
  height: 70vh;
  top: 20px;
  right: 0;
  position: absolute;
}

.ly_fv_back_w {
  background-color: white;
}

.ly_fv_labelTxt {
  padding: 30px 100px;
  position: absolute;
  top: 28vh;
  left: 0;
  background-color: white;
  letter-spacing: 5px;
}

.ly_fv_labelTxt > p {
  font-family: "Noto Serif JP", serif;
  font-size: 2.3rem;
  line-height: 5.5rem;
}

.ly_fv_sp {
  display: none;
}

.ly_fvSlide, .ly_fvSlide .slick-track, .ly_fvSlide > li,
.ly_fvSlide .slick-list {
  width: 100%;
  height: 100%;
}

.ly_fvSlide img {
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 960px) {
  .ly_fv {
    background-color: #F5F5F5;
    padding-top: 88vh;
  }
  .ly_fvSlide_wrapper,
  .ly_fv_back_w {
    width: 100%;
    top: 0;
  }
  .ly_fv_labelTxt {
    top: auto;
    right: 0;
    bottom: 5vw;
    left: auto;
  }
  .ly_fv_labelTxt p {
    font-size: 2rem;
    letter-spacing: 0.1rem;
    font-family: "Sawarabi Mincho", serif;
  }
}
@media screen and (max-width: 560px) {
  .ly_fv {
    padding-top: 118vw;
  }
  .ly_fv_pc {
    display: none;
  }
  .ly_fv_sp {
    display: block;
  }
  .ly_fv_labelTxt {
    width: 92%;
    padding: 3rem;
    padding-right: 1rem;
    position: absolute;
    right: 0;
    bottom: 10vw;
  }
  .ly_fv_labelTxt p {
    line-height: 8vw;
    font-size: 4.2vw;
  }
  .ly_fvSlide_wrapper,
  .ly_fv_back_w {
    width: 100%;
    height: 75vw;
  }
}
/* ---------------------------
ヘッダー
---------------------------*/
.ly_spHeader {
  display: none;
}

.ly_header {
  padding-left: 2rem;
  height: 76px;
}
.ly_header_cont {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}
.ly_header_globalNavi {
  display: flex;
}
.ly_header_globalNavi > li {
  text-align: center;
  padding: 35px 0;
  width: 150px;
  background-color: white;
  border-right: 1px solid #C1272D;
  color: #C1272D;
  position: relative;
  font-size: 1.3rem;
  transition: all 0.4s ease-out;
}
.ly_header_globalNavi > li:hover {
  background: #C1272D;
}
.ly_header_globalNavi > li:hover p {
  color: white;
}
.ly_header_globalNavi > .el_mail {
  width: 200px;
  border-right: none;
}
.ly_header_globalNavi > .el_mail > p {
  padding-left: 30px;
  position: relative;
}
.ly_header_globalNavi > .el_mail ::before {
  width: 25px;
  content: url(assets/img/common/icon_mail__hover.svg);
  position: absolute;
  top: 50%;
  left: 35px;
  transform: translateY(-35%);
  transition: all 0.4s ease-out;
}
.ly_header_globalNavi > .el_mail :hover::before {
  content: url(assets/img/common/icon_mail.svg);
}
@media screen and (max-width: 960px) {
  .ly_header .ly_pcHeader {
    display: none;
  }
  .ly_header .ly_spHeader {
    display: block;
  }
}

/*============== ヘッダーロゴ ==============*/
.el_header_logo {
  padding: 10px;
  width: 90px;
  max-height: 60px;
}

/* ---------------------------
フッター
---------------------------*/
#ly_footer {
  background-color: #E6E6E6;
  text-align: center;
}
@media screen and (max-width: 960px) {
  #ly_footer {
    padding-top: 100px;
  }
}
#ly_footer .bl_footer {
  padding-top: 130px;
  background-color: #F2F2F2;
}

.bl_footerContact {
  max-width: 800px;
  padding-top: 55px;
  padding-bottom: 70px;
  margin: auto;
  margin-bottom: 80px;
  background-color: white;
}

.bl_footerContact h3 {
  font-size: 27px;
  color: black;
  margin-bottom: 35px;
  letter-spacing: 0;
}

.bl_footerContact .bl_footer_line h3 {
  font-size: 16px;
  margin-top: 40px;
  margin-bottom: 15px;
}

.bl_footer .el_btn {
  margin: auto;
}

.bl_footer_cont {
  max-width: 810px;
  margin: auto;
  margin-bottom: 80px;
  flex-direction: row-reverse;
}

.bl_footer_line {
  margin-top: 20px;
}

/* SNSリンク */
.bl_sns {
  line-height: 4rem;
  font-size: 1.4rem;
  font-family: "Noto Serif JP", serif;
  margin-top: auto;
  margin-bottom: auto;
}

.bl_sns li {
  padding-left: 4rem;
  position: relative;
}

.bl_sns li::before {
  content: "";
  width: 25px;
  height: 1px;
  background-color: #707070;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

/* サイトマップ */
.bl_siteMap {
  text-align: left;
}

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

.bl_siteMap th, .bl_siteMap td {
  width: 100%;
  display: block;
  margin-bottom: 25px;
}

.bl_siteMap th {
  font-size: 1.4rem;
  font-family: "Sawarabi Mincho", serif;
  color: #C1272D;
}

.bl_siteMap td {
  font-size: 1.2rem;
}

/* コピーライト */
.bl_copyright {
  padding: 10px;
  background-color: #5B4C49;
  color: white;
}

@media screen and (max-width: 960px) {
  .bl_footerContact {
    width: 95%;
    margin-bottom: 60px;
  }
  .bl_footer_cont {
    padding: 4rem;
    padding-top: 0;
    flex-direction: row;
  }
  .bl_siteMap_cont {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
  .bl_siteMap {
    width: 30%;
    margin-right: 2rem;
    margin-bottom: 35px;
  }
  .bl_siteMap th {
    font-size: 2rem;
  }
  .bl_siteMap td {
    font-size: 1.6rem;
  }
  .bl_sns {
    display: flex;
    flex-wrap: wrap;
  }
  .bl_sns li {
    font-size: 2rem;
    margin-right: 4rem;
  }
  .bl_footer .el_btn {
    max-width: 40rem;
    width: 74%;
  }
}
@media screen and (max-width: 560px) {
  .bl_footer_cont {
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .bl_siteMap {
    width: 35%;
    margin-right: 0;
  }
  .bl_siteMap_company {
    width: 55%;
  }
}
/* ---------------------------
TOP
---------------------------*/
.un_top {
  padding: 0;
}
@media screen and (max-width: 960px) {
  .un_top {
    padding-bottom: 0;
    background: #F5F5F5;
  }
}

/* ---------------------------
お知らせ
---------------------------*/
.bl_news_3colums {
  display: flex;
  justify-content: space-between;
}
.bl_news_3colums .bl_news_item {
  width: 30%;
}

@media screen and (max-width: 960px) {
  .bl_news_3colums {
    display: block;
  }
  .bl_news_3colums .bl_news_item {
    width: 100%;
  }
}
.bl_news_wrapper {
  margin-bottom: 55px;
}

.bl_news_item {
  border-bottom: 1px solid #707070;
}

.bl_news_day {
  font-family: "Sawarabi Mincho", serif;
  font-size: 1rem;
}

.bl_news_ttl {
  font-family: "Noto Serif JP", serif;
  font-size: 1.3rem;
  margin-top: 11px;
  margin-bottom: 15px;
}

.bl_news_tagCont {
  display: flex;
  justify-content: start;
}

.bl_news_tag {
  font-size: 9px;
  padding: 4px 18px;
  background-color: #F5F5F5;
  margin-right: 12px;
}

@media screen and (max-width: 960px) {
  .bl_news_item {
    padding-top: 25px;
    padding-bottom: 20px;
    margin-right: auto;
  }
  .el_btn {
    margin-right: auto;
    width: 26rem;
  }
  .el_btn p {
    font-size: 1.8rem;
  }
}
/* ---------------------------
会社概要
---------------------------*/
.un_top_company {
  margin-top: 85px;
  position: relative;
}

.un_top_company_wrapper {
  margin-bottom: 250px;
  position: relative;
}
@media screen and (max-width: 960px) {
  .un_top_company_wrapper {
    padding-top: 50px;
    margin-bottom: 50px;
    background-color: white;
  }
}

.un_top_company_Cont {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.un_top_company_img {
  background: url(assets/img/top/company_1.png) no-repeat center center/cover;
  width: 50%;
  height: 500px;
  min-width: 500px;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .un_top_company_img {
    min-width: inherit;
    height: 300px;
  }
}
.un_top_company_img.un_top_company_img2 {
  background-image: url(assets/img/top/company_2.png);
}

.un_top_company_img img {
  object-fit: cover;
}

.un_top_company_ttl {
  margin-bottom: 55px;
  width: 100%;
  padding-bottom: 18px;
  border-bottom: 1px solid #707070;
  display: flex;
  justify-content: center;
}

.un_top_company_desc {
  padding-top: 70px;
  position: relative;
  flex-grow: 1;
}

.un_top_company_txtWrapper {
  max-width: 1280px;
  margin: auto;
  position: absolute;
  top: 250px;
  right: 15%;
}
@media screen and (max-width: 960px) {
  .un_top_company_txtWrapper {
    width: 100%;
    position: relative;
    top: auto;
    right: auto;
    transform: none;
  }
}

.un_top_company_txtCont {
  width: 580px;
}

.un_top_company_txt {
  background-color: white;
  padding: 80px;
  padding-right: 50px;
  position: relative;
}
.un_top_company_txt > p {
  margin-bottom: 30px;
}

.un_top_company_txt::before {
  content: "";
  width: 182px;
  height: 124px;
  border-right: 1px solid #C1272D;
  border-bottom: 1px solid #C1272D;
  position: absolute;
  right: 0;
  bottom: 0;
}

.un_top_company_txt > p {
  font-size: 1.2rem;
  letter-spacing: 0 !important;
}

.un_top_company_txt > h5 {
  font-family: "Sawarabi Mincho", serif;
  margin-bottom: 50px;
}

.un_top_company_txt .el_stripe {
  position: absolute;
  top: 70px;
  right: -110px;
  z-index: -1;
}

.un_top_company_Cont__rev {
  padding-bottom: 100px;
}
.un_top_company_Cont__rev .un_top_company_txtWrapper {
  left: 15%;
  transform: translateX(0);
}
.un_top_company_Cont__rev .el_stripe {
  right: 110px;
}
.un_top_company_Cont__rev .un_top_company_txt::before {
  border-right: none;
  border-left: 1px solid #C1272D;
  left: 0;
}
.un_top_company_Cont__rev .un_top_company_Cont {
  flex-direction: row-reverse;
}
@media screen and (max-width: 960px) {
  .un_top_company_Cont__rev {
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .un_top_company_Cont__rev .un_top_company_txtWrapper {
    left: auto;
  }
  .un_top_company_Cont__rev .un_top_company_Cont {
    flex-direction: column-reverse;
  }
}

@media screen and (max-width: 1000px) {
  .un_top_company_txt .el_stripe {
    right: auto;
  }
  .un_top_company_Cont__rev .el_stripe {
    right: 110px;
  }
}
@media screen and (max-width: 960px) {
  .un_top_company_desc {
    padding-top: 0;
  }
  .un_top_company_img {
    width: 90%;
    margin: 0 auto;
  }
  .un_top_company_Cont {
    flex-direction: column-reverse;
    gap: 30px;
    margin-bottom: 0;
  }
  .un_top_company_ttl {
    margin-bottom: 0;
  }
  .un_top_company_Cont__rev .un_top_company_txtCont {
    left: auto;
  }
  .un_top_company_txt::before {
    display: none;
  }
  .un_top_company .el_yohaku {
    display: none;
  }
  .un_top_company_ttl {
    border: none;
  }
  .un_top_company_txt > h5 {
    margin-bottom: 30px;
    text-align: left;
    letter-spacing: 0.5rem;
  }
  .un_top_company_txtCont {
    width: 100%;
    top: auto;
    left: auto;
  }
  .un_top_company_txt {
    width: 100%;
    padding: 40px;
    padding-bottom: 60px;
    background: none;
  }
  .un_top_company_txt > p {
    font-size: 1.4rem;
    width: 100%;
  }
  .el_stripe {
    display: none;
  }
}
@media screen and (max-width: 560px) {
  .un_top_company_txt {
    padding-right: 0;
    padding-left: 0;
    width: 90%;
    margin: 0 auto;
  }
}
/* ---------------------------
お知らせ一覧ページ
---------------------------*/
.bl_news_cont {
  max-width: 800px;
  margin: auto;
}

.bl_news_item {
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
  margin-bottom: 40px;
}

.bl_news_ttl {
  font-family: "Sawarabi Mincho", serif;
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.bl_news_caption p {
  position: absolute;
  top: 0.5rem;
}

.bl_news_caption {
  display: flex;
}

.bl_news_caption p {
  position: relative;
  top: auto;
  margin-right: 16px;
}

/* 分類リスト */
.bl_news_kind {
  margin-bottom: 50px;
}

.bl_news_kind a,
.bl_news_tagCont a {
  color: black;
}

.bl_kind_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 0;
}

.bl_kind_list > li {
  margin-right: 30px;
  font-size: 16px;
}

.bl_kind_list li + li {
  padding-left: 30px;
  border-left: 1px solid #C1272D;
}

.kind_active a {
  color: #C1272D;
  border-bottom: 1px solid #C1272D;
}

@media screen and (max-width: 960px) {
  #ly_news .bl_sub_ttl {
    margin-bottom: 0;
  }
  .bl_news {
    background-color: white;
    padding-bottom: 90px;
  }
  .bl_news_cont {
    padding: 5%;
    padding-top: 0;
    padding-bottom: 20px;
  }
  .bl_news_item {
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .bl_kind_list > li {
    margin-right: 20px;
  }
  .bl_kind_list li + li {
    padding-left: 20px;
  }
}
/* ---------------------------
お知らせ詳細ページ
---------------------------*/
.bl_news_d .bl_flexbox__start {
  position: relative;
  left: 4rem;
  margin-bottom: 10px;
}

.bl_news_d_ttl {
  color: black;
  margin-bottom: 25px;
  position: relative;
  left: 4rem;
}

.bl_news_d_day {
  margin-right: 25px;
}

.bl_news_d_cont {
  padding: 0 10%;
}

.bl_news_d figure {
  margin-top: 30px;
}

.bl_news_d img {
  width: auto;
}

@media screen and (max-width: 960px) {
  .bl_news_d {
    background-color: white;
    padding-bottom: 90px;
  }
  .bl_news_d_ttl {
    width: 85%;
    margin: auto;
    margin-bottom: 10px;
    font-size: 2.5rem;
    left: 0;
  }
  #ly_news_d .bl_sub_ttl {
    margin-bottom: 0;
  }
  .bl_news_d .bl_flexbox__start {
    left: 0;
    padding: 0 10%;
  }
  .bl_sub_ttl hr {
    width: 80%;
  }
}
/* ページネーション */
.p-posts-navigation__wrap {
  width: 400px;
  margin: 0 auto;
  position: relative;
}

.page-numbers {
  display: flex;
  justify-content: center;
  text-align: center;
}

.el_pagenation li {
  color: black;
  font-size: 1.6rem;
  margin-right: 40px;
}

.el_pagenation .current {
  border-bottom: 1px solid #C1272D;
}

.page_prev::before, .page_next::after {
  position: absolute;
}

.page_prev::before {
  content: url(../img/common/prev.svg);
  left: 0;
}

.page_next::after {
  content: url(../img/common/next.svg);
  right: 0;
}

/* ---------------------------
会社情報
---------------------------*/
.un_company {
  display: flex;
  gap: 50px;
  margin-bottom: 150px;
  position: relative;
}
.un_company.un_company__rev {
  flex-direction: row-reverse;
}
.un_company .un_company_cont {
  text-align: left;
  width: 60%;
}
@media screen and (max-width: 960px) {
  .un_company .un_company_cont {
    width: 100%;
  }
}
.un_company .un_company_cont h2 {
  font-family: "Noto Serif JP", serif;
  font-weight: normal;
  margin-bottom: 80px;
}
.un_company .un_company_cont h3 {
  font-size: 20px;
  color: black;
  margin-bottom: 30px;
}
.un_company .un_company_img {
  width: 50%;
  background: url(assets/img/company/company_1.png) no-repeat center center/cover;
}
.un_company .un_company_img2 {
  background-image: url(assets/img/company/company_2.png);
}
@media screen and (max-width: 960px) {
  .un_company {
    display: block;
  }
  .un_company .un_company_ttl {
    margin-bottom: 350px;
  }
  .un_company .un_company_img {
    width: 100%;
    height: 300px;
    position: absolute;
    top: 100px;
  }
}

/* 会社情報 */
.un_companyInformation {
  max-width: 800px;
}

.un_companyInformation h4 {
  color: black;
  margin-bottom: 70px;
}
@media screen and (max-width: 960px) {
  .un_companyInformation h4 {
    margin-bottom: 30px;
  }
}

/* お問い合せフォーム */
#ly_contact {
  width: 100%;
}

.bl_form .bl_sub_ttl {
  margin-bottom: 80px;
}

.bl_form_cont {
  max-width: 670px;
  width: 90%;
  margin: auto;
  margin-bottom: 150px;
}

.bl_contact {
  width: 60%;
  max-width: 800px;
  margin: 0 auto;
}

.bl_form_desc {
  margin-bottom: 80px;
  font-size: 1.6rem;
}

.bl_form_line {
  text-align: center;
  margin-bottom: 100px;
}

.bl_form_line .bl_form_desc {
  margin-bottom: 20px;
}

.bl_form_line .el_btn {
  margin: 0 auto;
}

.bl_form_desc p {
  font-family: "Sawarabi Mincho", serif;
  font-size: 1.6rem;
}

.el_attention {
  font-size: 1.2rem;
  color: #CC5050;
}

.el_attention_input, .formrun-system-show {
  font-size: 1.5rem;
  color: #CC5050;
}

.bl_form_item {
  margin-bottom: 35px;
}

.bl_form_item label, .col-sm-2 {
  font-size: 1.6rem;
  line-height: 4rem;
}

.bl_form_item > input, .bl_form_item > textarea {
  width: 100%;
  font-size: 1.6rem;
  padding-right: 2rem;
  padding-left: 2rem;
}

.bl_form_item > input {
  height: 52px;
}

.bl_form_item > textarea {
  height: 140px;
  padding-top: 1rem;
}

.bl_form_flexTtl {
  margin-right: 4rem;
}

.bl_form input[type=submit] {
  width: 90%;
  max-width: 400px;
  height: 75px;
  margin: auto;
  display: block;
  color: white;
  font-size: 1.6rem;
  position: relative;
  background-color: #C1272D;
}

.bl_form_confItem span {
  font-size: 1.6rem;
}

.el_form_backBtn {
  width: 10rem;
  margin: 6rem auto 4rem;
  text-align: center;
}

.el_form_backBtn a {
  color: #C1272D;
  text-decoration: underline #C1272D;
}

.bl_form_group_wrap {
  display: flex;
}

.el_contactBox {
  display: flex;
  justify-content: start;
  margin-bottom: 50px;
  position: relative;
  font-size: 16px;
}

.el_contactBox br {
  display: none;
}

.el_contactBox input, .el_contactBox textarea {
  width: 75%;
  padding: 10px;
  /* border: 1px solid #C9C9C9; */
}

.mwform-radio-field label {
  display: flex;
}

.mwform-tel-field {
  width: 75%;
}

.mwform-tel-field input[type=text] {
  margin-right: 10px;
  margin-left: 10px;
}

.mwform-tel-field input:nth-child(1) {
  margin-left: 0;
}

.mwform-radio-field label input {
  width: 14px;
}

.el_required::after {
  content: "※";
  color: #EB828A;
}

.el_contactBox label {
  width: 200px;
}

.bl_form_cont .radiogroup label,
.radiogroup {
  width: 100%;
}

.radiogroup {
  position: relative;
  left: 30px;
}

/* 入力確認ボタン */
.el_backBtn input[type=submit] {
  color: #C1272D;
  text-decoration: underline #C1272D;
  background-color: white;
}

.mw_wp_form .error {
  position: absolute;
  left: 0;
  bottom: -15px;
}

/* 確認画面のみ表示 */
.el_confirm,
.mw_wp_form_confirm .el_required,
.mw_wp_form_confirm .el_noCon {
  display: none;
}

.mw_wp_form_confirm .el_confirm {
  display: block;
}

.mw_wp_form_confirm .el_confirm p {
  font-size: 16px;
}

.mw_wp_form_confirm .el_contactBox {
  display: block;
  color: black;
}

.mw_wp_form_confirm .el_contactBtn {
  margin-top: 50px;
}

.mw_wp_form_confirm .el_backBtn {
  margin-top: 30px;
}

.mw_wp_form_confirm .radiogroup {
  left: auto;
}

/* 完了画面 */
.mw_wp_form_complete p {
  text-align: center;
}

@media screen and (max-width: 960px) {
  .bl_contact {
    width: 90%;
  }
  .el_contactBox {
    display: block;
    margin-bottom: 30px;
  }
  .el_contactBox label {
    line-height: 40px;
  }
  .el_contactBox input {
    display: block;
  }
  .mwform-tel-field {
    display: block;
    width: 100%;
  }
  .radiogroup {
    left: auto;
  }
  .el_contactBox input, .el_contactBox textarea {
    width: 100%;
  }
  .mwform-radio-field {
    height: 1.6rem;
  }
  .mwform-radio-field label {
    line-height: 1.6rem;
  }
  .el_radiobox p {
    line-height: 2.5rem;
  }
  .el_radio {
    margin-bottom: 25px;
  }
  .el_contact_space {
    height: 25px;
  }
  .el_contactBtn {
    margin-top: 60px;
  }
}
/* ---------------------------
サンクスページ
---------------------------*/
#ly_form_thanks {
  text-align: center;
  padding-top: 100px;
  padding-bottom: 100px;
}

.bl_form_thanksTtl {
  margin-bottom: 50px;
  text-align: center;
}

@media screen and (max-width: 960px) {
  .bl_form {
    padding-top: 0;
    padding-bottom: 90px;
    background-color: white;
  }
  .bl_form_cont {
    margin-bottom: 0;
  }
  .bl_form_line {
    margin-bottom: 30px;
  }
  .bl_form_group_wrap {
    display: block;
  }
  .bl_form .bl_sub_ttl {
    margin-bottom: 0;
  }
  #ly_form_thanks {
    padding-bottom: 150px;
  }
  .bl_form_desc {
    margin-bottom: 50px;
  }
}
/* サービス内容 */
.un_service {
  width: 85%;
  max-width: 1366px;
  margin: auto;
  padding: 70px 90px;
  background-color: #F2F2F2;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .un_service {
    padding: 50px 30px;
  }
}

.un_service .bl_flexbox__wrap {
  justify-content: flex-start;
}

/*============== 事業案内 ==============*/
#service h3 {
  font-size: 2.9rem;
  color: black;
  text-align: center;
}

.el_service_subTtl {
  position: relative;
  margin-bottom: 80px;
}

.el_service_subTtl::before {
  content: "";
  width: 9.6rem;
  height: 5px;
  background-color: #C1272D;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}

/* サービス利点 */
#ly_advantage {
  background-color: #F2F2F2;
  padding-top: 130px;
  padding-bottom: 65px;
}

.bl_advantage_list {
  width: 70%;
  max-width: 770px;
  margin: auto;
}

.bl_advantage_list > .bl_advantage_listItem:nth-child(1) {
  margin-right: 2rem;
}

.bl_advantage_listItem {
  font-size: 1.6rem;
  text-align: left;
}

.bl_advantage_listItem > li {
  margin-bottom: 35px;
  position: relative;
  padding-left: 50px;
}

.bl_advantage_listItem > li::before {
  width: 30px;
  content: url(assets/img/common/icon_check.svg);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

/* サービス料金 */
#ly_plan {
  padding: 5rem;
  padding-top: 130px;
  padding-bottom: 115px;
}

.bl_plan {
  max-width: 930px;
  margin: auto;
  text-align: center;
}

.bl_plan_card {
  margin-bottom: 50px;
}

.bl_plan_card > li {
  width: 30%;
  border: 1px solid #C1272D;
  padding-top: 40px;
  padding-bottom: 30px;
}

.bl_plan_card h4 {
  margin-bottom: 20px;
  font-size: 2.2rem;
  font-family: "Noto Serif JP", serif;
}

.plan_attention {
  margin-left: 2rem;
  font-size: 11px;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
  position: absolute;
  bottom: 6px;
}

.bl_plan_otherPlanLink {
  font-size: 2rem;
  color: #C1272D;
  text-decoration: underline 1px #C1272D;
  text-underline-offset: 0.5rem;
}

.bl_plan_sp {
  display: none;
}

@media screen and (max-width: 960px) {
  .bl_serviceIntro_txt {
    width: 96%;
    position: relative;
    left: 2%;
  }
  .un_service {
    width: 100%;
  }
  .un_service .bl_flexbox__wrap {
    justify-content: space-around;
  }
  #ly_advantage {
    padding-top: 60px;
    padding-top: 90px;
  }
  .bl_advantage_list {
    width: 100%;
    padding: 0 20px;
  }
  .bl_plan_card > li {
    width: 80%;
    margin: auto;
    margin-bottom: 20px;
  }
  .plan_attention {
    position: static;
    bottom: auto;
    margin: auto;
  }
  .el_service_subTtl {
    margin-bottom: 30px;
  }
  #service .el_service_subTtl {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 750px) {
  .bl_advantage_listItem {
    width: 360px;
    margin: auto;
  }
  .bl_advantage_list > .bl_advantage_listItem:nth-child(1) {
    margin-right: auto;
  }
}
@media screen and (max-width: 560px) {
  .un_service {
    padding: 75px 10px;
    text-align: left;
  }
  #service .el_service_subTtl {
    margin-bottom: 40px;
  }
  .bl_aboutService {
    width: 90%;
    margin: auto;
  }
  .bl_advantage_listItem {
    width: 100%;
  }
}

/*# sourceMappingURL=style.css.map */
