/*
Theme Name: even
Description: オーダーかつらのイーブン
*/

/* ===============================================
# 共通設定
=============================================== */
:root {
  /* 色 */
  --font_color: #171717;
  --font_sub_color: #973436;
  --main_color: #973436;
  --bg_color: #FFFBF4;
  --bg_sub_color: #F3EFE3;
  --bg_gray: #E2E2E2;
  --white_color: #FFFFFF;
  --gray_color: #555555;
  --blue_color: #9DB5CF;
  --light_blue_color: #7FC1D9;
  
  /* フォント */
  --ttl_font: "Arial", sans-serif;
  --text_font: "ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
}

body {
  line-height: 1.7;
  font-family: var(--text_font);
  font-size: 18px;
  box-sizing: border-box;
  background: var(--bg_color);
  padding: 0 !important;
}

/* body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  margin-left: 0 !important;
  margin-right: 0 !important;
} */

img {
max-width: 100%;
}

.sp {
  display: none;
}

.inner {
  max-width: 1080px !important;
  margin: 0 auto !important;
  text-align: left !important;
}

.contents {
  margin-bottom: 180px !important;
}

h2 {
  font-family: var(--ttl_font);
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 60px;
  padding: 0 10px 5px;
  display: inline-block;
  text-align: center;
}

/* h2タイトルの下線 */
.ttl_ivory {
  background: linear-gradient(transparent 40%, #FFFBF4 40%);
}

.ttl_beige {
  background: linear-gradient(transparent 40%, #F3EFE3 40%);
}

.ttl_blue {
  background: linear-gradient(transparent 70%, #7FC1D9 70%);
}

/* Arialで書きたいところ */
.ttl_txt {
  font-family: var(--ttl_font);
}

h3 {
  font-size: 22px;
  font-family: var(--ttl_font);
  font-weight: bold;
  margin-bottom: 30px;
  line-height: 1.6;
}

h3 span {
  font-size: 16px;
  font-weight: 400;
}

h4 {
  display: inline-block;
  text-align: center;
  padding-left: 10px;
  border-left: 10px solid var(--blue_color);
  margin-bottom: 48px;
  font-size: 22px;
  font-family: var(--ttl_font);
}

/* bg設定 */
.bg_white {
  background: var(--white_color);
}

.bg_beige {
  background: var(--bg_sub_color);
}

.bg_gray {
  background: var(--bg_gray);
}

/* 赤ボタン */
.btn {
  background: var(--main_color);
  border-radius: 100px;
  padding: 18px 80px;
  color: var(--white_color);
  display: inline-block;
}

.btn a,
.btn a:visited,
.btn a:hover {
  color: var(--white_color) !important;
  text-align: center;
  position: relative;
  z-index: 100;
}

.btn a::after {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: 2px solid #fff; /* 矢印の色 */
  border-right: 2px solid #fff; /* 矢印の色 */
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: -45px;
  margin-top: -6px;
}

.btn:hover {
  background: #AB5959;
  transition: .5s;
}

/* フェードイン下から */
.fadein {
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 0.5s;
}

.fadein.active {
  opacity: 1;
  transform: translate(0, 0);
}

/* 表 */
table {
  width: 100%;
}

.table_item {
  width: 74%;
  max-width: 800px;
  margin: 0 auto;
}

.table_item {
  margin-bottom: 50px;
}

table th,
table td {
  border: 1px solid var(--main_color) !important;
  text-align: center;
  padding: 10px 0 !important;
}

/* センター */
.tac {
  text-align: center;
}

/* before、after */
.before,
.after {
  font-size: 35px;
  font-weight: bold;
  display: inline-block;
  font-family: var(--ttl_font);
  margin-bottom: 60px;
  width: 85%;
  max-width: 500px;
}

.before_list,
.after_list {
  text-align: center;
}

.before p,
.after p {
  text-align: center;
}

.before {
  background: var(--white_color);
  border: 1px solid var(--main_color);
  color: var(--font_sub_color);
}

.after {
  background: var(--main_color);
  color: var(--white_color);
}

.feature_txt {
  font-size: 12px;
  margin-top: 8px;
  background: linear-gradient(transparent 60%, #ffff66 60%);
  display: inline-block;
}

.examples_syokai-table tbody tr td:last-child, 
.examples_syokai-table tfoot tr td:last-child,
.examples_gentei-table tbody tr td:last-child, 
.examples_gentei-table tfoot tr td:last-child,
.gentei_price-table tbody tr td:not(:first-child),
.gentei_price-table tfoot tr td:not(:first-child) {
  text-align: right;
  padding-right: 40px !important;
}

/* reCAPTCHA */
.grecaptcha-badge { 
  visibility: hidden; 
}

/* wordpressの設定 */
.wp-block-table thead {
  border-bottom: 1px solid var(--main_color) !important;
}

.wp-block-table tfoot {
  border-top: 1px solid var(--main_color) !important;
}

/* ===============================================
# ヘッダー
=============================================== */
.header {
  background: var(--bg_color);
}

.header_inner {
  margin: 0 40px;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header_logo {

}

.header_logo-img {
  max-width: 120px;
  width: 100%;
  margin-bottom: 9px;
}

.header_logo-text {
  font-size: 12px;
}

.header_nav {

}

.header_nav-items {
  display: flex;
  column-gap: 40px;
}

.header_nav-list {

}

.header_nav-modal-wrap {
  position: relative;
}

.header_nav-modal-wrap p {
  transition: .3s;
}

.header_nav-modal-wrap > .sub-menu {
  padding: 10px 0;
  position: absolute;
  top: 30px;
  left: 65%;
  transform: translateX(-50%) rotateX(90deg);
  width: 180px;
  background-color: var(--bg_sub_color);
  opacity: 0;
  visibility: hidden;
  transition: .5s;
}

.header_nav-modal-wrap:hover > .sub-menu {
  transform: translateX(-50%) rotateX(0deg);
  opacity: 1;
  visibility: visible;
}

.header_nav-modal-item {
  font-size: 14px;
  padding: 5px;
  margin-left: 20px;
}


/* ===============================================
# 追従
=============================================== */
.pc_float {
  position: fixed;
  right: 10px;
  top: 150px;
  z-index: 100;
}

.pc_float-btn {
  color: var(--white_color);
  writing-mode: vertical-rl;
  background: rgba(151, 52, 54, 0.83);
  padding: 15px 0;
  width: 50px;
  /* height: 150px; */
  letter-spacing: 2px;
  transition: all 0.5s 0s ease;
  text-align: center;
  font-size: 14px;
  line-height: 50px;
}

.pc_float-btn img {
  margin-bottom: 5px;
}

.pc_float-icon {
  margin-bottom: 10px;
}

/* ===============================================
# フッター
=============================================== */
.footer {
  margin-top: 180px;
  padding: 100px 0;
  background: var(--bg_sub_color);
}

.footer_inner {
  margin: 0 80px;
}

.footer_container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}

.footer_info {

}

.footer_info p {
  font-size: 16px;
}

.footer_logo {
  width: 200px;
  margin-bottom: 10px;
}

.footer_calender {

}

.footer_calender img {
  width: 300px;
  height: 510px;
  object-fit: cover;
}

.footer_nav {

}

.footer_nav-item {
  margin-bottom: 20px;
}

.footer .sub_menu-item {
  margin-top: 5px;
  font-size: 13px;
  color: var(--font_color);
  padding-left: 20px;
  position: relative;
}

.footer .sub_menu-item::before {
  position: absolute;
  content: "ー";
  top: 0;
  left: 0;
}


.copy_right {
  margin-top: 60px;
  text-align: center;
  font-size: 12px;
  font-family: var(--ttl_font);
}

/* ===============================================
# トップページ
=============================================== */
/* mv */
.mv {
  
}

.mv_inner {
  position: relative;
  z-index: -1;
}

.mv_inner img {
  height: calc(100vh - 132px);
  margin: 0 auto;
  width: 100%;
  object-fit: cover;
}

.mv_body {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);

}

.mv_body {
  color: var(--white_color);
  text-align: center;
}

.mv_body .main_ttl {
  font-family: "Hiragino Mincho ProN","Hiragino Mincho Pro",HGS明朝E,メイリオ,Meiryo,serif;
  font-size: 40px;
  margin-bottom: 20px;
  text-align: center;
}

.mv_body .sub_ttl {
  font-family: var(--ttl_font);
  font-weight: 400;
  font-size: 20px;
  text-align: center;
}

/* コンセプト */
.concept {

}

.concept h2 {
  line-height: 2;
}

.concept .concept_red {
  color: var(--font_sub_color);
}

.concept .concept_dots {
  background-image: radial-gradient(circle at center, #973436 20%, transparent 20%); /* 点の色とサイズ調整 */
  background-position: top right; /* 点の位置 */
  background-repeat: repeat-x; /* 横方向に繰り返し */
  background-size: 1em 0.3em; /* 点の間隔とサイズ調整 */
  padding-top: .4em; /* 縦方向の位置調整 */
}

.concept p {
  text-align: center;
}

/* こんなお悩みありませんか */
.nayami {
  
}

.nayami .nayami_contents {
  position: relative;
  padding-bottom: 180px;
}

.nayami .nayami_contents::after {
  position: absolute;
  content: '';
  top: 100%;
  margin: auto;
  right: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3rem 6rem 3rem;
  border-color: #FFFBF4 transparent transparent transparent;
  z-index: 10;
}

.nayami_container {
  display: flex;
  justify-content: center;
  column-gap: 75px;
}

.nayami_item {
  width: 30%;
}

/* その悩みイーブンにお任せ */
.kaiketu {

}

.kaiketu_inner {

}

.kaiketu_container {
  display: flex;
  justify-content: center;
  padding: 113px 0 60px;
  column-gap: 84px;
  align-items: center;
}

.kaiketu_txt {
  text-align: center;
  font-size: 30px;
  line-height: 2.5;
}

.kaiketu_point {
  background: var(--white_color);
  border-radius: 100px;
  padding: 13px 50px;
}

.kaiketu_red {
  color: var(--font_sub_color);
  font-size: 35px;
  padding: 0 10px 5px;
  background: linear-gradient(transparent 60%, #FFF 60%);
  font-weight: bold;
}

.kaiketu_img {
  width: 20%;
  max-width: 207px;
}

/* 実例紹介 */
.top_examples {

}

.top_examples-txt {
  text-align: center;
  margin-bottom: 40px;
  font-size: 16px;
}

.top_examples-attention {
  width: 74%;
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 120px;
}

.top_examples-container {
  margin-bottom: 80px;
}

.top_examples-age {
  background: var(--white_color);
  color: var(--main_color);
  border: 1px solid var(--main_color);
  text-align: center;
  padding: 5px;
  font-size: 30px;
  margin-bottom: 40px;
}

.top_examples-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  column-gap: 2%;
  row-gap: 60px;
  margin-bottom: 80px;
}

.top_examples-list {
  width: 23%;
  max-width: 250px;
}

.top_examples-list > a {
  position: absolute;
}

.top_examples-list img {
  width: 100%;
  aspect-ratio: 1 / 1;
  /* width: 255px;
  height: 255px; */
  object-fit: cover;
}

.male,
.female {
  position: relative;
  z-index: 1;
  text-align: center;
}

.male::before,
.female::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  color: var(--white_color);
  width: 100%;
  /* top: -10px;
  left: -40px;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 61px solid transparent;
  border-left: 61px solid transparent;
  border-top: 0;
  transform: rotate(315deg); */
  z-index: 1;
}

.male::before {
  border-bottom: 40px solid rgba(89, 173, 204, 0.9);
  /* border-bottom: 62px solid rgba(89, 173, 204, 0.9); */
}

.female::before {
  border-bottom: 40px solid rgba(207, 157, 186, 0.9);
  /* border-bottom: 62px solid rgba(207, 157, 186, 0.9); */
}

.top_examples-list-txt {
  position: absolute;
  top: 5px;
  left: 10px;
  /* top: 0; */
  /* left: 5px; */
  color: var(--white_color);
  text-align: left;
  font-weight: 400;
  z-index: 2;
}

.top_examples-list-txt p {
  display: inline-block;
}

.examples_age-txt {
  font-size: 20px;
}

.examples_range-txt {
  font-size: 14px;
}



/* イーブンでできること */
.top_about {
  padding: 100px 0;
}

.top_about-items {

}

.top_about-list {
  display: flex;
  column-gap: 80px;
}

.top_about-list:first-child {
  margin-bottom: 50px;
}

.top_about-list img {
  width: 37%;
  max-width: 400px;
}

.top_about-body {
  margin-top: 30px;
}

.top_about-body p {
  margin-bottom: 30px;
}

.top_about-btn {
  float: right;
}

/* 完全個室のプライベート空間 */
.private {
  padding: 100px 0;
}

.private_container {
  position: relative;
}

.private_txt {
  position: absolute;
  content: "";
  top: 200px;
  right: 50px;
  width: 38%;
  max-width: 413px;
}

/* お客様の声 */
.voice {
  
}

.voice img {
  height: 845px;
  object-fit: cover;
}


.voice .contents {
  background: url(../even/img/top/voice.png) no-repeat center center/cover;
}

.voice_body {
  margin-right: 0 !important;
  margin-left: auto !important;
  width: 40%;
  padding: 80px 80px 100px;
}

.voice_body p {
  margin-bottom: 30px;
}

.voice_btn {
  float: right;
}


/* イーブン友の会 */
.top_tomonokai {

}

.top_tomonokai p {
  text-align: center;
  margin-bottom: 60px;
}

.top_tomonokai-img {
  margin-bottom: 60px;
}

.top_tomonokai-btn {

}


/* よくあるご質問 */
.faq {
  padding: 100px 0 20px;
}

.faq_items {
  margin-bottom: 120px;
}

.faq_items dl {
    position: relative;
    margin: 20px 0 0;
    cursor: pointer;
    border: 2px solid var(--bg_sub_color);
}
.faq_items dl:first-child {
  margin-top: 0;
}
.faq_items dl::after {
    position: absolute;
    top: 27px;
    right: 26px;
    display: block;
    width: 7px;
    height: 7px;
    margin: auto;
    content: '';
    transform: rotate(135deg);
    border-top: 2px solid var(--font_color);
    border-right: 2px solid var(--font_color);
}
.faq_items .open::after {
    transform: rotate(-45deg);
}
.faq_items dl dt {
    position: relative;
    margin: 0;
    padding: 20px 20px 20px 60px;
    background: var(--bg_sub_color);
    font-size: 18px;
}
.faq_items dl dt::before {
    font-size: 30px;
    line-height: 0.8;
    position: absolute;
    top: 20px;
    left: 20px;
    display: block;
    content: 'Q.';
    color: var(--font_sub_color);
    font-family: 'Lato', sans-serif;
}
.faq_items dl dd::before {
    font-size: 30px;
    line-height: 1;
    position: absolute;
    left: 20px;
    display: block;
    content: 'A.';
    font-weight: bold;
    color: #9DB5CF;
}
.faq_items dl dd {
    position: relative;
    margin: 0;
    padding: 20px 20px 20px 60px;
}
.faq_items dl dd p {
    margin: 30px 0 0;
    font-size: 18px;
}
.faq_items dl dd p:first-child{
    margin-top: 0;
}

.faq_items dl dd a {
  text-decoration: underline !important;
}


/* cta */
.cta {

}

.cta_head {
  padding: 25px;
  text-align: center;
}

.cta_items {
  display: flex;
  column-gap: 60px;
  justify-content: center;
  padding-bottom: 50px;
}

.cta_tel,
.cta_mail {
  background: var(--white_color);
  width: 41%;
  max-width: 450px;
  text-align: center;
  padding: 40px 0;
}

.cta_tel {

}

.cta_tel .cta_ttl {
  margin-bottom: 30px;
}

.cta_tel a {
  font-size: 26px;
  font-weight: bold;
  font-family: var(--ttl_font);
}

.cta_tel .cta_txt {
  margin-top: 30px;
}

.cta_tel i,
.cta_mail i {
  margin-right: 20px;
}

.cta_ttl {
  color: var(--font_sub_color);
  font-size: 20px;
  font-family: var(--ttl_font);
  text-align: center;
  font-weight: bold;
  margin-bottom: 37px;
}

.cta_mail {

}

.cta_mail .cta_ttl {

}

.cta_mail a {
  color: var(--white_color);
  background: var(--main_color);
  padding: 17px 36px;
}

.cta_mail a:hover {
  background: #AB5959;
}

.cta_mail .cta_txt {
  margin-top: 37px;
}

.cta_txt {
  text-align: center;
  font-size: 16px;
}


/* お知らせ */
.top_news {
  padding: 100px 0;
}

.m_news-items {
  margin-bottom: 50px;
}

.m_news-items li a {
  display: flex;
}

.m_news-items li:not(:last-child) {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--bg_sub_color);
}

.m_news-list {
  display: flex;
}

.m_news-list:first-child {
  width: 25%;
  column-gap: 10px;
}

.m_news-list:last-child {
  width: 75%;
}

.news_date {
  width: 55%;
}

.news_ttl {
  width: 95%;
}

.wp-pagenavi {
  text-align: center;
  margin-top: 70px;
}

.wp-pagenavi .current,
.wp-pagenavi a.page {/* ボタン */
    margin: 0 6px 6px 0;
    display: inline-block;
    border: solid 1px rgba(151, 52, 54, 0.83);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    line-height: 40px;
    text-align: center;
    color: var(--font_sub_color);
}

.wp-pagenavi .current {/* カレント数字 */
  border: none;
  background: var(--main_color);
  color: #fff;
}
.wp-pagenavi a.page:hover {/* マウスオーバー */
  background: var(--white_color);
  color: var(--main_color);
  border: solid 1px rgba(151, 52, 54, 0.83);
}

.wp-pagenavi .first,
.wp-pagenavi .extend {/* ... */
    margin-right: 10px;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {/* 記号の削除 */
    display: none;
}

/* カテゴリーの色分け */
.info {
  background: #FFF57E;
}

.knowledge {
  background: #BEDDFF;
}

.lifestyle {
  background: #A1FDAF;
}

.hair {
  background: #FFD471;
}

.advertisement {
  background: #FFBFA8;
}

.whitehair {
  background: #D3D3D3;
}

.chatting {
  background: #FFA8FF;
}

.news_cat_name {
  font-size: 10px;
  width: 90px;
  text-align: center;
  border-radius: 100px;
  line-height: 28px;
}

/* インスタ */

/* テレビCM */
.cm {
  padding: 100px 0;
}

.cm iframe {
  width: 100%;
  height: 600px;
}

/* アクセス */
.access {

}

.access_map {
  margin-bottom: 180px;
}

.access_map iframe {
  width: 100%;
  height: 500px;
}

.access_map p {
  text-align: center;
  margin-top: 50px;
  line-height: 2.5;
}

.access_map span {
  background: var(--main_color);
  color: var(--white_color);
  border-radius: 100px;
  font-size: 20px;
  font-family: var(--ttl_font);
  margin-bottom: 35px;
  padding: 8px 30px;
}

.access_parking {

}

.access_parking h3 {
  text-align: center;
}

.access_parking-subtxt {
  text-align: center;
  margin-bottom: 40px;
}

.access_parking-img {
  margin-bottom: 40px;
}

.access_parking-txt {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px 60px;
  margin: 20px 0;
}


.access_parking-txt .ttl_txt {
  font-size: 20px;
  font-weight: bold;
  font-family: var(--ttl_font);
  margin-bottom: 20px;
}

/* 下層ページ */
/* パンくず */
.breadcrumb {
  margin: 0 40px 70px 40px;
  font-size: 14px;
}

.breadcrumb a,
.breadcrumb a:visited {
  color: var(--font_color);
}

.breadcrumb span {
  padding: 5px;
}

/* アンダーライン */
.underline_head {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--font_color);
  font-size: 22px;
}

/* 詳細ページのmv */
.sub_mv {
  margin-bottom: 40px;
}

.news_mv .news_mv-item {
  background: url(../even/img/mv/news_mv.jpg) no-repeat center center/cover;
}

.about_mv .about_mv-item {
  background: url(../even/img/mv/about_mv.JPG) no-repeat center center/cover;
}

.tomonokai_mv .tomonokai_mv-item {
  background: url(../even/img/mv/tomonokai_mv.JPG) no-repeat center center/cover;
}

.company_mv .company_mv-item {
  background: url(../even/img/mv/company_mv.JPG) no-repeat center center/cover;
}

.examples_mv .examples_mv-item {
  background: url(../even/img/mv/examples_mv.jpg) no-repeat center center/cover;
}

.sub_mv-item{
  text-align: center;
}

.sub_mv-item p {
  text-align: center;
  padding: 50px 80px;
  display: inline-block;
  background: rgba(255,255,255,0.56);
  margin: 80px 0;
  font-size: 35px;
  color: var(--font_sub_color);
  font-family: var(--ttl_font);
  font-weight: bold;
}

/* イーブンのかつら */
.full_order p,
.semi_order p {
  text-align: center;
  margin-bottom: 60px;
}

.full_order-txt {
  text-align: center;
}

.flow_container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flow_container ul {
  padding: 0;
}

.flow_container li {
  list-style-type: none;
}

.flow_container dd {
  margin-left: 0;
  font-size: 16px;
}

.flow_items a {
  text-decoration: underline !important;
}

.flow_items {
  position: relative;
}

.flow_items::before {
  content: "";
  width: 15px;
  height: 100%;
  background: #eee;
  margin-left: -129px;
  display: block;
  position: absolute;
  top: 0;
  left: 120px;
  border-radius: 20px;
}

.flow_items > li {
  position: relative;
}

.flow_items > li:not(:last-child) {
  margin-bottom: 50px;
}

.flow_items > li .icon1 {
  font-size: 0.8em;
  width: 2em;
  height: 2em;
  line-height: 2;
  text-align: center;
  font-weight: bold;
  border-radius: 100vh;
  color: #fff;
  background: var(--font_sub_color);
  display: inline-block;
  margin-right: 0.3em;
}

.flow_items > li dl {
  padding-left: 70px;
  position: relative;
}

.flow_items > li dl::before,
.flow_items > li dl::after {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
}

.flow_items > li dl::before {
  width: 7px;
  height: 7px;
  margin-top: -3px;
  background: var(--font_sub_color);
  border-radius: 50%;
  left: -4px;
}

.flow_items > li dl::after {
  width: 50px;
  border-bottom: 1px dashed #999;
  position: absolute;
  left: 5px;
}

.flow_items > li dl dt {
  font-size: 20px;
  font-weight: 600;
  color: var(--font_sub_color);
  margin-bottom: 0.5em;
  display: flex;
  align-items: center;
}



.two_plans-txt p {
  text-align: center;
  margin-bottom: 70px;
}

.two_plans-items {
  display: flex !important;
  justify-content: space-between !important;
}

.two_plans-list {
  width: 45%;
}

.two_plans-items p {
  text-align: center;
  margin-bottom: 40px;
}

.two_plans-items p span {
  background: var(--light_blue_color);
  padding: 10px 30px;
  border-radius: 100px;
}

.semi_order-feature,
.semi_order-flow,
.semi_order-price {
  margin-bottom: 120px;
}

.gentei_price-item p {
  margin-top: 10px;
  padding-left: 20px;
  font-size: 14px;
}

.gentei_price-table {
  border: 1px solid var(--main_color);
}

.gentei_price-table span {
  border-bottom: 4px solid var(--light_blue_color);
}

.gentei_price-table th:first-child {
  width: 25%;
}

.gentei_price-table th:not(:first-child) {
  width: calc(75% / 3);
}

.gentei_price-table tfoot tr td {
  background: var(--bg_gray);
  color: var(--font_sub_color);
}

.rental p {
  text-align: center;
  margin-bottom: 40px;
}

.rental span {
  color: var(--font_sub_color);
}

.rental_items {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 40px;
}

.rental_img {
  width: 40%;
}

.rental_txt {
  width: 50%;
}

.rental_txt p {
  text-align: left;
  margin-bottom: 0;
}

.rental_txt p:not(:last-child) {
  margin-bottom: 20px;
}

.repairing_sub-ttl {
  margin-bottom: 50px;
}

.hikaku_item {
  display: flex;
  justify-content: center;
  column-gap: 20px;
}

.repairing_item {
  margin-bottom: 60px;
}

.not_repair {
  margin-bottom: 60px;
}

.not_repair-txt span {
  color: var(--font_sub_color);
  font-size: 16px;
}

.request_repair {
  margin-bottom: 60px;
}

/* 実例紹介 */
.top_examples-txt > span {
  color: var(--font_sub_color);
}

.examples_btn {
  text-align: center;
  margin-top: 20px;
}

.examples_btn > a {
  background: var(--white_color);
  border: 1px solid var(--main_color);
  padding: 10px 40px;
  font-size: 16px;
  position: relative;
  color: var(--font_sub_color);
}

.examples_btn > a::after {
  position: absolute;
  content: ">";
  top: 2.5px;
  right: 10px;
}

.examples_btn a:hover {
  background: var(--main_color);
  color: var(--white_color);
  transition: .5s;
}

/* 実例紹介　詳細 */
.sub_examples-mv-item p,
.sub_columns-mv-item p,
.sub_cat-mv-item p {
  margin: 30px 0 !important;
  padding: 20px 80px !important;
}

.sub_examples-mv-item p span {
  font-weight: normal !important;
  font-size: 20px;
}

.examples_item {
  margin-bottom: 120px;
}

.examples_img-items li {
  text-align: center;
}

.examples_img-items li:not(:last-child) {
  margin-bottom: 60px;
}

.examples_img-items img {
  width: 450px;
  height: 450px;
  object-fit: cover;
}

.examples_info {
  margin-bottom: 120px;
}

.examples_info-table {
  background: var(--white_color);
  border: 2px solid var(--main_color);
}

.examples_info-table th {
  color: var(--main_color);
  font-family: var(--ttl_font);
}

.examples_info-table td {
  text-align: left;
  padding-left: 20px !important;
}

.examples_voice {
  margin-bottom: 120px;
}

.examples_voice-container:not(:last-child) {
  margin-bottom: 60px;
}

.examples_voice-before,
.examples_voice-after {
  padding: 0 10px 5px;
  display: inline-block;
  font-size: 22px;
  font-weight: bold;
  font-family: var(--ttl_font);
  margin-bottom: 25px;
}

.examples_voice-before {
  background: linear-gradient(transparent 40%, #E6E6E6 40%);
}

.examples_voice-after {
  background: linear-gradient(transparent 40%, #FFE7B1 40%);
}

.examples_voice-item {
  background: var(--bg_sub_color);
  width: 98%;
  max-width: 980px;
  margin-right: 0;
  margin-left: auto;
  padding: 47px 27px;
}

.examples_voice-item p {
  margin-bottom: 20px;
}

.examples_attention-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
} 

.examples_comment {
  border: 5px solid var(--font_color);
  margin-bottom: 120px;
}

.examples_comment-container {
  display: flex;
  justify-content: space-between;
  padding: 70px 64px;
  column-gap: 60px;
}

.examples_comment-img {
  width: 20%;
  max-width: 200px;
}

.examples_comment-img img {
  object-fit: cover;
  height: 270px;
  width: 200px;
  box-shadow: -15px 15px 0px -2px var(--bg_sub_color);
  border-radius: 0px;
}

.examples_comment_body {
  width: 75%;
}

.examples_syokai {
  margin-bottom: 50px;
}

.examples_gentei {
  margin-bottom: 90px;
}

.examples_syokai-head,
.examples_gentei-head {
  margin-bottom: 15px;
}

.examples_syokai-table tr td:first-child,
.examples_gentei-table tr td:first-child {
  width: 60%;
}

.examples_syokai-table tr td:last-child,
.examples_gentei-table tr td:last-child {
  width: 40%;
}

.examples_syokai-table tfoot,
.examples_gentei-table tfoot {
  color: var(--font_sub_color);
}

.examples_syokai-table tfoot td:first-child,
.examples_gentei-table tfoot td:first-child,
.gentei_price-table tfoot td:first-child {
  text-align: right;
  padding-right: 20px !important;
}

.page_examples-btn {
  margin-top: 60px;
}

.examples_other {
  margin-top: 200px;
}

.examples_other p {
  margin-bottom: 20px;
}

/* イーブン友の会 */

.tomonokai_concept p:not(:last-child) {
  margin-bottom: 15px;
}

.tomonokai_concept-point {
  display: inline-block;
  font-size: 30px;
  color: var(--font_sub_color);
}

.tomonokai_about-container {
  padding: 60px 60px 20px;
  text-align: center;
  margin-bottom: 120px;
}

.tomonokai_about-container p {
  margin-bottom: 40px;
}

.tomonokai_service {
  margin-bottom: 120px;
}

.tomonokai_service-img {
  padding-bottom: 60px;
  text-align: center;
}

.tomonokai_service-txt {
  margin-bottom: 20px;
}

.tomonokai_plan {
  padding: 100px 0 20px;
}

.tomonokai_plan-item:last-child {
  margin-bottom: 90px;
}

.tomonokai_plan-item-head {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--font_color);
  font-size: 22px;
}

.tomonokai_plan-item-ttl {
  margin-top: 14px;
}

.tomonokai_plan-table {
  margin: 28px 0 0;
  background: var(--bg_color);
}

.tomonokai_plan-table tr td:first-child {
  width: 20% !important;
}

.tomonokai_plan-table tr td:not(:first-child) {
  width: calc(80% / 2) !important;
}

.tomonokai_attention {
  font-size: 14px;
  margin-left: 10px;
  margin-top: 15px;
}

.tomonokai_tokuten-container {
  text-align: center;
}

.tomonokai_tokuten-items {
  text-align: center;
  display: inline-block;
}

.tomonokai_tokuten-list {
  text-align: left;
}

.tomonokai_tokuten-list:not(:last-child) {
  margin-bottom: 40px;
}

.tomonokai_tokuten-list dl {
  display: flex;
  column-gap: 20px;
  align-items: center;
}

.tomonokai_tokuten-list dt {
  background: var(--main_color);
  color: var(--white_color);
  padding: 5px;
  border-radius: 100px;
  display: inline-block;
  text-align: center;
  width: 50px;
  height: 50px;
}

.tomonokai_tokuten-list dt span {
  font-size: 10px;
  display: block;
  text-align: center;
  margin-top: 3px;
}

.tomonokai_tokuten-list dd span {
  color: var(--font_sub_color);
  font-size: 20px;
}

.tomonokai_plan .cta .contents {
  margin-bottom: 0;
}

/* コラム */

.post_list {
  display: flex;
  column-gap: 20px;
  margin-bottom: 10px;
}

.post_content h5 {
  margin-bottom: 20px;
  font-size: 20px;
}

.post_wrapper {
  display: flex;
  column-gap: 5%;
}

.post_item {
  width: calc(100% - 250px);
  text-align: left;
}

.post_item_img {
  margin-bottom: 60px;
}

.post_item_img img {
  width: 100%;
  object-fit: cover;
}

.post_body p {
  margin-bottom: 20px;
}


.post_arrow {
  margin: 50px 0 30px;
  display: flex;
  justify-content: space-between;
}

.post_prev,
.post_next {
  display: inline-block;
  padding: 10px;
}

.post_prev a,
.post_prev a:visited,
.post_next a,
.post_next a:visited {
  color: var(--font_color);
}

.post aside {
  width: 250px;
}

.post .aside_img {
  margin-bottom: 10px;
}

.post .aside_ttl {
  padding: 15px;
  background: var(--bg_sub_color);
  margin-bottom: 20px;
  text-align: center;
}

.post .aside_list {
  display: flex;
  column-gap: 10px;
  margin-bottom: 10px;
}

.post .aside_body ul {
  margin-bottom: 60px;
}

.post .aside_body ul li:not(:last-child) {
  margin-bottom: 30px;
}

.post .aside_cat-list li {
  margin-bottom: 10px;
  padding: 5px;
}

/* 会社案内 */
.message_items {
  display: flex;
  justify-content: space-between;
}

.message_img {
  width: 40%;
}

.message_body {
  width: 55%;
}

.message_body p {
  margin-bottom: 20px;
}

.message_body .message_body-name {
  text-align: right;
}

.profile_table {
  width: 74%;
  max-width: 800px;
  margin: 0 auto;
}

.profile_table tr td:first-child {
  background: var(--font_sub_color);
  color: var(--white_color);
  border-bottom: 1px solid #fff !important;
}

.profile_table td:last-child {
  text-align: left;
  padding-left: 20px !important;
}

/* お問い合わせ */
.contact_form {
  text-align: center;
}

.contact_form-txt {
  text-align: center;
  margin-bottom: 40px;
}

.form {
  width: 50%;
  max-width: 540px;
  margin: 0 auto;
}

.form_item {

}

.form_item:not(:last-child) {
  margin-bottom: 30px;
}

.form_item:last-child {
  margin-bottom: 100px;
}


.form_item .form_item_label span {
  margin-left: 10px;
  color: #FF0101;
  font-size: 12px;
}

.form_item_label {
  width: 100%;
  font-family: var(--ttl_font);
  margin-bottom: 5px;
}



.form_item_input {
  padding: 10px;
  border: 1px solid #707070;
  width: 100%;
}

.wpcf7-radio {
  border: none;
}

textarea {
  height: 300px;
}

.form_btn_center {
  text-align: center;
  width: 300px;
  margin:  0 auto;
  margin-top: 60px;
}

.form_btn_center p {
  text-align: center;
}

.form_btn {
  padding: 22px 100px;
  background: #FFD87E;
  color: var(--font_color);
  font-size: 24px;
  border: 10px;
}

.contact_form-calendar {
  width: 60%;
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}

.contact_form-calendar iframe {
  height: 700px;
}







/* ===============================================
# タブレット
=============================================== */
@media screen and (max-width: 1280px) {
  .inner {
    width: 95% !important;
    max-width: 1200px !important;
  }

  .voice_body {
    margin-right: 0 !important;
    margin-left: auto !important;
    width: 55% !important;
    padding: 80px 80px 100px;
  }

  .tomonokai .inner {
    max-width: 1024px !important;
  }


}
/* タブレット終わり */


/* ===============================================
# スマホ
=============================================== */
@media screen and (max-width: 767px) {
  /* 共通 */
  body {
    font-size: 16px;
  }

  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  .inner {
    width: 95% !important;
    max-width: 728px !important;
  }

  .contents {
    margin-bottom: 90px !important;
  }

  h2 {
    font-size: 22px;
    margin-bottom: 40px;
  }

  h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  h3 span {
  font-size: 16px;
}

  h4 {
    font-size: 20px;
    margin-bottom: 40px;
  }

  .btn {
    padding: 10px 60px;
  }

  .btn a {
    font-size: 16px;
  }

  .btn a::after {
    right: -35px;
  }


  .table_item {
    width: 100%;
  } 

  .before,
  .after {
    font-size: 20px;
    margin-bottom: 40px;
  }

  .before_list, 
  .after_list {
    width: 45%;
  }

  .underline_head {
    font-size: 20px;
  }

  /* フェードイン下から */
  .fadein {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 0.3s;
  }

  .examples_syokai-table tbody tr td:last-child,
  .examples_syokai-table tfoot tr td:last-child, 
  .examples_gentei-table tbody tr td:last-child, 
  .examples_gentei-table tfoot tr td:last-child, 
  .gentei_price-table tbody tr td:not(:first-child),
  .gentei_price-table tfoot tr td:not(:first-child) {
    padding-right: 10px !important;
    font-size: 15px;
  }







  /* ヘッダー */
  .header_inner {
    margin: 0 20px;
    padding: 50px 0;
  }

  .header_logo {
    position: fixed;
    z-index: 1001;
  }

  .header_logo-img {
    max-width: 90px;
  }

  /* ハンバーガー */
  .sp_drawer-nav {
    box-sizing: border-box;
    position: fixed;
    width: 70%;
    height: 100vh;
    background: var(--white_color);
    opacity: 0.95;
    display: block;
    top: 0;
    right: -100%;
    transition: bottom .5s;
    text-align: center;
    z-index: 1;
  }

  .drawer_toggle {
    position: fixed;
    z-index: 9999;
    cursor: pointer;
    display: inline-block;
    width: 50px;
    height: 50px;
    top: 25px;
    right: 20px;
    border-radius: 10px;
    }

  .drawer_toggle p {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
  }
  
  .drawer_toggle span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 7px;
    height: 1px;
    border-radius: 3px;
    width: 35px;
    background: var(--font_color);
  }
  
  .drawer_toggle span:nth-of-type(1) {
    top: 14px;
  }
  
  .drawer_toggle span:nth-of-type(2) {
    top: 24px;
  }
  
  .drawer_toggle span:nth-of-type(3) {
    top: 34px;
  }
  
  .drawer_toggle.is-open span:nth-of-type(1){
    top: 17px;
    left: 9px;
    transform: translateY(6px) rotate(-45deg);
    width: 60%;
  }
  
  .drawer_toggle.is-open span:nth-of-type(2) {
    opacity: 0;
  }
  
  .drawer_toggle.is-open span:nth-of-type(3) {
    top: 29px;
    left: 9px;
    transform: translateY(-6px) rotate(45deg);
    width: 60%;
  }
  
  #global_nav li:not(:last-child) {
    margin-bottom: 2rem;
  }

  #global_nav li a {
    padding: 10px;
  }

  .sp_drawer-nav.is-open {
    right: 0;
    z-index: 1005;
  }

  .sp_drawer-items {
    margin: 55px 0 0 50px;
  }

  .header_nav-item {
    margin-bottom: 8px;
    padding: 5px;
  }

  .header .sub_menu-item {
    margin-top: 5px;
    font-size: 13px;
    padding-left: 20px;
    position: relative;
  }
  
  .header .sub_menu-item::before {
    position: absolute;
    content: "ー";
    top: 0;
    left: 0;
  }
  


  /* 追従 */
  .sp_float {
    position: fixed;
    bottom: 0;
    z-index: 1008;
  }

  .sp_float-items {
    display: flex;
  }

  .sp_float-list {
    width: calc(100vw / 3);
    padding: 10px 0;
    text-align: center;
  }

  .sp_float-list i,
  .sp_float-list p {
    color: var(--white_color);
  }

  .sp_float-list p {
    text-align: center;
    font-family: var(--ttl_font);
    font-size: 14px;
    font-weight: bold;
  }

  .sp_float-tel {
    background: var(--blue_color);
  }

  .sp_float-mail {
    background: var(--gray_color);
  }

  .sp_float-line {
    background: #A2BD95;
  }

  /* フッター */
  .footer {
    margin-top: 90px;
    padding: 60px 0 100px;
  }

  .footer_inner {
    width: 95%;
    max-width: 400px;
    margin: 0 auto;
    
  }

  .footer_container {
    flex-direction: column;
    row-gap: 40px;
  }

  .footer_logo {
    margin: 0 auto;
    margin-bottom: 20px;
  }

  .footer_info p {
    text-align: center;
    font-size: 14px;
  }

  .footer_calender {
    display: flex;
    column-gap: 20px;
    justify-content: center;
  }

  .footer_calender img {
    width: 150px;
    height: 250px;
  }

  .menu-footer-container {
    margin: 0 20px;
  }

  .footer_nav {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    column-gap: 15px;
  }

  .footer_nav-item {
    font-size: 12px;
  }

  .footer .sub_menu-item {
    font-size: 10px;
    padding-left: 10px;
    margin-top: 7px;
  }

  .footer .sub_menu-item::before {
    top: 3px;
    font-size: 5px;
  }

  .copy_right {
    margin-top: 30px;
  }



  /* mv */
  .mv_inner img {
    height: calc(100vh - 167px);
  }

  .mv_body p:first-child {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .mv_body p:last-child {
    font-size: 12px;
  }

  /* コンセプト */
  .concept h2 {
    font-size: 20px;
  }

  /* 悩み */
  .nayami .nayami_contents {
    padding-bottom: 90px;
  }

  .nayami .nayami_contents::after {
    border-width: 2rem 3rem 2rem
  }

  .nayami_container {
    flex-direction: column;
    row-gap: 40px;
  }

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

  /* 解決 */
  .kaiketu_container {
    flex-direction: column;
    row-gap: 20px;
    padding: 80px 0 60px;
  }

  .kaiketu_txt {
    font-size: 16px;
  }

  .kaiketu_point {
    padding: 10px 30px;
  }

  .kaiketu_red {
    font-size: 22px;
    padding: 0 5px 5px;
  }

  .kaiketu_img {
    width: 80%;
  }

  /* 実例紹介 */
  .top_examples-attention {
    width: 100%;
  }

  .male::before {
    border-bottom: 30px solid rgba(89, 173, 204, 0.9);
  }

  .female::before {
    border-bottom: 30px solid rgba(207, 157, 186, 0.9);
  }

  .top_examples-items {
    column-gap: 4%;
  }

  .top_examples-list {
    width: 48%;
    /* max-width: 180px; */
  }

  .top_examples-list-txt {
    top: 2px;
    left: 8px;
  }

  .examples_age-txt {
    font-size: 15px;
  }

  .examples_range-txt {
    font-size: 11px;
  }

  .page_examples-btn {
    margin-top: 0;
  }

  .examples_btn > a {
    padding: 10px 30px;
  }

  .feature_txt {
    font-size: 9px;
  }

  .top_examples-age {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .examples_other {
    margin-top: 90px;
  }


  /* イーブンでできること */
  .top_about {
    padding: 60px 0;
  }

  .top_about-list {
    flex-direction: column;
  }

  .top_about-list:last-child {
    flex-direction: column-reverse;
  }

  .top_about-list img {
    width: 100%;
  }

  /* 完全個室 */
  .private_txt {
    top: 100px;
    right: 50px;
    width: 60%;
    font-size: 14px;
  }

  .private br {
    height: 10px;
  }

  /* お客様の声 */
  .voice .contents {
    background: url(../even/img/top/voice_sp.png) no-repeat center center/cover;
    height: 1000px;
  }

  .voice_body {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 40px 20px 300px;
    box-sizing: border-box;
  }

  .voice_body p {
    margin-bottom: 12px;
  }

  .voice_btn {
    margin-top: 10px;
  }

  /* 友の会 */
  .top_tomonokai p {
    font-size: 14px;
  }

  /* よくあるご質問 */
  .faq {
    padding: 60px 0 20px;
  }

  .faq_items {
    margin-bottom: 70px;
  }

  .faq_items dl {
    margin: 10px 0 0;
  }
  .faq_items dl:after {
      top: 20px;
      right: 20px;
      width: 7px;
      height: 7px;
  }
  .faq_items dl dt {
      padding: 16px 16px 16px 30px;
      font-size: 14px;
  }
  .faq_items dl dt::before {
    top: 17px;
    left: 10px;
    font-size: 16px;
    line-height: 1;
  }
  .faq_items dl dd::before {
      font-size: 16px;
      left: 10px;
      line-height: 1.4;
  }
  .faq_items dl dd {
      margin: 0;
      padding: 16px 16px 16px 30px;
      font-size: 14px;  
  }
  .faq_items dl dd p {
      margin: 30px 0 0;
  }
  .faq_items dl dd p:first-child{
      margin-top: 0;
      font-size: 14px;
  }

  /* cta */
  .cta_head {
    font-size: 14px;
    padding: 15px;
  }

  .cta_items {
    flex-direction: column;
    row-gap: 20px;
    padding-bottom: 30px;
  }

  .cta_tel, 
  .cta_mail {
    width: 90%;
    margin: 0 auto;
    padding: 30px 0;
  }

  /* お知らせ */
  .top_news {
    padding: 60px 0;
  }

  .m_news-items li a{
    flex-direction: column;
    row-gap: 10px;
  }

  .m_news-items li:not(:last-child) {
    margin-bottom: 30px;
  }

  .m_news-list:first-child {
    width: 100%;
    column-gap: 10px;
  }

  .m_news-list:last-child {
    width: 100%;
  }

  .news_date {
    width: 38%;
  }

  .news_date-link {
    width: 40%;
  }

  /* テレビCM */
  .cm {
    padding: 60px 0;
  }

  .cm iframe {
    height: 250px;
  }


  /* アクセス */
  .access_map {
    margin-bottom: 90px;
  }


  .access_map iframe {
    height: 250px;
  }

  .access_map span {
    font-size: 16px;
  }

  .access_map p {
    margin-top: 30px;
    font-size: 12px;
  }

  .access_parking-subtxt {
    font-size: 14px;
  }

  .access_parking-img {
    margin-bottom: 30px;
  }

  .access_parking-txt p {
    font-size: 14px;
    text-align: center;
  }

  .access_parking-txt .ttl_txt {
    font-size: 16px;
  }


  /* 下層ページ */
  /* パンくず */
  .breadcrumb {
    margin: 0 40px 40px 20px;
    font-size: 12px;
  }


  /* mv */
  .sub_mv {
    margin-bottom: 10px;
  }

  .sub_mv-item p {
    font-size: 22px;
    margin: 30px 0;
    padding: 20px !important;
  }

  /* イーブンのかつら */

  .flow_items > li:not(:last-child) {
    margin-bottom: 30px;
  }

  .flow_items > li dl::after {
    width: 20px;
  }

  .flow_items > li dl {
    padding-left: 30px;
  }

  .flow_container {
    padding-left: 20px !important;
  }

  .two_plans-items {
    flex-direction: column;
    row-gap: 90px;
  }

  .two_plans-list {
    width: 100%;
  }

  .gentei_price-table th:first-child {
    width: 20%;
  }

  .gentei_price-table th:not(:first-child) {
    width: calc(80% / 3);
  }

  .gentei_price-table tfoot td:first-child {
    text-align: center;
  }

  .rental_items {
    flex-direction: column;
    row-gap: 40px;
  }

  .rental_img {
    width: 100%;
  }

  .rental_txt {
    width: 100%;
  }

  /* 実例紹介 */
  .examples_item {
    margin-bottom: 70px;
  }

  .examples_img-items img {
    width: 180px;
    height: 180px;
  }

  .examples_img-items li:not(:last-child) {
    margin-bottom: 30px;
  }

  .examples_info {
    margin-bottom: 70px;
  }

  .examples_info-table th {
    width: 30%;
  }

  .examples_info-table td {
    width: 70%;
  }

  .examples_voice {
    margin-bottom: 70px;
  }

  .examples_voice-item {
    width: 100%;
    margin:  0 auto;
    padding: 30px 20px;
    box-sizing: border-box;
  }

  .examples_comment {
    margin-bottom: 70px;
  }

  .examples_comment-container {
    flex-direction: column;
    row-gap: 40px;
    padding: 50px 15px;
  }

  .examples_comment-img {
    width: 100%;
    margin: 0 auto;
  }

  .examples_comment-img img {
    width: 300px;
  }

  .examples_comment_body {
    width: 100%;
  }

  .examples_gentei {
    margin-bottom: 90px;
  }

  /* イーブン友の会 */

  .tomonokai_concept-point {
    font-size: 20px;
  }

  .tomonokai_about-container {
    padding: 60px 20px 20px;
  }

  .tomonokai_service-img img{
    width: 100%;
  }

  .tomonokai_plan-table th:first-child {
    width: 25%;
  }

  .tomonokai_plan-table th:last-child {
    width: calc(75% / 2);
  }

  .tomonokai_tokuten-list dd {
    width: calc(100% - 60px);
  }

  /* コラム */
  .post_wrapper {
    flex-direction: column;
    row-gap: 80px;
  }

  .post_item {
    width: 100%;
  }

  .post_item_img {
    margin-bottom: 20px;
  }

  .post aside {
    width: 100%;
  }

  .post .aside_img img {
    width: 100%;
  }


  /* 会社概要 */
  .message_items {
    flex-direction: column;
    row-gap: 40px;
  }

  .message_img {
    width: 100%;
  }

  .message_body {
    width: 100%;
  }

  .profile_table {
    width: 100%;
  }

  .profile_table tr td:first-child {
    width: 30%;
  }

  .profile_table tr td:last-child {
    width: 70%;
    padding-left: 10px !important;
  }

  /* お問い合わせ */
  .form {
    width: 100%;
    max-width: 320px;
  }

  .contact_form-calendar {
    width: 100%;
  }

  .contact_form-calendar iframe {
    height: 500px;
  }
  




}
/* スマホ終わり */
