html { scroll-behavior: smooth;
  scroll-padding-top: 90px; // ヘッダーの高さ分設定
}
@media screen and (max-width: 767px) {
  html { scroll-padding-top: 74px; // ヘッダーの高さ分設定
  }

a {
	text-decoration:none;
}
.pc {
	display:flex;
}
.sp {
	display:none;
}

.fadeIn1s {
  animation-name: fadeIn1s;
  animation-delay: 0.5s;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeIn1s {
  0% {
  }
  100% {
      transform: translateY(0);
      opacity: 1;
  }
}

/* --------------------------------------------
 * 　スクリプト用
 * -------------------------------------------- */

.fadein {
	opacity : 0;
	transform : translate(0px, 0px);
	transition : all 1500ms;
	}
.fadein.scrollin {
	opacity : 1;
	transform : translate(0px, 0px);
	}
.slideinleft {
	opacity : 1;
	transform : translate(-500px, 0px);
	transition : all 500ms;
	}
.slideinleft.slidein {
	opacity : 1;
	transform : translate(0px, 0px);
	}
.slideinright {
	opacity : 1;
	transform : translate(500px, 0px);
	transition : all 500ms;
	}
.slideinright.slidein {
	opacity : 1;
	transform : translate(0px, 0px);
	}
.slideup {
	opacity : 1;
	transform : translate(0px, 200px);
	transition : all 500ms;
	}
.slideup.slidein {
	opacity : 1;
	transform : translate(0px, 0px);
	}	

/* --------------------------------------------
 * 　基本設計
 * -------------------------------------------- */

.w_inner {
    max-width: 1160px;
    padding:0 20px;
    margin-right: auto;
    margin-left: auto;
  }

/* --------------------------------------------
 * 　ヘッダー
 * -------------------------------------------- */


  .c-header {
    align-items: center;
    background: none;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    padding: 1rem 2rem; /* カスタマイズしてください */
    width: 100%;
  }
  
  .c-header__logo {
    color: #000; /* カスタマイズしてください */
    min-width: 80px; /* カスタマイズしてください */
    text-decoration: none;
  }
  .c-header__logo img{
    width:120px;
  } 

    .c-header__logo img{
      width:90px;
    } 

  .c-header__list {
    box-sizing: border-box;
    display: flex;
    margin: 0;
    padding: 0;
  }
  
  .c-header__list-item {
    list-style: none;
    text-decoration: none;
  }
  
  .c-header__list-link {
    color: #000000; /* カスタマイズしてください */
    display: block;
    margin-right: 45px; /* カスタマイズしてください */
    text-decoration: none;
    padding: 10px 0px; /* カスタマイズしてください */
    font-size: 1.6rem;
  }
  
  .c-header__list-link:hover {
    filter: opacity(0.6); /* カスタマイズしてください */
  }
  
  .c-hamburger-menu {
    position: fixed;
    z-index: 30;
  }

  
  .head_button a {
    color: #000000;
    line-height: 1;
    transition: 0.3s all ease;
    display: block;
    padding: 12px 14px 12px;
    border: 1px solid #ffffff;
    width:48px;
  }
  
  .head_button a:hover {
    text-decoration: none;
    background: #ffffff;
    color: #000000;
    border:#000000 1px solid;
    transition: 0.3s all ease;
  }

    .head_button a {
      color: #000000;
      line-height: 1;
      transition: 0.3s all ease;
      display: block;
      padding: 12px 14px 12px;
      border: 1px solid #000000;
      width:48px;
      margin: 15px 0;
    }
    
    .head_button a:hover {
      text-decoration: none;
      background: #ffffff;
      color: #000000;
      border:#000000 1px solid;
      transition: 0.3s all ease;
    }


    .mv .imgarea_u{
      width: 100%;
      margin: 0 auto;
      height: auto;
      text-align: center;
      object-fit: cover;
      vertical-align: bottom;
    }
    .mv .imgarea_u img{
      width: 50%;
      margin: 0 auto;
      height: auto;
    }
  


/* 初期状態のヘッダー */
#header {
  background-color: transparent;
  color: black;
  transition: background-color 0.6s, color 0.6s;
  display: flex  ;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* スクロール後のヘッダー */
#header.scrolled {
  background:rgba(255, 255, 255, .9);
}
  

    .c-hamburger-menu__list {
      background-color: rgba(255, 255, 255, .9);
      align-items: flex-start;
      display: flex;
      flex-direction: column;
      left: 0;
      padding: 2rem; /* カスタマイズしてください */
      position: absolute;
      transform: translateX(-100%);
      transition: 0.3s; /* カスタマイズしてください */
      top: 100%;
      width: 100%;
      z-index: 20;
    }
    .c-header__list-link {
      color: #000000; /* カスタマイズしてください */
      display: block;
      margin-right: 20px; /* カスタマイズしてください */
      text-decoration: none;
      padding: 10px 0px; /* カスタマイズしてください */
      font-size: 1.6rem;
    }
    
    #hamburger:checked ~ .c-hamburger-menu__list {
      transform: translateX(0%);
      transition: 0.3s;
    }

  
  .c-hamburger-menu__input {
    display: none;
  }
  
  .c-hamburger-menu__bg {
    background-color: #ffffff; /* カスタマイズしてください */
    cursor: pointer;
    display: none;
    height: 100vh;
    left: 0;
    opacity: 0.4; /* カスタマイズしてください */
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
  }
  
  #hamburger:checked ~ .c-hamburger-menu__bg {
    display: block;
  }
  
  .c-hamburger-menu__button {
    display: none;
  }
  

    .c-hamburger-menu__button {
      align-items: center;
      appearance: none;
      background-color: transparent;
      border: none;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      gap: 5px; /* カスタマイズしてください */
      height: 32px; /* カスタマイズしてください */
      justify-content: center;
      width: 32px; /* カスタマイズしてください */
    }

  
  .c-hamburger-menu__button-mark {
    background-color: #000000; /* カスタマイズしてください */
    display: block;
    height: 1px; /* カスタマイズしてください */
    transition: 0.3s; /* カスタマイズしてください */
    width: 20px; /* カスタマイズしてください */
  }
  

    #hamburger:checked
      ~ .c-hamburger-menu__button
      .c-hamburger-menu__button-mark:nth-of-type(1) {
      transform: translate(2px, 1px) rotate(45deg); /* カスタマイズしてください */
      transform-origin: 0%; /* カスタマイズしてください */
    }
    #hamburger:checked
      ~ .c-hamburger-menu__button
      .c-hamburger-menu__button-mark:nth-of-type(2) {
      opacity: 0;
    }
    #hamburger:checked
      ~ .c-hamburger-menu__button
      .c-hamburger-menu__button-mark:nth-of-type(3) {
      transform: translate(2px, 3px) rotate(-45deg); /* カスタマイズしてください */
      transform-origin: 0%; /* カスタマイズしてください */
    }


/* --------------------------------------------
 * 　フッター
 * -------------------------------------------- */
 #go_top {
  position: fixed;
  bottom: 50px;
  right: 50px;
  width: 80px;
  display: none;
  z-index:30;
}
  #go_top img{
    width:100%;
    opacity: 0.7;
  }
  #go_top:hover {
    cursor: pointer;
    opacity: 1;
  }

    #go_top {
      position: fixed;
      bottom: 50px;
      right: 0px;
      width: 120px;

      z-index:30;
    }
    #go_top img{
      width:100%;
      opacity: 0.9;
    }
    #go_top:hover {
      cursor: pointer;
      opacity: 1;
    }


  footer {
    background:url(https://magatama.oreillebeauty.com/wp-content/themes/magatama.oreillebeauty/img/footerback.png);
    background-size: auto 100%;
    background-position: top;
    background-repeat: no-repeat;
    padding-top: 36px;
    margin-top: -90px;
    padding-bottom: 4px;
    position: relative;
  }
  
  footer .footer_logo {
    text-align: center;
    margin-bottom: 30px;
  }
  
  footer .footer_logo img {
    display: inline-block;
    width:14%;
    margin:30px auto;
  }
  
  footer .footer_nav {
    display: flex;
    justify-content: center;
    margin-bottom: 35px;
  }
  
  footer .footer_nav ul {
    display: flex;
  }
  
  footer .footer_nav ul li {
    margin-right: 10px;
    margin-left: 10px;
    list-style: none;
    font-size: 1.4rem;
    color:#ffffff;
  }
  footer .footer_nav ul li a{
    color:#ffffff;
  }

  footer .cr {
    text-align: center;
    font-size: 12px;
    color:#000000;
    padding: 0 0 30px 0;
  }


/* --------------------------------------------
 * 　基本設計（テストサイト元のままcss）
 * -------------------------------------------- */
  #container:not(.container_front, .container_404) {
    display: flex;
  }
  
  #container:not(.container_front, .container_404) main {
    flex: 1 1 auto;
  }
  
  #container:not(.container_front, .container_404) .container_side {
    width: 310px;
    min-width: 310px;
    margin-left: 40px;
  }
/* --------------------------------------------
 * 　記事フォーマット　お知らせ / ブログ（テストサイト元のままcss）
 * -------------------------------------------- */
 .container_single .article .date {
  font-size: 1.2rem;
}

.container_single .article h1 {
  margin-bottom: 10px;
}

/* --------------------------------------------
 * 　お知らせ一覧（テストサイト元のままcss）
 * -------------------------------------------- */
.news_list_wrap ul li a {
  display: flex;
  padding: 12px 0 3px;
  border-bottom: 1px dotted #ddd;
}

.news_list_wrap ul li a .date {
  margin-right: 22px;
}

.news_list_wrap .to_list {
  margin-top: 50px;
  text-align: center;
}

.news_list_wrap .to_list a {
  display: inline-block;
  padding: 19px 40px 15px;
  background: #fff2f5;
  color: #777777;
}

.news_list_wrap .to_list a:hover {
  text-decoration: none;
}

/* --------------------------------------------
 * 　↓ブログ 記事リスト（テストサイト元のままcss）
 * -------------------------------------------- */
 .container_article_list {
  flex: 1 1 auto;
}

.container_article_list .col_3_wrap {
  display: flex;
}

.container_article_list .col_3_wrap>* {
  width: 100%;
  max-width: calc(100% / 3 - 20px);
}

.container_article_list .col_3_wrap>*:nth-child(3n + 2) {
  margin-right: 30px;
  margin-left: 30px;
}

.container_article_list .col_3_wrap>a:hover {
  text-decoration: none;
}

.container_article_list .col_3_wrap>a:hover .btn_common {
  background: #ffffff;
  color: #ef0846;
  transition: 0.3s all ease;
}

@media screen and (max-width: 1024px) {
  .container_article_list .col_3_wrap>*:nth-child(3n + 2) {
    margin-right: 20px;
    margin-left: 20px;
  }
}


  .container_article_list .col_3_wrap {
    flex-direction: column;
  }

  .container_article_list .col_3_wrap>* {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .container_article_list .col_3_wrap>*:last-child {
    margin-bottom: 0;
  }

  .container_article_list .col_3_wrap>*:nth-child(3n + 2) {
    margin-right: 0px;
    margin-left: 0px;
  }


.container_article_list .col_3_wrap li {
  margin-bottom: 40px;
}

.container_archive_blog .selected_category,
.container_archive_blog .selected_tag {
  margin-bottom: 10px;
}

.article_card {
  display: block;
}

.article_card:hover {
  background: #fff2f5;
}

.article_card .txtarea {
  padding: 5px;
}

.article_card .txtarea .img {
  margin-bottom: 5px;
}

.article_card .txtarea .date {
  font-size: 1.3rem;
  color: #888888;
  margin-bottom: 10px;
}

.article_card .txtarea .ttl {
  margin-bottom: 8px;
  font-weight: bold;
}

.article_card .txtarea .btn_read {
  text-align: right;
  color: #ef0846;
  font-size: 12px;
  text-decoration: underline;
}

.page_category .container_article_list>.selected_cat {
  font-weight: bold;
  margin-bottom: 10px;
}

.navigation.pagination {
  margin-top: 30px;
}

.navigation.pagination .nav-links .prev {
  border: none !important;
}

.navigation.pagination .nav-links .next {
  border: none !important;
}

.navigation.pagination .nav-links .current {
  padding: 6px 11px;
  background: #BFD2F8;
  border: 1px solid #0033cc;
  border-radius: 3px;
  color: #000000;
}

.navigation.pagination .nav-links a {
  padding: 6px 11px;
  border: 1px solid #0033cc;
  border-radius: 3px;
}

.navigation.pagination .nav-links a:hover {
  background: #BFD2F8;
  border: 1px solid #0033cc;
  color: #000000;
}

  .article {
    width: 90%;
    margin: 120px 0 40px 0;
    padding: 0 ;
    position: relative;
    display: flex;
    flex-wrap: wrap;
  }
  .article h1{
    font-size:2.6rem;
    font-weight:bold;
  }

/* --------------------------------------------
 * 　↑ブログ 記事リスト（テストサイト元のままcss）
 * -------------------------------------------- */

 /* --------------------------------------------
 * 　404
 * -------------------------------------------- */
#container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
 .container_404 {
  font-size: 1.8rem;
  text-align: center;
  margin:100px auto;
}

 /* --------------------------------------------
 * 　メインヴィジュアル
 * -------------------------------------------- */
 .mv_wrap {
	width:100%;
	/*background:#F1F1F1;*/
}
.mv {
	width:100%;
	margin:0 auto;
	padding: 0 0 0 0;
}
.mv p{
	width:100%;
	font-size:1.6rem;
	text-align:center;
	color:#ffffff;
}
.mv p.title{
	width:100%;
	margin:0 0 0 0;
	text-align:center;
	color:#000000;
	font-family: "Yu Mincho","Noto Selif", serif;
	font-size:3rem;
	font-weight:bold;
	padding:0 0 0 0;
	/*text-decoration:underline;
	text-decoration-color:#006600;*/
	text-underline-offset: 8px;
}
.mv p.subtitle{
	width:100%;
	text-align:center;
	color:#3F2801;
	font-size:1.2rem;
	font-family: "abel", sans-serif;
	margin:0 0 0 0;
}
.mv .b_contents{
	width:100%;
	margin:100px auto 0 auto;
	display:flex;
	flex-wrap:wrap;
}
.mv .b_contents .imgarea{
	width:50%;
	margin:0 auto;
	display:flex;
	flex-wrap:wrap;
	align-content: flex-start;
}
.mv .b_contents .imgarea img{
	width: 93%;
    margin: 0 0 0 auto;
	display:flex;
	flex-wrap:wrap;
}
.mv .b_contents .contarea{
	width:100%;
	display:flex;
	flex-wrap:wrap;
}
.mv .b_contents .contarea .subcontarea{
	width:100%;
	margin:0 auto 30px auto;
	padding:20px;
	display:flex;
	flex-wrap:wrap;
	background-color:#fff8ed;
}
.mv .b_contents .contarea .subcontarea p{
	width:100%;
	margin:0;
	font-size:1.4rem;
	line-height:180%;
	text-align:center;
	display:flex;
	flex-wrap:wrap;
	justify-content: center;
	color:#000000;
}
.mv .b_contents .contarea .subcontarea p.title{
	width:100%;
	margin:0 0 20px 0;
	font-size:1.8rem;
	line-height:180%;
	text-decoration:underline;
	text-align:center;
	display:flex;
	flex-wrap:wrap;
	justify-content: center;
	color:#000000;
}
.mv .b_contents .contarea .swiper-container {
	width:100%;
}
.mv .swiper01 {
  width: 100%;
  margin:0 auto;
  padding:0;
  height: auto;
  overflow: hidden;
}
.swiper-slide {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-weight: normal;
  font-size:1.4rem;
}
.swiper-slide img{
  width: 100%;
}
/* 前へ次への矢印カスタマイズ */
.swiper-button-prev::after,
.swiper-button-next::after {
  bottom: 0;
  content: "";
  height: 0;
  margin: auto;
  position: absolute;
  top: 0;
  width: 0;
}
/* 前への矢印カスタマイズ */
.swiper-button-prev::after {
	content: '';
	width: 16px;
	height: 16px;
	border: 0;
	border-top: solid 2px #000000;
	border-left: solid 2px #000000;
	transform: rotate(-45deg);
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	margin: auto;
	z-index:100;
}
/* 次への矢印カスタマイズ */
.swiper-button-next::after {
	width: 16px;
	height: 16px;
	border: 0;
	border-top: solid 2px #000000;
	border-right: solid 2px #000000;
	transform: rotate(45deg);
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	margin: auto;
	z-index:100;
}
.swiper-button-next{
	right: 2px;
}


	.mv_wrap {
		width:100%;
	}
	.mv .b_contents .contarea{
		width:100%;
		margin:15px auto;
		padding:30px;
		display:flex;
		flex-wrap:wrap;
	}

/* --------------------------------------------
 * 　セクション01
 * -------------------------------------------- */

 .top_section01 {
  background-size: 90%;
  background:none;
 }

 .top_section01 .sec01 {
  width: calc(100% - 3.2rem);
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 1.6rem;
  display: flex;
  flex-wrap: wrap;
 }
 .top_section01 .sec01 p{
  text-align: center;
  font-size: 1.6rem;
  margin: 0 auto;
  line-height: 220%;
  letter-spacing: 0.05em;
  text-align: left;
 }
 .top_section01 .sec01 p.title{
  font-size: 2.4rem;
  margin: 0 auto 40px auto;
  display: flex  ;
  flex-wrap: wrap;
  justify-content: center;
  text-align: left;
 }
 .top_section01 .sec01 .imgarea{
  width:45%;
  margin:0 auto 0 55%;
 }
 .top_section01 .sec01 .imgarea img{
  width:100%;
 }

 .top_section02 .sec01 .textarea .button{
  width: 100%;
  padding: 0;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
 }
 .title.sp {
  display: block !important;
}

/* --------------------------------------------
 * 　セクション02
 * -------------------------------------------- */

.top_section02 .sec01 .textarea{
  width: calc(100% - 3.2rem);
  padding: 0 1.6rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
 }
 .top_section02 .sec01 .textarea p{
  text-align: left;
 }
 .top_section02 .sec01 .textarea p.title{
  text-align: left;
}
 .top_section02 .sec01 .textarea p.subtitle{
  text-align: left;
 }
 .top_section02 .sec02 .textarea{
  width: calc(100% - 3.2rem);
  padding: 0 1.6rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
 }
 .top_section02 .sec02 .textarea p{
  text-align: left;
 }
 .top_section02 .sec02 .textarea p.title{
  text-align: left;
}
 .top_section02 .sec02 .textarea p.subtitle{
  text-align: left;
 }

 .top_section02 .sec02 .textarea .button a{
  padding: 40px 40px 40px 0;
 }

/* --------------------------------------------
 * 　セクション03
 * -------------------------------------------- */

 .top_section03 .sec01 img {
  FONT-WEIGHT: 600;
  width: 96%;
  margin: 0 2% 60px 2% !important;
}

/* --------------------------------------------
 * 　セクション04
 * -------------------------------------------- */
 .top_section04 {
  width: 100%;
  background:none;
}
 .top_section04 .sec02 {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 0 60px 0;
  display: flex;
  flex-wrap: wrap;
}
.top_section04 .sec02 .textarea p.title{
  width: 100%;
  font-size: 1.8rem;
  margin: 0 auto 40px auto;
  line-height: 180%;
}
.top_section04 .sec02 .textarea p.title{
  text-align: left;
}
.top_section04 .sec02 .imgarea{
  width:45%;
  margin:0 auto 0 55%;
 }
 .top_section04 .sec02 .imgarea img{
  width:100%;
 }
 .top_section04 .sec01 .textarea {
  width: calc(100% - 3.2rem);
  padding: 0 1.6rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
}
.top_section04 .sec01 .textarea p{
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 0 20px 0;
}
.top_section04 .sec01 .textarea p.title{
  text-align: center;
}
.top_section04 .sec01 .textarea p.subtitle{
  text-align: center;
}
.top_section04 .sec02 .textarea {
  width: calc(100% - 3.2rem);
  padding: 0 1.6rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
}

/* --------------------------------------------
 * 　セクション05
 * -------------------------------------------- */

 .top_section05 .sec01 .ttlarea {
  width: calc(100% - 3.2rem);
  padding: 0 1.6rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
}
.top_section05 .sec01 .ttlarea p.title{
  text-align: left;
}
.top_section05 .sec01 .ttlarea p.subtitle{
  text-align: left;
}

.top_section05 .sec01 .textarea{
  width: calc(100% - 3.2rem);
  padding: 2rem 1.6rem;
  margin: 0 auto;
  background: url(https://magatama.oreillebeauty.com/wp-content/themes/magatama.oreillebeauty/img/pg/yellow_back.png);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
}

.top_section05 .sec01 .textarea p{
  text-align: left;
}

.top_section05 .sec01 .textarea .button{
  width: 100%;
  padding: 0 30px 0 0 ;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
/* --------------------------------------------
 * 　セクション06
 * -------------------------------------------- */

 .top_section06 {
  width: 100%;
}

.top_section06 .sec01 .textarea {
  width: calc(100% - 3.2rem);
  padding: 0 1.6rem;
}

.top_section06 .sec01 .textarea p{
  text-align: left;
  font-size: 1.6rem;
  margin: 0 auto;
  line-height: 220%;
  letter-spacing: 0.1rem;
  display: block !important;
}
.top_section06 .sec01 .textarea p.pc{
  display: none !important;
}

.top_section06 .sec01 .textarea .button a{
  padding: 40px 40px 40px 0;
}

.top_section06 .sec01 .textarea p.addtext{
  width: 100%;
  font-size: 1.4rem;
  margin: 0 auto 40px auto;
  line-height: 180%;
}

.top_section06 .sec02 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 0 100px 0;
  display: flex;
  flex-wrap: wrap;
}
.top_section06 .sec02 .textarea p.addtext{
  width: 100%;
  font-size: 1.4rem;
  margin: 0 auto 40px auto;
  line-height: 180%;
  text-align: center;
}
/* --------------------------------------------
 * 　サブページ
 * -------------------------------------------- */

 .subpage_sec_wrap {
  width: 100%;
  background:url(https://magatama.oreillebeauty.com/wp-content/themes/magatama.oreillebeauty/img/back02-min_sp.png);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  margin: 0 0 100px 0;
  padding: 0 0 40px 0;
 }
 .subpage_sec {
  width: calc(100% - 3.2rem);
	padding:40px 1.6rem 50px 1.6rem;
  margin: 0 auto;
 }

 .subpage_wrap .top{
	width: 100%;
	padding: 50px 0 30px 0;
	background:url(https://magatama.oreillebeauty.com/wp-content/themes/magatama.oreillebeauty/img/sub_head_back_pc.jpg);
	background-size: cover;
	background-position: top;
	background-repeat: no-repeat;
}
.subpage_wrap .top .imgarea_maga img{
	width: 35%;
}

/* --------------------------------------------
 * 　↓サブページ（お客様の声）
 * -------------------------------------------- */
 .subpage_wrap .top .imgarea_txt_cv img{
	width: 70%;
	margin: 0 auto;
	vertical-align: bottom;
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.cv_wrap{
  width: calc(100% - 3.2rem);
  margin: 0 auto 40px auto;
 }
 .cv_wrap .cv_sec{
	width: 100%;
	margin: 0 auto 20px auto;
	padding: 50px 0;
 }

 .cv_wrap .cv_sec .imgarea{
	width: 100%;
 }
 .cv_wrap .cv_sec .imgarea img{
	width: 60%;
	margin: 20px 20%;
 }
 .cv_wrap .cv_sec .textarea{
	width: calc(100% - 3.2rem);
	padding: 0 1.6rem;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
 }

 /* --------------------------------------------
 * 　↓サブページ（プログラム）
 * -------------------------------------------- */

 .program_wrap{
  width: calc(100% - 3.2rem);
	padding:0 1.6rem;
  margin: 0 auto;
}
.program_sec{
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
	padding: 0;
}

.program_sec .videoarea{
	width: 100%;
  margin: 0 auto 60px 0;
	height:0;
	padding-bottom:56.25%;
	position:relative
}

.videoarea iframe{
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	left:0
}

.program_sec .textarea p{
  margin: 0 0 30px 0;
}

.program_sec .textarea ol  {
  margin: 0 0 30px 0;
  padding: 0;
}

.program_sec .imgarea img{
	width: 100%;
	margin: 0 auto;
}

.subpage_sec h3{
	width: 100%;
	text-align: center;
	font-size: 2rem;
	margin: 0 auto;
	padding: 0 auto 80px auto;
	line-height: 180%;
	font-weight:400;
 }

 .program_sec .tocrea{
	width: 100%;
	margin: 0 0 60px 0;
	padding: 2rem 1.6rem;
	background: url('https://magatama.oreillebeauty.com/wp-content/themes/magatama.oreillebeauty/img/pg/yellow_back.png') no-repeat center center;
	background-size: cover;
}
 /* --------------------------------------------
 * 　↓サブページ（問い合わせ）
 * -------------------------------------------- */

 .subpage_wrap .top .imgarea_txt_contact {
	width: 100%;
	margin: 5% auto 0 0;
}
.subpage_wrap .top .imgarea_txt_contact img{
	width: 40%;
	margin: 0 auto;
	vertical-align: bottom;
	display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#cf7-region-area {
  width: calc(100% - 6.4rem);
  background-color: #ffffff;
  margin: 0 auto 100px auto;
  padding: 2rem;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.cv_wrap .cv_sec .textarea{
  width: calc(100% - 20px);
  padding: 10px 10px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
 }
.subpage_wrap .contact{
	width: 100%;
	margin: 0 auto;
	padding: 0;
  text-align: center;
}

.program_sec .textarea .button a{
  width: 100%;
  padding: 0 0 40px 0;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  transition : 0.7s;
  }

 textarea {   
  background-color: #f1f1f1;
  color: #000;
  width: calc(100% - 20px);
  padding: 10px 10px;
  margin:10px 0 0 0;
  border-radius: 0px;
  font-size:1.6rem;
  border:none !important;
}
}