@charset "utf-8";


/*-------------------------------
再利用可能なパーツは制作完了後utility.cssへ
-------------------------------*/

/*-------------------------------
            リセットcss
--------------------------------*/

.siteContent,
.entry-body {
  padding: 0;
}

.blog .siteContent,
.blog .entry-body,
.single .siteContent,
.single .entry-body,
.archive .siteContent,
.archive .entry-body,
.category .siteContent,
.category .entry-body {
  padding: 3em 0;
}

h2 {
  background: none;
  border: none;
  margin: 0;
  padding: 0;
}

h3,
h3:after {
  border: none;
}

h4,
h5,
h6 {
  padding: 0;
  margin: 0;
  background: none;
}

h4 {
  border-radius: 0;
}

p {
  margin: 0;
}

/*
.device-pc .gMenu>li a,
.device-mobile .gMenu>li a
{
    padding: 0;
}
*/

.mainSection-marginBottom-on {
	margin-bottom: 0;
}

/*-------------------------------
基本設定（サイト全体のフォントとか背景色など）
--------------------------------*/

body {
	color: #000;
    font-weight: 400;
    font-size: 16px;
	font-feature-settings: "palt";
	background: #fff;
	line-height: 1.6;
	letter-spacing: .1em;
}

/*-----リンクをマウスオーバーした際-----*/
a:hover {
    opacity: 0.8;
    text-decoration: none;
}

.breadcrumb {
    margin: 0 auto 0 0;
}

/*-------------------------------
           カラム関連
--------------------------------*/

@media (min-width: 600px) {
  .wp-block-columns {
    margin: 0;
  }
}

/*カラムの中身を中央に寄せる*/
.column2-center,
.column2-1center,
.column3-center,
.column4-center {
  justify-content: center;
}

/*2カラムを1カラムにする*/
.column2-1center > div:first-child {
  width: 100%;
  max-width: 1080px;
}

.column2-1center > div:last-child {
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
}

/*カラム内の横幅を設定*/
.column2-center > div {
  max-width: calc(1080px / 2);
}

.column3-center > div {
  max-width: calc(1080px / 3);
}

.column4-center > div {
  max-width: calc(1080px / 4);
}

@media screen and (max-width: 600px) {
	.column2-center >div:nth-child(2) {
		margin-top: 40px;
	}
	
	.wp-block-columns {
		margin-bottom: 0;
	}
	
}

/* 横に作成したカラムを縦に並べる */
.column_vertical {
  flex-direction: column;
}

.column_vertical > div:nth-child(1),
.column_vertical > div:nth-child(2) {
  width: 100%;
}

.column_vertical > div:nth-child(1) {
  margin-bottom: 5px;
}

/*カラムのコンテンツを逆に表示*/
.reverse {
  flex-direction: row-reverse;
}
/*
@media screen and (min-width: 600px) {
    .reverse .wp-block-column:not(:first-child) {
	    margin-left: 0;
	    margin-right: 16px;
    }
}
*/
/*-sp時、カラム落ちの順番入れ替え-*/
@media screen and (max-width: 768px) {
    .flex_order {
      display: flex;
    }

    .flex-item :first-child {
      order: 2;
    }

    .flex-item :nth-child(2) {
      order: 1;
    }
}

/*-カラムが落ちないようにする-*/
.column_nowrap {
  flex-direction: row;
  flex-wrap: nowrap;
}

/*-------------------------------
             便利系
--------------------------------*/

/*非表示系*/

.invisible {
	display: none;
}

/*pc非表示*/
@media screen and (min-width: 1025px) {
  .pc_none {
    display: none;
  }
}

/*タブレット非表示*/
@media screen and (min-width: 601px) and (max-width: 1024px) {
  .tab_none {
    display: none;
  }
}

/*スマホ非表示*/
@media screen and (max-width: 600px) {
  .sp_none {
    display: none;
  }
}

  .mgn_null {
    margin: 0 !important;
  }

  .mgn_null > p {
    margin: 0 !important;
  }

  .wp-block-column.mgn_null {
    margin: 0 !important;
  }

@media screen and (min-width: 600px) {
  .mgn_null >.wp-block-column,
  .mgn_null >.wp-block-column >.wp-block-cover  {
    margin: 0 !important;
  }
}

.separator {
  width: 100%;
  border-bottom: 1px dotted #cecece;
}

@media screen and (min-width: 600px) {
  .center {
    text-align: center;
  }
}


@media screen and (min-width: 783px) {
	br.pc_none {
		display: none;
	}
}

@media screen and (max-width: 1200px) {
	.br_none br {
		display: none;
	}
}

/*sp時に使用*/
@media screen and (max-width: 768px) {
  .sp_txt_center {
    text-align: center;
  }

  .sp_txt_left {
    text-align: left !important;
  }

  .sp_br_none br {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .sp_pdg {
    padding: 0 20px;
  }
}

/*画像サイズ*/
.img_cover img {
    width: 400px;
    height: 210px;
    object-fit: cover;
    object-position: 50% 40%;
}

/*-------------------------------
             ヘッダー
--------------------------------*/
/*ヘッダー基本設定*/
.siteHeader {
    background: transparent;
    box-shadow: none;
	min-height: 0;
}

@media screen and (max-width: 600px) {
	.siteHeader {
		background: #fff;
		position: fixed;
		top: 0;
	}
	
	.admin-bar .siteHeader {
		top: 46px;
	}
}

/*ヘッダー全幅表示*/
.container.siteHeadContainer {
    max-width: 100%;
}

/* ヘッダーロゴ設定 */
@media screen and (max-width: 768px) and (min-width: 601px) {
	.siteHeader_logo {
		padding: 10px 45px;
	}
}

@media screen and (max-width: 600px) {
	.siteHeader_logo {
    	padding: 10px 55px 10px 10px;
	}
}

/* ヘッダーロゴの大きさ */
.navbar-brand img {
    max-height: 50px !important;
}

/* ヘッダーロゴの表示位置 */
@media screen and (min-width: 601px) {
    .siteHeader_logo {
        padding-left: 20px;
        padding-top: 10px;
    }
}

@media screen and (max-width: 600px) {
	h1.navbar-brand.siteHeader_logo {
        padding-top: 10px;
    }
}


/*ナビメニュー*/

@media screen and (min-width: 992px) {
	.gMenu_outer {
		float: none;
		display: flex;
		align-items: center;
		justify-content: center;
    	padding-right: 20px;
		padding-left: 20px;
	}
}

.nav > li,
.nav > li > a {
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
	transition: all .5s;
}

/*ナビ位置+hover時の線の位置*/
.nav > li > a {
	background: transparent;
    padding: 28px 15px;
}

.gMenu>li a {
    margin: 0 10px;
}

strong.gMenu_name {
	font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif !important;
	font-weight: 600;
    letter-spacing: .1em;
}

span.gMenu_description {
	color: #8c0b0b;
	font-size: 12px;
}

@media screen and (max-width: 600px) {
	div#gMenu_outer {
		display: none;
	}
}

/*ナビメニューのアンダーライン色変更*/
@media screen and (min-width: 768px) {
    ul.gMenu > li > a:hover:after, ul.gMenu > li.current-post-ancestor > a:after, ul.gMenu > li.current-menu-item > a:after, ul.gMenu > li.current-menu-parent > a:after, ul.gMenu > li.current-menu-ancestor > a:after, ul.gMenu > li.current_page_parent > a:after, ul.gMenu > li.current_page_ancestor > a:after {
    border-bottom-color: #000;
    }
}

/*--ナビのコンタクト設定--*/
@keyframes fade {
	0% {
		opacity: 0;
	}
	
	100% {
		opacity: 1;
	}
}

.navbar-contact {
	-webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
	transition: all .5s;
    float: right;
    width: 300px;
    padding-top: 17px;
}

.navbar-contact .icon_wrap {
	margin: 0;
}

@media screen and (max-width: 1200px) {
	.navbar-contact {
		display: none;
	}
} 

.header_scrolled .navbar-contact {
    padding-top: 9px;
	position: fixed;
    top: 0;
    right: 0;
    z-index: 1010;
	animation-name: fade;
    animation-duration: 2s;
}

.header_scrolled.admin-bar .navbar-contact {
	top: 32px;
}


/*--ドロップダウンメニュー--*/
/*--親ナビリンクなし--*/
a[title="noevent"] {
  pointer-events: none;
}

@media screen and (min-width: 992px){
  ul.gMenu>li>ul.sub-menu li a {
    background-color: #a31620;
	  color: #fff;
  }
	
	ul.gMenu>li>ul.sub-menu li a:hover {
		opacity: 1;
		background: #bf2d37;
	}
}

@media screen and (max-width: 782px){
    .vk-mobile-nav-menu-btn {
		top: 13px !important;
		left: unset !important;
	    right: 10px;
	}
}

/*adominバー表示時のスマホメニュー位置調整*/
.admin-bar .vk-mobile-nav-menu-btn {
    top: calc(46px + 13px) !important;
}


/*-------------------------------
          スライドショー
--------------------------------*/

.mv {
	overflow: hidden;
}

.mv::before {
	content: '';
	width: 100%;
	height: 140px;
	background: #fff;
	-webkit-clip-path: polygon(100% 0%, 0% 100%, 100% 100%);
	clip-path: polygon(100% 0%, 0% 100%, 100% 100%);
	position: absolute;
	bottom: 5px;
	left: 0;
	z-index: 100;
}

.mv video {
	width: 100%;
	height: 95vh;
	object-fit: cover;
}

.mv_cover {
    width: 100%;
    height: calc(100% - 6px);
    background: #00000091;
    position: absolute;
    top: 0;
    left: 0;
	z-index: 90;
}

.mv_catch {
	color: #fff;
	font-size: 4rem;
	font-weight: bold;
	letter-spacing: .2em;
	text-align: center;
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 99;
}

@media screen and (min-width: 601px) and (max-width:1599px){
	.mv::before {
		height: 80px;
	}
	
	.mv video {
		height: 65vh;
	}
	
}

/*スマホ表示*/
@media screen and (max-width:600px){
	.mv::before {
		height: 60px;
	}
	
	.mv_catch {
		font-size: 2.4rem;
	}
	
	.mv video {
		height: 85vh;
	}

	.carousel-control,
	.carousel-indicators {
		z-index: 100;
	}
}

.vk-mobile-nav-menu-btn {
    left: unset;
    right: 8px;
}


/*-------------------------------
          フッター上部
--------------------------------*/

.traial,
.foot_upper_sns,
.foot_upper_contact {
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.traial{
    background: #ffe893;	
}

.foot_upper_sns {
	background: #fec63f;
}

.foot_upper_contact {
    background: #ffac3f;
}

.traial >div {
	position: relative;
}

.traial >div::before {
	content: '';
	width: 300px;
	height: 280px;
	background: url(/wp-content/uploads/img_trial_before.png)no-repeat center;
	background-size: contain;
	position: absolute;
	top: 0;
	left: -50px;
}

.traial >div::after {
	content: '';
	width: 180px;
	height: 280px;
	background: url(/wp-content/uploads/img_trial_after.png)no-repeat center;
	background-size: contain;
	position: absolute;
	top: 20px;
	right: 60px;
}

.lesson_free {
    color: #d0121b;
    font-size: 24px;
    font-weight: bold;
    background: #fff;
    max-width: 540px;
    margin: 0 auto 40px;
}

.lesson_free >span {
    font-size: 50px;
    padding-left: .2em;
}

.foot_upper_sns {
	background: #fec63f;
    height: 350px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.sns_wrap {
    display: flex;
    justify-content: space-between;
	margin-bottom: 40px;
}

.sns_wrap >div {
	width: 100%;
}

.foot_upper_sns >div {
    max-width: 1000px;
}

.btn_sns a {
    border: 1px solid #000;
	color: #000;
	display: block;
	text-decoration: none;
    padding: 20px;
	position: relative;
	width: 100%;
	max-width: 340px;
	margin: 0 auto;
}

.btn_sns a::before {
	content: '';
	width: 20px;
	height: 20px;
	position: absolute;
	top: 50%;
	left: 40px;
	transform: translate(-50%,-50%);
}

.btn_sns.line a::before {
	background: url(/wp-content/uploads/icon_ban_line.png)no-repeat center/contain;
}

.btn_sns.ig a::before {
	background: url(/wp-content/uploads/icon_ban_insta.png)no-repeat center/contain;
}

.btn_sns.fb a::before {
	background: url(/wp-content/uploads/icon_ban_facebook.png)no-repeat center/contain;
}

.btn_sns.tw a::before {
	background: url(/wp-content/uploads/icon_ban_twitter.png)no-repeat center/contain;
}

.contact_wrap {
    display: flex;
    justify-content: space-between;
	margin-bottom: 40px;
}

.contact_wrap >div {
	width: 100%;
	max-width: 1000px;
}

.btn_mail a,
.btn_tel a {
    border: 1px solid #000;
	color: #000;
	display: block;
	font-size: 24px;
	font-weight: bold;
	text-decoration: none;
    padding: 15px 20px;
	padding-left: 40px;
	position: relative;
	width: 100%;
	max-width: 400px;
	margin: 0 auto;
}

.btn_mail a::before, 
.btn_tel a::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 40px;
	transform: translate(-50%,-50%);
}

.btn_mail a::before {
	width: 34px;
	height: 30px;
	background: url(/wp-content/uploads/img_mail.png)no-repeat center;
	background-size: contain;
}

.btn_tel a::before {
	width: 24px;
	height: 30px;
	background: url(/wp-content/uploads/img_tel.png)no-repeat center;
	background-size: contain;
}

.btn_sns a,
.btn_mail a,
.btn_tel a {
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
	transition: all .5s;
}

.btn_sns a:hover,
.btn_mail a:hover,
.btn_tel a:hover {
	background: #000;
}

.btn_sns a:hover {
	color: #fec63f;
}

.btn_mail a:hover,
.btn_tel a:hover {
	color: #ffac3f;
}

.btn_sns.line a:hover::before {
	background: url(/wp-content/uploads/icon_ban_line_hover.png)no-repeat center/contain;
}

.btn_sns.ig a:hover::before {
	background: url(/wp-content/uploads/icon_ban_insta_hover.png)no-repeat center/contain;
}

.btn_sns.fb a:hover::before {
	background: url(/wp-content/uploads/icon_ban_facebook_hover.png)no-repeat center/contain;
}

.btn_sns.tw a:hover::before {
	background: url(/wp-content/uploads/icon_ban_twitter_hover.png)no-repeat center/contain;
}

.btn_mail a:hover::before {
	background: url(/wp-content/uploads/img_mail_hover.png)no-repeat center;
	background-size: contain;
}

.btn_tel a:hover::before {
	background: url(/wp-content/uploads/img_tel_hover.png)no-repeat center;
	background-size: contain;
}	

@media screen and (max-width: 600px) {
	
	.traial >div::before,
	.traial >div::after {
		display: none;
	}
	
	.lesson_free {
		font-size: 20px;
	    margin: 0 auto 20px;
		padding-top: 10px;
	}
	
	.lesson_free span {
		font-size: 35px;
	}
	
	.contact_wrap,
	.sns_wrap {
		flex-wrap: wrap;
		margin-bottom: 0;
	}
	
	.foot_upper_sns {
		height: 400px;
	}
	
	.contact_wrap >div,
	.sns_wrap >div {
		margin-bottom: 20px;
	}
	
	.btn_mail a,
	.btn_tel a {
		font-size: 20px;
	}
}

@media screen and (min-width: 601px) and (max-width: 1024px) {
	
	.lesson_free {
		max-width: 640px;
	}
	
	.sns_wrap >div,
	.contact_wrap >div {
    	margin: 0 10px;
	}
	
	.traial >div::before {
		top: -20px;
		left: -80px;
	}
	
	.traial >div::after {
		right: -40px;
	}
}

.f-logo {
    width: 400px;
}

/*-------------------------------
            フッター
--------------------------------*/

footer,.siteFooter {
  	border: none;
	position: relative;
	z-index: 999;
}

.siteFooter {
    background: #fff;
}

.copySection {
    background: #fff;
}

.copySection >p {
	letter-spacing: .1em;
}

footer .sectionBox {
    padding-top: 3em;
	padding-bottom: 1em;
}

@media screen and (max-width: 600px) {
	.sectionBox {
        padding-top: 0;
        padding-bottom: 0;
	}
	
	.copySection >p {
		margin: 0 40px 5px;
	}
}

.sectionBox > .row {
    display: flex;
    align-items: center;
    justify-content: center;
}

.container.sectionBox.copySection.text-center {
    padding-top: 12px;
    padding-bottom: 12px;
}

.footerWidget .col-md-12 {
    text-align: center;
}

.footerWidget .col-md-12 >aside:nth-child(2) {
	margin-bottom: 0;
}

.col-md-4 .textwidget {
    font-size: 14px;
}

.col-md-4 {
	font-size: 16px;
	color: #333;
	letter-spacing: 0.1em;
}

.foot_txt {
    text-align: center;
    line-height: 1.6;
    letter-spacing: .1em;
}

.foot_txt >strong {
	font-size: 20px;
}

.icon_wrap,
.icon_wrap >div {
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon_wrap {
	margin: 60px 0 30px;
}

.icon_wrap >div:first-child {
	margin-right: 10px;
	position: relative;
}

.icon_wrap >div:first-child::before {
	content: '';
	width: 2px;
	height: 40px;
	background: #000;
	border-radius: 5px;
	position: absolute;
	top: 50%;
	right: -15px;
	transform: translate(-50%,-50%);
}

.icon_wrap >div:last-child {
	margin-left: 10px;
}

.icon {
	margin: 0 10px;
}


.icon_wrap a:hover {
	opacity: .6;
}

@media screen and (max-width: 600px){
	.sectionBox > .row {
		flex-direction: column;
	}
	
	.col-md-4 {
		margin-top: 20px;
	}
}

/*-------------------------------
       コンタクトフォーム
--------------------------------*/
/*背景色*/
div.wpcf7 {
  	background: #ffac3f;
}

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

/*フォームの色*/
.form-control {
  	background: #fff;
	font-size: 1.6rem;
}

/*見出しサイズ*/
div.wpcf7 th {
  	width: 25%;
}

/*sp時改行*/
@media screen and (max-width: 600px) {
  	div.wpcf7 th {
    	width: 100%;
  	}
}

span.wpcf7-list-item {
  	display: block;
}

.wpcf7 input[type=checkbox] {
	margin-top: 4px;
	margin-right: 4px;
}

.wpcf7 .required {
    color: #fff33f;
}

/*送信ボタン*/
.btn-primary {
  	font-size: 14px;
  	padding: 10px 0;
}

input.wpcf7-form-control.wpcf7-submit.btn.btn-primary {
	background: #111;
	color: #fff;
}

.note_list {
	list-style: none;
	width: 100%;
	max-width: 550px;
	padding-left: 0;
	margin: 0 auto;
}

@media screen and (max-width: 600px) {
    .note_list {
	    width: 100%;
    }	
}

/*-------------------------------
            テーブル
--------------------------------*/

.class_price table {
	border-top-color: transparent;
}

.class_price th {
    background: #eee;
    border-bottom: 1px solid transparent;
	font-weight: bold;
    text-align: center;
}

.class_price th:not(:last-child),
.class_price td:not(:last-child) {
    border-right: 5px solid #fff;	
}

.class_price td {
	text-align: center;
}

/* テーブル設定例 */
.tbl {
    max-width: 960px;
    margin: 0 auto;
}

.tbl tr td {
    padding: 5px !important;
}

.tbl table tr td {
    font-size: 16px;
}

/* テーブルのタテ1列目の設定 */
.tbl table tr td:nth-of-type(1) {
	width: 25%;
}

/* テーブルのヨコ1列目の設定 */
.tbl tr:first-child {
  background: #eee;
}


/* 2個目以降のwidth */
.tbl tr td:nth-child(n + 2) {
  width: 10%;
}


/* はみ出た場合、横スクロールにする */
.scroll_table {
  overflow: auto;
  white-space: nowrap;
}

/*-------------------------------
             背景
--------------------------------*/

.bg_mailform {
	background: #eee;
}

.section01,
.section02,
.section03,
.section04,
.section05,
.section06 {
	position: relative;	
}

.home .section01 >div,
.home .section03 >div,
.home .section06 >div {
	background: #fff;
}

.home .section06 {
    background: #fff;
}

.home .section02 >div,
.home .section04 >div {
	background: #ffac3f;
}

.home .section05 >div {
	background: linear-gradient(to right, #ffac3f 0%,#ffac3f 50%,#ff9000 50%,#ff9000 50%,#ff9000 100%);
}

.section01 {
	z-index: 100;
}

.section02 {
	z-index: 120;
}

.section03 {
	z-index: 130;
}

.section04 {
	z-index: 140;
}

.section05 {
	z-index: 150;
}

.section06 {
	z-index: 1;
}

.page .section01::before,
.page .section01::after,
.page .section02::before,
.page .section02::after,
.home .section04::before,
.home .section05::after {
		content: '';
		width: 18%;
		max-width: 340px;
		height: 220px;
		background: linear-gradient(to bottom, transparent 0%,transparent 10%,#fff33f 10%,#fff33f 20%,transparent 20%,transparent 30%,#fff33f 30%,#fff33f 40%,transparent 40%,transparent 50%,#fff33f 50%,#fff33f 60%,transparent 60%,transparent 70%,#fff33f 70%,#fff33f 80%,transparent 80%,transparent 90%,#fff33f 90%,#fff33f 100%);
		position: absolute;
		z-index: 200;
	opacity: 0;
}

.home .section02::before,
.home .section02::after {
	display: none;
}

.d-my-color .section1 >div {
	position: relative;
}

.d-my-color .section01 >div::before {
	content: '';
	max-width: 220px;
	height: 200px;
	background: url(/wp-content/uploads/bg_child.png)no-repeat center;
	background-size: contain;
	position: absolute;
	z-index: 210;
}

.bg_white {
	background: #fff;
}

.bg_orange {
	background: #ffac3f;
}

.bg_orange_2c {
	background: linear-gradient(to right, #ffac3f 0%,#ffac3f 50%,#ff9000 50%,#ff9000 50%,#ff9000 100%);
}

@media screen and (min-width: 1601px) {
		.home .section02,
		.home .section03,
		.home .section04 {
		margin-bottom: -245px;
	}
	
	.home .section05 {
		margin-bottom: 0;
	}
	
	.home .section02,
	.home .section03 {
		margin-bottom: -245px;
	}
	
	.home .section04 {
		margin-bottom: -225px;
	}	
	
	.home .section05 {
		margin-bottom: 0;
	}
	
	.home .section01::before {
		top: -190px;
		left: 0;
	}
	
	.home .section01::after {
		bottom: -30px;
		right: 0;
	}
	
	.home .section04::before {
		top: -120px;
		left: 0;
	}
	
	.home .section05::after {
		top: -30px;
		right: 0;
	}
	
	.d-my-color .section01::before {
		top: -30%;
		left: 0;
	}
	
	.d-my-color .section02::before {
		top: -10%;
		left: 0;
	}
	
	.d-my-color .section01::after {
		top: 5%;
		right: 0;
	}
	
	.d-my-color .section02::after {
		top: 50%;
		right: 0;
	}
	
	.class .section01::before {
		top: -7%;
		left: 0;
	}

	.class .section02::before {
		top: -10%;
		left: 0;
	}
	
	.class .section01::after {
    	top: 10%;
    	right: 0;
	}
	
	.class .section02::after {
		top: 84%;
		right: 0;
	}
	
	.staff .section01::before {
    	top: -34%;
	}
	
	.staff .section01::after {
		top: 35%;
		right: 0;
	}
	
	.faq .section01::before {
		top: -45%;
		left: 0;
	}
	
	.faq .section01::after {
		top: 45%;
		right: 0;
	}
	
	.faq .section02::before {
		top: 65%;
		left: 0;
	}
	
	.faq .section02::after {
		display: none;
	}
	
	.voice .section01::before {
		top: -200px;
		left: 0;
	}
	
	.voice .section01::after {
		top: 70%;
		right: 0;
	}
	
	.voice .section01::after {
		top: 80%;
		right: 0;
	}
	
	.voice .section02::before {
		top: 70%;
		left: 0;
	}
	
	.voice .section02::after {
		display: none;
	}
	
	.studio .section01::before {
		top: -25%;
		left: 0;
	}
	
	.studio .section01::after {
		top: 25%;
		right: 0;
	}
	
	.studio .section02::before {
		top: -25%;
		left: 0;
	}
	
	.studio .section02::after {
		top: 60%;
		right: 0;
	}
	
	.contact .section01::before {
		top: -100px;
		left: 0;
	}
	
	.contact .section01::after,
	.contact .section02::before {
		display: none;
	}
	
	.contact .section02::after {
		bottom: 50%;
		right: 0;
	}
	
	.d-my-color .section01 >div::before {
		top: -30px;
		right: 10%;
	}	
}

@media screen and (min-width: 1025px) and (max-width: 1600px) {
	
	.page .section01::before,
	.page .section01::after,
	.page .section02::before,
	.page .section02::after,
	.home .section04::before,
	.home .section05::after {
		max-width: 6%;
    	height: 140px;
	}
	
	.home .section02,
	.home .section03 {
		margin-bottom: -75px;
	}
	
	.home .section04 {
		margin-bottom: -100px;
	}	
	
	.home .section05 {
		margin-bottom: 0;
	}
	
	.home .section01::before {
		top: -45%;
		left: 0;
	}
	
	.home .section01::after {
		bottom: -30px;
		right: 0;
	}
	
	.home .section04::before {
		top: -40px;
		left: 0;
	}
	
	.home .section05::after {
		top: -30px;
		right: 0;
	}
	
	.d-my-color .section01::before {
		top: -30%;
		left: 0;
	}
	
	.d-my-color .section02::before {
		top: -10%;
		left: 0;
	}
	
	.d-my-color .section01::after {
		top: 5%;
		right: 0;
	}
	
	.d-my-color .section02::after {
		top: 50%;
		right: 0;
	}
	
	.class .section01::before {
		top: -7%;
		left: 0;
	}

	.class .section02::before {
		top: -10%;
		left: 0;
	}
	
	.class .section01::after {
    	top: 10%;
    	right: 0;
	}
	
	.class .section02::after {
		top: 84%;
		right: 0;
	}
	
	.staff .section01::before {
    	top: -34%;
	}
	
	.staff .section01::after {
		top: 35%;
		right: 0;
	}
	
	.faq .section01::before {
		top: -45%;
		left: 0;
	}
	
	.faq .section01::after {
		top: 45%;
		right: 0;
	}
	
	.faq .section02::before {
		top: 65%;
		left: 0;
	}
	
	.faq .section02::after {
		display: none;
	}
	
	.voice .section01::before {
		top: -200px;
		left: 0;
	}
	
	.voice .section01::after {
		top: 70%;
		right: 0;
	}
	
	.voice .section01::after {
		top: 80%;
		right: 0;
	}
	
	.voice .section02::before {
		top: 70%;
		left: 0;
	}
	
	.voice .section02::after {
		display: none;
	}
	
	.studio .section01::before {
		top: -25%;
		left: 0;
	}
	
	.studio .section01::after {
		top: 25%;
		right: 0;
	}
	
	.studio .section02::before {
		top: -25%;
		left: 0;
	}
	
	.studio .section02::after {
		top: 60%;
		right: 0;
	}
	
	.contact .section01::before {
		top: -100px;
		left: 0;
	}
	
	.contact .section01::after,
	.contact .section02::before {
		display: none;
	}
	
	.contact .section02::after {
		bottom: 50%;
		right: 0;
	}
	
	.d-my-color .section01 >div::before {
		top: -30px;
		right: 10%;
	}
}

@media screen and (max-width: 1024px) and (min-width: 768px) {

	.home .section05 >div {
    	background: linear-gradient(to right, #ffac3f 0%,#ffac3f 50%,#ff9000 50%,#ff9000 50%,#ff9000 100%);
	}
	
	.page .section01::before,
	.page .section01::after,
	.page .section02::before,
	.page .section02::after,
	.home .section04::before,
	.home .section05::after {
		max-width: 70px;
		height: 100px;
	}
	
	.home .section02,
	.home .section03,
	.home .section04 {
		margin-bottom: -5px;
	}
	
	.home .section05 {
		margin-bottom: 0;
	}
	
	.home .section01::before {
		top: -90px;
		left: 0;
	}
	
	.home .section01::after {
		bottom: 20%;
		right: 0;
	}
	
	.home .section04::before {
		top: 250px;
		left: 0;
	}
	
	.home .section05::after {
		top: -90px;
		right: 0;
	}
	
	.d-my-color .section01::before {
		top: -245px;
		left: 0;
	}
	
	.d-my-color .section02::before {
		top: -90px;
		left: 0;
	}
	
	.d-my-color .section01::after {
		top: 0;
		right: 0;
	}
	
	.d-my-color .section02::after {
		top: 50%;
		right: 0;
	}
	
	.class .section01::before {
		top: -90px;
		left: 0;
	}

	.class .section02::before {
		top: -115px;
		left: 0;
	}
	
	.class .section01::after {
    	top: 280px;
    	right: 0;
	}
	
	.class .section02::after {
		bottom: -11%;
		right: 0;
	}
	
	.staff .section01::before {
    	top: -110px;
		left: 0;
	}
	
	.staff .section01::after {
		top: 90px;
		right: 0;
	}
	
	.staff .section02::before {
		top: 90px;
		left: 0;
	}
	
	.staff .section02::after {
		display: none;
	}
	
	.faq .section01::before {
		top: -100px;
		left: 0;
	}
	
	.faq .section01::after {
		top: 375px;
		right: 0;
	}
	
	.faq .section02::before {
		bottom: -80px;
		left: 0;
	}
	
	.faq .section02::after {
		display: none;
	}
	
	.voice .section01::before {
		top: -110px;
		left: 0;
	}
	
	.voice .section01::after {
		top: 70%;
		right: 0;
	}
	
	.voice .section01::after {
		top: 150px;
		right: 0;
	}
	
	.voice .section02::before {
		bottom: -100px;
		left: 0;
	}
	
	.voice .section02::after {
		display: none;
	}
	
	.studio .section01::before {
		top: -85px;
		left: 0;
	}
	
	.studio .section01::after {
		top: 250px;
		right: 0;
	}
	
	.studio .section02::before {
		top: -50px;
		left: 0;
	}
	
	.studio .section02::after {
		bottom: -125px;
		right: 0;
	}
	
		.contact .section01::before {
		top: -40px;
		left: 0;
	}
	
	.contact .section01::after,
	.contact .section02::before {
		display: none;
	}
	
	.contact .section02::after {
		bottom: 35%;
		right: 0;
	}
	
	.d-my-color .section01 >div::before {
    	width: 180px;
    	height: 160px;
	}
	
	.section01 >div::before {
    	top: -110px;
    	right: -20px;
	}
}


@media screen and (min-width: 601px) and (max-width: 767px) {
	.page .section01::before,
	.page .section01::after,
	.page .section02::before,
	.page .section02::after,
	.home .section04::before,
	.home .section05::after {
		max-width: 60px;
		height: 70px;
	}
	
	
	.page .section01::before {
    	top: -25%;
		left: 0;
	}
	
	.page .section01::after {
    	top: -15%;
		right: 0;
	}
	
	.page .section02::before {
    	top: -15%;
		left: 0;
	}
	
	.d-my-color .section01::after {
    	top: -14%;
		right: 0;
	}
		
	.class .section01::before {
    	top: -90px;
    	left: 0;
	}
	
	.class .section01::after {
    	top: 34%;
    	right: 0;
	}
	
	.class .section02::before {
    	top: -95px;
    	left: 0;
	}
	
	.class .section02::after {
		bottom: -6%;
		right: 0;
	}
	
	.staff .section01::before {
		top: -30%;
		left: 0;
	}
	
	.staff .section01::after {
		top: 41%;
		right: 0;
	}
	
	.staff .section02::before {
		top: 9%;
		left: 0;
	}
	
	.faq .section01::before {
    	top: -41%;
    	left: 0;
	}
	
	.faq .section01::after {
		top: unset;
    	bottom: -5%;
    	right: 0;
	}
	
	.faq .section02::before {
		top: unset;
    	bottom: -15%;
    	left: 0;
	}
	
	.faq .section02::after {
    	display: none;
	}
	
	.staff .section02::after {
		display: none;
	}
	
	.voice .section01::before {
		top: -280px;
    	left: 0
	}
	
	.voice .section01::after {
    	top: unset;
		bottom: -320px;
    	right: 0;
	}
	
	.voice .section02::after {
		display: none;
	}
	
	.voice .section02::before {
    	top: unset;
		bottom: -50px;
    	left: 0;
	}
	
	.studio .section01::before {
    	top: -290px;
    	left: 0;
	}
	
	.studio .section01::after {
    	top: 300px;
    	right: 0;
	}
	
	.studio .section02::before {
    	top: -85px;
    	left: 0;
	}
	
	.studio .page .section02::after {
		display: none;
	}
	
	.contact .section01::before {
		top: -100px;
		left: 0;
	}
	
	.contact .section01::after,
	.contact .section02::before {
		display: none;
	}
	
	.contact .section02::after {
		bottom: 50%;
		right: 0;
	}
	
	.home .section01::before {
    	top: -60px;
		left: 0;
	}
	
	.home .section01::after {
    	top: 225px;
    	right: 0;
	}
	
	.home .section04::before {
    	top: 290px;
    	left: 0;
	}
	
	.home .section05::after {
		top: 250px;
		right: 0;
	}
}

@media screen and (max-width: 600px) {
	.page .section01::before,
	.page .section01::after,
	.page .section02::before,
	.page .section02::after,
	.home .section04::before,
	.home .section05::after {
		max-width: 60px;
		height: 70px;
	}
	
	.page .section01::before {
    	top: -25%;
		left: 0;
	}
	
	.page .section01::after {
    	top: -15%;
		right: 0;
	}
	
	.page .section02::before {
    	top: -15%;
		left: 0;
	}
	
	.d-my-color .section01::after {
    	top: -14%;
		right: 0;
	}
		
	.class .section01::before {
    	top: -280px;
    	left: 0;
	}
	
	.class .section01::after {
    	top: 34%;
    	right: 0;
	}
	
	.class .section02::before {
    	top: -13%;
    	left: 0;
	}
	
	.class .section02::after {
		bottom: -6%;
		right: 0;
	}
	
	.staff .section01::before {
		top: -290px;
		left: 0;
	}
	
	.staff .section01::after {
		top: 41%;
		right: 0;
	}
	
	.staff .section02::before {
		top: 9%;
		left: 0;
	}
	
	.faq .section01::before {
    	top: -41%;
    	left: 0;
	}
	
	.faq .section01::after {
		top: unset;
    	bottom: -5%;
    	right: 0;
	}
	
	.faq .section02::before {
		top: unset;
    	bottom: -15%;
    	left: 0;
	}
	
	.faq .section02::after {
    	display: none;
	}
	
	.staff .section02::after {
		display: none;
	}
	
	.voice .section01::before {
		top: -280px;
    	left: 0
	}
	
	.voice .section01::after {
    	top: unset;
		bottom: -320px;
    	right: 0;
	}
	
	.voice .section02::after {
		display: none;
	}
	
	.voice .section02::before {
    	top: unset;
		bottom: -50px;
    	left: 0;
	}
	
	.studio .section01::before {
    	top: -280px;
    	left: 0;
	}
	
	.studio .section01::after {
    	top: 300px;
    	right: 0;
	}
	
	.studio .section02::before {
    	top: -85px;
    	left: 0;
	}
	
	.studio .page .section02::after {
		display: none;
	}
	
	.contact .section01::before {
		top: -240px;
		left: 0;
	}
	
	.contact .section01::after,
	.contact .section02::before {
		display: none;
	}
	
	.contact .section02::after {
		bottom: 35%;
		right: 0;
	}
	
	.home .section01::before {
    	top: -60px;
		left: 0;
	}
	
	.home .section01::after {
    	top: 275px;
    	right: 0;
	}
	
	.home .section04::before {
    	top: 290px;
    	left: 0;
	}
	
	.home .section05::after {
		top: 250px;
		right: 0;
	}
	
	.home .section05 >div {
    	background: linear-gradient(to bottom, #ff9000 0%,#ff9000 49%,#ffac3f 49%,#ffac3f 49%,#FFac3f 100%);
	}
	
	.bg_orange_2c {
		background: linear-gradient(to bottom, #ffac3f 0%,#ffac3f 50%,#ff9000 50%,#ff9000 50%,#ff9000 100%);
	}
}

/*-------------------------------
           見出し
--------------------------------*/

.sub_page-header {
	gap: 0 !important;
	position: relative;
}

.sub_page-header::before {
	content: '';
	width: 100%;
	height: 40%;
	background: #fff;
	-webkit-clip-path: polygon(100% 0%, 0% 100%, 100% 100%);
	clip-path: polygon(100% 0%, 0% 100%, 100% 100%);
	position: absolute;
	bottom: -1px;
	left: 0;
	z-index: 100;
}

.sub_page-header >div {
    flex-basis: 50vw;
    background: #ff9000;
}

.sub_page-header >div:nth-child(1) {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

.sub_page-header >div:nth-child(2)  {
	width: 100%;
}

.sub_page-header >div:nth-child(2) figure {
	margin-bottom: 0;
}

.sub_page-header >div:nth-child(2) img {
	object-fit: cover;
	width: 100%;
	min-height: 220px;
}

.sub_page-header .wp-block-column:not(:first-child) {
	margin-left: 0;
}

h3.page_ttl {
	color: #fff;
	line-height: 2;
	letter-spacing: .15em;
	margin-bottom: 0;
}

@media screen and (min-width: 1200px) {
	h3.page_ttl {
		padding-left: 10em;
	    position: relative;
    	top: -20px;
	}
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
	h3.page_ttl {
		padding-left: 1em;
	}
}

@media screen and (max-width: 767px) {
	
	.sub_page-header >div:nth-child(1) {
		padding: 20px 20px 0;
	}
	
	.sub_page-header::before {
		height: 60px;
	}
	
	.sub_page-header >div:nth-child(2) img {
		height: 250px;
	}
	
	.d-my-color .section01 >div::before {
    	content: '';
    	width: 160px;
		height: 160px;
	}
	
	.d-my-color .section01 >div::before {
    	top: -330px;
		right: 0;
	}
}

@media screen and (min-width: 601px) and (max-width: 781px) {
	
	.sub_page-header >div {
		flex-basis: 50vw !important;
	}
	
	.sub_page-header >div:nth-child(1) {
		padding: 0 20px;
	}
	
	.sub_page-header >div:nth-child(2) img {
		height: 240px;
	}
	
	.sub_page-header::before {
		height: 60px;
	}	
}

@media screen and (max-width: 600px) {
	
	.sub_page-header {
		margin-top: 60px;
	}
	
	.sub_page-header >div:first-child {
		position: relative;
	}
	
	.studio .sub_page-header::before {
		bottom: 20px;
	}
	
	.sub_page-header >div:first-child::before {
	    content: '';
    	width: 100%;
    	height: 60px;
    	background: #ff9000;
    	-webkit-clip-path: polygon(0 100%, 0 100%, 100% 0, 0 0);
    	clip-path: polygon(0 100%, 0 100%, 100% 0, 0 0);
    	position: absolute;
    	bottom: -60px;
    	left: 0;
    	z-index: 100;
	}
}

/*ページヘッダーの文字やタテ幅の設定*/
.page-header_pageTitle, h1.page-header_pageTitle:first-child {
	font-size: 32px;
	font-weight: bold;
	letter-spacing: .2em;
    margin: 60px auto;
}

/*見出しの設定*/
h2 {
    font-size: 2.8rem;
    letter-spacing: 0.1em;
}

h3 {
	color: #000;
    font-size: 2.4rem;
	line-height: 1.6;
}

h3.ttl_h3,
h3.ttl_h3_orange {
    border-bottom: 3px solid #000;
    max-width: 550px;
    margin: 0 auto;
	position: relative;
    padding-bottom: 20px;
}

h3.ttl_h3::before,
h3.ttl_h3::after {
	content: '';
	width: 30px;
	height: 30px;
	border: 30px solid transparent;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

h3.ttl_h3::before {
	border-top: 30px solid #000;
	top: 100%;
}

h3.ttl_h3::after {
	border-top: 30px solid #fff;
	top: calc(100% - 4px);	
}

h3.ttl_h3.orange::after {
	border-top: 30px solid #ffac3f;	
}

h4 {
	font-size: 2rem;
	margin-bottom: .5em;
}

h5.voice_ttl {
	background: #ff9000;
    font-size: 18px;
    font-weight: bold;
    max-width: 550px;
    margin: 0 auto;
    padding: 15px;
	position: relative;
}

h5.voice_ttl::before {
	content: '';
	width: 20px;
	height: 20px;
	border: 20px solid transparent;
	border-top: 20px solid #ff9000;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translatex(-50%);
}

.point h4 {
	font-weight: normal;
}

.txt_white {
	color: #fff;
}

@media screen and (max-width: 1024px) {	
	h2 {
		font-size: 2.4rem;
	}
	
	h3 {
		font-size: 2rem;
		margin-bottom: .5em;
	}
	
	h4 {
		font-size: 1.8rem;
	}
	
	h5 {
		font-size: 1.6rem;
	}
}


/*-------------------------------
      TOPページ(最新の記事)
--------------------------------*/

ul.wp-block-latest-posts {
	max-width: 860px;
}

/* 最新の投稿が文字オーバーした際、…に変換 */
ul.wp-block-latest-posts.has-dates a {
  width: 80%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 16px;
}

@media screen and (max-width: 600px) {
  ul.wp-block-latest-posts.has-dates a {
    width: 65%;
  }
}

/*-------------------------------
            投稿一覧
--------------------------------*/

a.btn.btn-xs.btn-primary.entry-meta_items_term_button {
    padding: 5px 5px 3px;
}

/*-------------------------------
           TOPページ
--------------------------------*/

@media screen and (min-width: 1601px) {
	.content_wrap >div {
		-webkit-clip-path: polygon(0 0, 100% 30%, 100% 100%, 0 100%);
		clip-path: polygon(0 0, 100% 30%, 100% 100%, 0 100%);
	}

	.content_wrap_reverse >div {
		-webkit-clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 100%);
		clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 100%);
	}
}

@media screen and (min-width: 1025px) and (max-width: 1600px) {
	.content_wrap >div {
		-webkit-clip-path: polygon(0 0, 100% 15%, 100% 100%, 0 100%);
		clip-path: polygon(0 0, 100% 15%, 100% 100%, 0 100%);
	}

	.content_wrap_reverse >div {
		-webkit-clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
		clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
	}

}

@media screen and (min-width: 769px) and (max-width: 1024px) {
	.content_wrap >div {
		-webkit-clip-path: polygon(0 0, 100% 30%, 100% 100%, 0 100%);
		clip-path: polygon(0 0, 100% 15%, 100% 100%, 0 100%);
	}

	.content_wrap_reverse >div {
		-webkit-clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 100%);
		clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
	}

}

/*
@media screen and (max-width: 600px) {
	.content_wrap >div {
		-webkit-clip-path: polygon(0 20%, 100% 0%, 100% 80%, 0% 100%);
		clip-path: polygon(0 10%, 100% 0%, 100% 90%, 0% 100%);
	}	
}
*/

.cont_width >div {
	width: 100%;
	max-width: 1140px;
	margin: 0 auto;
}

.top_img img {
	border: 5px solid #ffe893;
}

.top_cont {
	gap: 0 !important;
}

.top_cont > div {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	
}

.top_cont .inner_wrap {
	max-width: 550px;
	margin: auto;
}

@media screen and (min-width: 1600px) {
	.top_cont {
		align-items: center;
		justify-content: center;
	}

	.top_cont .wp-block-image {
		margin-bottom: 0;
	}

	.top_cont > div {
		flex-basis: 50vw !important;
		flex-grow: 0;
	}
	
	.top_cont .inner_wrap {
		min-width: 550px;
	}

	.top_cont .wp-block-column:not(:first-child) {
		margin-left: 0;
		padding: 4em 20em 4em 4em;
	}
	
	.top_cont.reverse .wp-block-column:not(:first-child) {
		margin-left: 0;
		padding: 4em 4em 4em 20em;
	}
	
	.top_cont.t-greeting.reverse .wp-block-column:not(:first-child) {
		margin-left: 0;
		padding: 4em;
	}
	
	.section05 .top_cont >div {
		display: flex;
		flex-direction: column;
		align-items: center;
		height: 250px;
	}
	
	.top_cont >div:nth-child(2) {
		
	}
		
	.section05 .top_cont >div {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		height: 250px;
	}
	
	.section05 .top_cont >div:nth-child(2) {
		margin-right: 0;
	}
	
	.section05 .btn_more {
    	margin-top: auto;
    	width: 100%;
    	max-width: 360px;
	}

	.top_cont.reverse >div:nth-child(2) {
		
	}

	.section01.top_cont.reverse >div:nth-child(2) {
		padding-left: 0;
	}

	.top_img {
    	position: relative;
	}

	.top_img >div:nth-child(2) {
		position: absolute;
		bottom: -130px;
    	right: -80px;
	}

	.img_cover img {
		object-fit: cover;
		width: 50vw;
		height: auto;
	}
	
	.section05 .top_cont {
    	padding: 15em 0 3em;
	}
	
	.section05 .top_cont > div {
    	/*max-width: 550px;*/
	}
	
	.section05 .top_cont >div:nth-child(1) {
		padding: 4em 4em 4em 20em;
	}
	
	.section05 .top_cont >div:nth-child(2) {
		margin-left: 0;
	}
}


@media screen and (min-width: 1025px) and (max-width:1599px) {
	.top_cont {
		align-items: center;
		justify-content: center;
	}

	.top_cont .wp-block-image {
		margin-bottom: 0;
	}

	.top_cont >div {
		flex-basis: 50vw !important;
		flex-grow: 0;
	}
	
	.top_cont .inner_wrap {
		min-width: 550px;
	}


	.top_cont .wp-block-column:not(:first-child) {
		margin-left: 0;
	}
	
	.section05 .top_cont >div {
		display: flex;
		flex-direction: column;
		align-items: center;
		height: 250px;
	}
	
	.top_cont >div:nth-child(2) {
		/*max-width: 550px;*/
		margin: auto;
		padding-left: 4em;
	}

		
	.section05 .top_cont >div {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		height: 250px;
	}
	
	.section05 .top_cont >div:nth-child(2) {
		margin-right: 0;
	}
	
	.section05 .btn_more {
    	margin-top: auto;
    	width: 100%;
    	max-width: 360px;
	}

	.top_cont.reverse >div:nth-child(2) {
		/*max-width: 550px;*/
		margin: auto;
	    padding-left: 0;
		padding-right: 4em;
	}

	.section01.top_cont.reverse >div:nth-child(2) {
		padding-left: 0;
	}

	.top_img {
    	position: relative;
	}

	.top_img >div:nth-child(2) {
		position: absolute;
		bottom: -130px;
    	right: -80px;
	}

	.img_cover img {
		object-fit: cover;
		width: 50vw;
		height: auto;
	}
	
	.section05 .top_cont {
    	padding: 12em 0 3em;
	}
	
	.section05 .top_cont >div {
    	/*max-width: 550px;*/
	}
	
	.section05 .top_cont >div:nth-child(1) {
		padding-left: 4em;
	}
	
	.section05 .top_cont >div:nth-child(2) {
		margin-left: 0;
	}
	/*
	.section05 .top_cont {
		position: relative;
	}
	
	.section05 .top_cont::before {
		content: '';
		width: 1.5px;
		height: 100%;
		background: #fff;
		position: absolute;
		top: 0;
		left: 50%;
		transform: translatex(-50%);
	}*/
}

@media screen and (max-width: 1024px) and (min-width: 769px) {
	.top_cont {
		align-items: center;
		justify-content: center;
	}

	.top_cont .wp-block-image {
		margin-bottom: 0;
	}
	
	.home .section01 >div {
		padding: 20px;
	}

	.top_cont >div {
		flex-basis: 50vw;
		flex-grow: 0;
	}

	.top_cont .wp-block-column:not(:first-child) {
		margin-left: 0;
	}
	
	.top_cont >div:nth-child(2) {
		margin-right: auto;
		padding-left: 2em;
	} 

	.top_cont.reverse >div:nth-child(2) {
	    margin-right: 32px;
		margin-left: auto;
	    padding-left: 0;
	}

	.section01.top_cont.reverse >div:nth-child(2) {
		padding-left: 0;
	}
	
	.top_img {
    	position: relative;
	}
	
	.top_img >div:nth-child(1) {
		width: 90%;
	}

	.top_img >div:nth-child(2) {
		position: absolute;
    	bottom: -80px;
    	right: 0;
    	width: 50%;
	}

	.img_cover img {
		object-fit: cover;
		width: 50vw;
		height: 400px;
	}
	
	.section05 .top_cont {
        padding: 6em 0 2em;
	}
	
	.section05 .top_cont >div {
    	max-width: 550px;
	}
	
	.section05 .top_cont >div:nth-child(1) {
		padding-left: 1em;
		padding-right: 1em;
	}
	
	.section05 .top_cont >div:nth-child(2) {
		margin-left: 0;
	}
	
	.section05 .top_cont {
		position: relative;
	}
}

.point_column {
	justify-content: space-between;
}

.point {
    max-width: 400px;
    margin: 0 auto;
	position: relative;
}

.point::before {
	content: '';
	width: 150px;
	height: 60px;
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: url(/wp-content/uploads/bg_point.png)no-repeat center;
	background-size: contain;
	position: absolute;
	left: 50%;
	top: 0;
	transform: translate(-50%,-50%);
}

.point.num1::before {
	content: 'POINT 01';
}

.point.num2::before {
	content: 'POINT 02';
}

.point.num3::before {
	content: 'POINT 03';
}

.point.num4::before {
	content: 'POINT 04';
}

.siteContent_after {
    padding-top: 0;
	padding-bottom: 0;
}

@media screen and (max-width: 768px) {
	.top_cont {
		padding: 0;
	}
	
	.top_cont.reverse {
		padding: 0;
	}
	
	.section01 .top_cont.reverse >div {
		padding: 0 20px;
	}
	
	.section01 .top_cont.reverse >div:nth-child(1) {
		padding-top: 40px;
	}
	
	.section01 .top_cont.reverse >div:nth-child(2) {
		padding-top: 4em;
		padding-bottom: 40px;
	}
	
	.top_img {
    	position: relative;
		margin-bottom: 60px;
	}
	
	.top_img >div:nth-child(1) {
    	width: 80%;
	}
	
	.top_img >div:nth-child(2) {
    	width: 40%;
    	position: absolute;
    	right: 20px;
    	top: 200px;
	}
		
	.home .section04 >div {
		padding-bottom: 40px;
	}
	
	.home .section02 {
		z-index: 40;
	}
	
	.home .section03 {
		z-index: 30;
	}
	
	.home .section04 {
		z-index: 10;	
	}
	
	.home .section05 {
		z-index: 20;
	}
	
	.section05 .top_cont {
		padding-bottom: 40px;
	}
	
	.section05 .top_cont >div:nth-child(1) {
    	padding: 40px 20px 20px;
	}
	
	.section05 .top_cont >div:nth-child(2) {
		padding: 40px 20px 20px;
	}
	
	.img_cover img {
    	width: 100%;
    	height: 340px;
	}
	
	.content_wrap .top_cont >div:nth-child(2),
	.content_wrap_reverse .top_cont.reverse >div:nth-child(2) {
		padding: 20px;
	}

	.content_wrap .top_cont >div:nth-child(2),
	.content_wrap_reverse .top_cont.reverse >div:nth-child(2) {
		position: relative;
	}
	
	.content_wrap .top_cont >div:nth-child(2)::before,
	.content_wrap .top_cont >div:nth-child(2)::after,
	.content_wrap_reverse .top_cont.reverse >div:nth-child(2)::before,
	.content_wrap_reverse .top_cont.reverse >div:nth-child(2)::after {
    	content: '';
    	width: 120%;
    	height: 60px;
    	position: absolute;
	}

	.content_wrap .top_cont >div:nth-child(2)::before,
	.content_wrap .top_cont >div:nth-child(2)::after {
		background: #ffac3f;
	}

	.content_wrap_reverse .top_cont.reverse >div:nth-child(2)::before,
	.content_wrap_reverse .top_cont.reverse >div:nth-child(2)::after {
		background: #fff;
	}

	.content_wrap .top_cont >div:nth-child(2)::before,
		.content_wrap_reverse .top_cont.reverse >div:nth-child(2)::before {
    	-webkit-clip-path: polygon(100% 0%, 0% 100%, 100% 100%);
    	clip-path: polygon(100% 0%, 0% 100%, 100% 100%);
		top: -75px;
    	left: -50px;
    	z-index: 0;
	}

	.content_wrap .top_cont >div:nth-child(2)::after,
	.content_wrap_reverse .top_cont.reverse >div:nth-child(2)::after {
	    -webkit-clip-path: polygon(100% 100%, 100% 100%, 100% 0, 0 0);
    	clip-path: polygon(100% 100%, 100% 100%, 100% 0, 0 0);
    	bottom: -60px;
    	left: -50px;
    	z-index: 0;
	}
	
	.section04.content_wrap .top_cont >div:nth-child(2)::after {
		display: none;
	}
}

@media screen and (min-width: 601px) and (max-width: 768px) {
	
	.home .section04 {
    	margin-bottom: -1px;
	}
	
	.top_cont >div {
    	flex-basis: 100% !important;
	}
	
	.home .section05 {
		margin-bottom: 0;
	}
	
	.home .section05 .top_cont >div:nth-child(2) {
    	margin-right: 0; 
	}
	
	.top_cont .wp-block-column:nth-child(2n) {
		margin-left: 0;
	}
	
	.section05 .top_cont >div {
		flex-basis: calc(50% - 16px) !important;
	}
	
	.content_wrap .top_cont >div:nth-child(2),
	.content_wrap_reverse .top_cont.reverse >div:nth-child(2) {
    	padding: 20px 60px 20px 20px;
	}
	
	.img_cover {
		position: relative;
	}
	
	.section03 .img_cover figure {
		top: 0;
	}
	
	.section04 .img_cover figure {
		top: 0;
	}
	
	.section05 .top_cont {
		padding-bottom: 20px;
	}
	
	.top_img >div:nth-child(2) {
    	right: 20px;
    	top: unset;
    	bottom: -130px;
	}

	.img_cover img {
    	object-fit: cover;
    	height: 360px;
    	width: 100%;
		object-position: top;
	}
	
	.content_wrap .top_cont >div:nth-child(2)::before,
	.content_wrap .top_cont >div:nth-child(2)::after,
	.content_wrap_reverse .top_cont.reverse >div:nth-child(2)::before,
	.content_wrap_reverse .top_cont.reverse >div:nth-child(2)::after {
    	width: 110%;
    	height: 80px;
	}

	.content_wrap .top_cont >div:nth-child(2)::before,
	.content_wrap_reverse .top_cont.reverse >div:nth-child(2)::before {
		-webkit-clip-path: polygon(100% 0%, 0% 100%, 100% 100%);
    	clip-path: polygon(100% 0%, 0% 100%, 100% 100%);
    	top: -90px;
    	left: -40px;
	}
	
	.content_wrap .top_cont >div:nth-child(2)::after,
	.content_wrap_reverse .top_cont.reverse >div:nth-child(2)::after {
		-webkit-clip-path: polygon(100% 100%, 100% 100%, 100% 0, 0 0);
    	clip-path: polygon(100% 100%, 100% 100%, 100% 0, 0 0);
    	bottom: -80px;
    	left: -40px;
	}
}

/*-------------------------------
            SUBページ
--------------------------------*/

/*--02 D-may colorの特色--*/

.d-my-color .section02 >div {
	background: #ffac3f;
    padding: 15em 0 0;
}

.d-my-color .section02 .txt_width {
	max-width: 550px;
	margin: 0 auto;
}
@media screen and (max-width: 769px) and (max-width: 1599px) {
	.d-my-color .section02 >div {
		background: #ffac3f;
   		padding: 6em 0 0;
	}
}

@media screen and (max-width: 768px) {
	.d-my-color .section02 {
		margin-top: 40px;
	}
	
	.d-my-color .section02 >div {
    	padding: 20px 20px 0;
	}
	
	.d-my-color .section02 >div::before,
	.class .section02 >div::before {
	    content: '';
    	width: 100%;
    	height: 60px;
    	background: #ffac3f;
    	-webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 0);
    	clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 0);
    	position: absolute;
    	top: -60px;
    	left: 0;
    	z-index: 100;
	}
	
	.point {
		margin-bottom: 20px;
	}
	
	.point.num1 {
		margin-top: 20px;
	}
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
	.point {
		margin-bottom: 0;
	}
	
	.point.num1 {
		margin-top: 0;
	}
}



/*--03 Class / price--*/
.class .section01 >div {
	max-width: 700px;
	margin: 0 auto;
}

.detail_column >div:nth-child(1) {
	position: relative;
	padding-right: 2em;
}

.detail_column >div:nth-child(1)::before {
	content: '';
	width: 2px;
	height: 100%;
	background: #000;
	position: absolute;
	top: 0;
	right: 0;
}

.class .section02 >div {
	background: #ffac3f;
    padding: 15em 0 0;
}

.class .section02 .wp-block-columns {
	max-width: 700px;
	margin: 0 auto;
}

@media screen and (max-width: 768px) {

	.class .section02 {
		margin-top: 60px;
	}
	
	.class .section02 >div {
		padding: 20px 20px 0;
	}
}

@media screen and (min-width: 768px) and (max-width: 1025px) {
	.detail_column >div:nth-child(1) {
		flex-basis: 55% !important;
	}
	
	.detail_column >div:nth-child(2) {
		flex-basis: 40% !important;
	}
	
	.detail_column >div:nth-child(1)::before {
		content: '';
		width: 2px;
		height: 100%;
		background: #000;
		position: absolute;
		top: 0;
		right: 0;
		bottom: unset;
		left: unset;
	}	
}

@media screen and (min-width: 601px) and (max-width: 767px) {
	.detail_column >div:nth-child(1) {
		flex-basis: 60% !important;
	}
	
	.detail_column >div:nth-child(2) {
		flex-basis: 30% !important;
	}
}

@media screen and (max-width: 600px) {
	.detail_column >div:nth-child(1) {
		padding-right: 0;
		padding-bottom: 1em;
	}
	
	.detail_column >div:nth-child(2) {
		padding-left: 0;
		padding-top: 1em;
	}
	
	.detail_column >div:nth-child(1)::before {
		content: '';
		width: 100%;
		height: 2px;
		top: unset;
		bottom: 0;
		left: 0;
	}
}

/*--04 staff--*/

.staff_column01 {
	justify-content: center;
}

.staff_column01 >div {
	max-width: 450px;	
}

.staff_column01 >div:nth-child(1) {
	display: flex;
	justify-content: flex-end;
}

.staff .section02 >div {
	max-width: 700px;
	margin: 0 auto;
}

@media screen and (min-width: 768px) {
	.staff_column01 >div:nth-child(1) {
		padding-right: 5px;
	}

	.staff_column01 >div:nth-child(1) {
		padding-left: 5px;
	}
}

@media screen and (max-width: 600px) {
	.staff_column01 >div:nth-child(1) {
		justify-content: center;
	}	
}

/*--05 FAQ--*/
.faq_q {
    background: #ff9000;
    font-size: 20px;
    font-weight: bold;
	max-width: 700px;
	margin: 0 auto;
	padding: 25px;
    padding-left: 100px;
	position: relative;
}

.faq_a {
    background: #fec63f;
	max-width: 700px;
	margin: 0 auto;
	padding: 25px;
    padding-left: 100px;
	position: relative;
}

.faq_a a {
	color: #000;
	text-decoration: underline;
}

.faq_a a:hover {
	opacity: .8;
}

.faq_q::before,
.faq_a::before {
	content: '';
	color: #fff;
	font-size: 50px;
	font-weight: bold;
	position: absolute;
	top: 0;
	left: 25px;
}

.faq_q::before {
	content: 'Q';
}

.faq_a::before {
	content: 'A';
}

/*--06 Voice--*/
.voice_box {
	max-width: 550px;
	margin: 0 auto;
}

/*--07 studio--*/
.access_column {
	max-width: 700px;
	margin: 0 auto;
}

.access_txt {
	border-bottom: 1px solid #000;
	padding-bottom: 30px;
}

.gmap {
	max-width: 700px;
	margin: 0 auto;
}

/*--08 Contact--*/
.contact .section02 >div {
	background: #ffac3f;
    padding: 2em 0 4em;
}

.contact .section02 >div::before {
	content: '';
	width: 120%;
	height: 100px;
	background: #ffac3f;
	-webkit-clip-path: polygon(100% 100%, 100% 100%, 0 0, 0 100%);
	clip-path: polygon(100% 100%, 100% 100%, 0 0, 0 100%);
	position: absolute;
	top: -99px;
	left: -40px;
}

@media screen and (max-width: 768px) {
	.contact .section02 {
		margin-top: 40px;
	}
	
	.contact .section02 >div {
		padding: 2em 20px 4em;
	}
	
}

/*-------------------------------
          リンクバナー
--------------------------------*/

.btn_more {
	position: relative;
	z-index: 0;
}

@media screen and (max-width: 600px) {
    .btn_more {
    	text-align: center;
	}
}

.btn_more a {
    border: 1px solid #000;
    color: #000;
	letter-spacing: .1em;
	text-align: left;
    display: inline-block;
    width: 100%;
    max-width: 360px;
    padding: 10px;
	padding-left: 20px;
}

.btn_more.white a {
	border: 1px solid #fff;
	color: #fff;
}

.btn_wrap {
    max-width: 660px;
    margin: 0 auto;
}

@media screen and (max-width: 600px) {
    .btn_wrap >div:nth-child(1) {
        margin-bottom: 20px;
    }
}


/*--hover--*/

.btn_more a {
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.btn_more a,
.btn_more a::before {
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
	transition: all .5s;
	text-decoration: none !important;
}

.btn_more a::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: -100%;
	z-index: -1;
}

.btn_more a::before {
	background: #000;
}

.btn_more.white a::before {
	background: #fff;
}

.btn_more a:hover {
	color: #fff;
}

.btn_more.white a:hover {
	color: #ffac3f;
}

.btn_more a:hover::before {
	left: 0;
}

/*-------------------------------
         ページ内リンク
--------------------------------*/
#menu1 a,
#menu2 a {
    -webkit-transition: all 10s;
    -moz-transition: all 10s;
    -o-transition: all 10s;
	transition: all 10s;
}

.anchor {
	padding-top: 150px;
	margin-top: -150px;
	position: relative;
	z-index: -1;
}

.btn_page_link_wrap {
    max-width: 600px;
    margin: 0 auto;
}

@media screen and (max-width: 600px) {
    .btn_page_link_wrap >div:nth-child(1) {
        margin-bottom: 20px;
    }
}

.btn_page_link a,
.btn_page_link a::before {
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
	transition: all .5s;
	text-decoration: none !important;
}

.btn_page_link a {
	border: 1px solid #111;
    background: #111;
    color: #fff;
    letter-spacing: .1em;
    width: 95%;
    display: block;
    padding: 10px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.btn_page_link a::before {
	content: '';
	width: 100%;
	height: 100%;
	background: #fff;
	position: absolute;
	top: -100%;
	left: 0;
	z-index: -1;
}

.btn_page_link a:hover {
	color: #111;
}

.btn_page_link a:hover::before{
	top: 0;
}

/*-------------------------------
          アコーディオン
--------------------------------*/

@keyframes tooltipShow {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

.acd_trigger {
	display: none;
}

@media screen and (max-width: 768px) {
    .acd_trigger {
        border: 1px solid #111;
        display: block;
        max-width: 300px;
        margin: 40px auto;
        padding: 10px;
    }
	
    .is-active .product_ttl::before {
        content: "-";
        font-size: 20px;
    }

    .acd {
        cursor: pointer;
        margin: 0 auto;
    }

    .acd_item {
        display: none;
    }

    .is-active .acd_item {
        display: block;
        margin: 0 auto 40px !important;
        animation: tooltipShow 0.3s linear 0s;
    }

    .is-active .acd_trigger {
        margin-bottom: 0;
    }

    .product_inner_column > div:first-child,
    .product_inner_column > div:last-child {
        width: 100%;
    }
}


/*-------------------------------
          アニメーション
--------------------------------*/
@keyframes anime {
	0% {
		width: 0;
	}
	
	100% {
		width: 100%;
	}
}

.contents.run.section01::before,
.contents.run.section01::after,
.contents.run.section02::before,
.contents.run.section02::after,
.contents.run.section04::before,
.contents.run.section05::after  {
	opacity: 1;
	animation: anime 3s ease-in forwards;
}

/*-------------------------------
            各種設定
--------------------------------*/
/*instagram feed*/
#sb_instagram .sb_instagram_header {
	display: none;
}

#sb_instagram #sbi_load .sbi_load_btn, #sb_instagram .sbi_follow_btn a {
	background: #000;
	border-radius: 0;
}

@media screen and (max-width: 600px) {
	div#sbi_images {
    	display: flex;
    	justify-content: center;
		flex-wrap: wrap;
	}
	
	div#sbi_images >div {
		flex-basis: 50%;
	}
}

div#topcontrol {
    z-index: 999;
}

.grecaptcha-badge {
    margin-bottom: 80px;
	z-index: 9999;
}




@media screen and (min-width: 650px){
  .br-pc { display:block; }
  .br-sp { display:none; }
}
@media screen and (max-width: 650px){
  .br-pc { display:none; }
  .br-sp { display:block; }
}