/*********************************
	共通
*********************************/
.container {
    width: 1200px;
    margin: 0 auto;
}
.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-around;
    -ms-flex-pack: space-around;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.bg {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}



.vertical_ttl {
    font-family: 'outfit';
}
/*********************************
	共通パーツ
*********************************/

.btn {
    width: 200px;
    box-sizing: border-box;
    background-color: #2C2C2C;
    padding: 15px 0;
    display: block;
    position: relative;
    transition: all 0.25s;
    -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
    -ms-transition: all 0.25s;
    -o-transition: all 0.25s;
}
.btn:hover {
    background-color: #DF6400;
}
.btn span {
    color: #fff;
    padding-left: 30px;
    font-weight: normal;
    font-size: 20px;
    letter-spacing: 0.2em;
    position: relative;
}
.btn::after {
    content: "";
    background-color: #fff;
    display: block;
    position: absolute;
    height: 1px;
    width: 20px;
    top: 0;
    right: 30px;
    bottom: 0;
    margin: auto;
    transition: all 0.25s;
    -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
    -ms-transition: all 0.25s;
    -o-transition: all 0.25s;
}
.btn:hover::after {
    right: 10px;
}
/*********************************
	header
*********************************/
#header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 500;
}
#header .head_logo {
    position: absolute;
    top: 58px;
}
#header .head_logo img {
    width: 266px;
}
.nav_blk {
    position: absolute;
    top: 0;
    right: 0;
    width: 70px;
    height: 70px;
    background-color: #2C2C2C;
    z-index: 9999;
    transition: all 0.25s;
    -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
    -ms-transition: all 0.25s;
    -o-transition: all 0.25s;
}
.nav_blk #toggle {
    position: relative;
    cursor: pointer;
}
.nav_blk #toggle span {
    position: absolute;
    background-color: #fff;
    width: 40px;
    height: 1px;
    display: block;
    left: 0;
    right: 0;
    margin: auto;
    transition: all 0.25s;
    -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
    -ms-transition: all 0.25s;
    -o-transition: all 0.25s;
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
}
.nav_blk #toggle span:nth-of-type(1) {
    top: 30px;
}
.nav_blk #toggle span:nth-of-type(2) {
    top: 40px;
}
.open .nav_blk #toggle span:nth-of-type(1) {
    transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    -o-transform: rotate(30deg);
    top: 34px;
}
.open .nav_blk #toggle span:nth-of-type(2) {
    transform: rotate(-30deg);
    -webkit-transform: rotate(-30deg);
    -moz-transform: rotate(-30deg);
    -ms-transform: rotate(-30deg);
    -o-transform: rotate(-30deg);
    top: 34px;
}
a.fixed_btn {
    width: 70px;
    background-color: #DF6400;
    color: #fff;
    position: absolute;
    top: 70px;
    right: 0;
    text-align: center;
    padding-top: 22px;
    padding-bottom: 27px;;
}
a.fixed_btn span {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    display: block;
    text-align: center;
    margin: auto;
    font-size: 16px;
    letter-spacing: 0.25em;
    margin-top: 20px;
}
/*********************************
	グローバルナビ
*********************************/
nav.header_nav {
    opacity: 0;
    transition: all 0.25s;
    -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
    -ms-transition: all 0.25s;
    -o-transition: all 0.25s;
    width: 100vw;
    height: 100vh;
    background-color: #2C2C2C;
    position: fixed;
    z-index: -100;
    pointer-events: none;
}
.open .nav_blk {
    background-color: #DF6400;
}
.open nav.header_nav {
    opacity: 1;
    z-index: 500;
    pointer-events: auto;
}
.nav_wrap {
    width: 50%;
    color: #fff;
}
nav.header_nav ul {
    width: 50%;
    padding-left: 6%;
    box-sizing: border-box;
}
.nav_left {
    width: 332px;
    margin: 0 auto;
}
.nav_left span {
    font-size: 26px;
    letter-spacing: 0.1em;
    display: block;
    padding: 40px 0 10px 0;
}
.nav_left span a {
    display: block;
    color :#fff;
}
.nav_left p {
    font-size: 14px;
    letter-spacing: 0.06em;
    line-height: 32px;
}
nav.header_nav ul li {
    margin-bottom: 20px;
    position: relative;
    transform: translateX(20px);
    opacity: 0;
}
nav.header_nav ul li::before {
    content: "";
    background-color: #fff;
    width: 20px;
    height: 1px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -40px;
    display: block;
    margin: auto;
}
nav.header_nav ul li a {
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 0.2em;
    line-height: 36px;
    width: 120px;
    font-family: 'NotoSans';
}
nav.header_nav ul li:nth-child(1) {
    transition: 1s 0.2s cubic-bezier(.19, 1, .22, 1);
    -webkit-transition: 1s 0.2s cubic-bezier(.19, 1, .22, 1);
    -moz-transition: 1s 0.2s cubic-bezier(.19, 1, .22, 1);
    -o-transition: 1s 0.2s cubic-bezier(.19, 1, .22, 1);
    -ms-transition: 1s 0.2s cubic-bezier(.19, 1, .22, 1);
}
nav.header_nav ul li:nth-child(2) {
    transition: 1s 0.22s cubic-bezier(.19, 1, .22, 1);
    -webkit-transition: 1s 0.22s cubic-bezier(.19, 1, .22, 1);
    -moz-transition: 1s 0.22s cubic-bezier(.19, 1, .22, 1);
    -o-transition: 1s 0.22s cubic-bezier(.19, 1, .22, 1);
    -ms-transition: 1s 0.22s cubic-bezier(.19, 1, .22, 1);
}
nav.header_nav ul li:nth-child(3) {
    transition: 1s 0.24s cubic-bezier(.19, 1, .22, 1);
    -webkit-transition: 1s 0.24s cubic-bezier(.19, 1, .22, 1);
    -moz-transition: 1s 0.24s cubic-bezier(.19, 1, .22, 1);
    -o-transition: 1s 0.24s cubic-bezier(.19, 1, .22, 1);
    -ms-transition: 1s 0.24s cubic-bezier(.19, 1, .22, 1);
}
nav.header_nav ul li:nth-child(4) {
    transition: 1s 0.26s cubic-bezier(.19, 1, .22, 1);
    -webkit-transition: 1s 0.26s cubic-bezier(.19, 1, .22, 1);
    -moz-transition: 1s 0.26s cubic-bezier(.19, 1, .22, 1);
    -o-transition: 1s 0.26s cubic-bezier(.19, 1, .22, 1);
    -ms-transition: 1s 0.26s cubic-bezier(.19, 1, .22, 1);
}
nav.header_nav ul li:nth-child(5) {
    transition: 1s 0.28s cubic-bezier(.19, 1, .22, 1);
    -webkit-transition: 1s 0.28s cubic-bezier(.19, 1, .22, 1);
    -moz-transition: 1s 0.28s cubic-bezier(.19, 1, .22, 1);
    -o-transition: 1s 0.28s cubic-bezier(.19, 1, .22, 1);
    -ms-transition: 1s 0.28s cubic-bezier(.19, 1, .22, 1);
}
nav.header_nav ul li:nth-child(6) {
    transition: 1s 0.3s cubic-bezier(.19, 1, .22, 1);
    -webkit-transition: 1s 0.3s cubic-bezier(.19, 1, .22, 1);
    -moz-transition: 1s 0.3s cubic-bezier(.19, 1, .22, 1);
    -o-transition: 1s 0.3s cubic-bezier(.19, 1, .22, 1);
    -ms-transition: 1s 0.3s cubic-bezier(.19, 1, .22, 1);
}
nav.header_nav ul li:nth-child(7) {
    transition: 1s 0.32s cubic-bezier(.19, 1, .22, 1);
    -webkit-transition: 1s 0.32s cubic-bezier(.19, 1, .22, 1);
    -moz-transition: 1s 0.32s cubic-bezier(.19, 1, .22, 1);
    -o-transition: 1s 0.32s cubic-bezier(.19, 1, .22, 1);
    -ms-transition: 1s 0.32s cubic-bezier(.19, 1, .22, 1);
}
nav.header_nav ul li:nth-child(8) {
    transition: 1s 0.34s cubic-bezier(.19, 1, .22, 1);
    -webkit-transition: 1s 0.34s cubic-bezier(.19, 1, .22, 1);
    -moz-transition: 1s 0.34s cubic-bezier(.19, 1, .22, 1);
    -o-transition: 1s 0.34s cubic-bezier(.19, 1, .22, 1);
    -ms-transition: 1s 0.34s cubic-bezier(.19, 1, .22, 1);
}
.open nav.header_nav ul li {
    transform: translateX(0px);
    opacity: 1;
}
br.sp {
    display: none;
}
br.pc {
    display: block;
}

.loading{
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5000;
  }
  
  .loading img{
    width: 140px;
    margin: auto;
    height: auto;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

/*********************************
	固定ページ
*********************************/
.page_head {
    background-image: url(../images/common/page_head_pc.jpg);
    padding: 83px 0;
}
.page_head h1 {
    justify-content: flex-start;
}
.page_head h1 span {
    color: #fff;
    font-size: 50px;
    font-family: 'Outfit';
    position: relative;
    letter-spacing: 0.1em;
    margin-right: 74px;
}
.page_head h1 span::after {
    content: "";
    background-color: #fff;
    width: 1px;
    height: 35px;
    display: block;
    top: 0;
    bottom: 0;
    margin: auto;
    right: -36px;
    position: absolute;
}
.page_head h1 small {
    font-size: 20px;
    color: #fff;
}
.page_common_wrap {
    background-color: #F4F4F4;
    padding-top: 100px;
}
/*********************************
	お問い合わせページ
*********************************/
.contact_content {
    padding-top: 50px;
    padding-bottom: 200px;
}
p.contact_intro {
    font-size: 16px;
    letter-spacing: 0.06em;
    line-height: 44px;
    text-align: center;
    color: #2c2c2c;
}
.contact_tel_box {
    width: 900px;
    /* height: 345px; */
    background: #fff;
    margin: 86px auto 0 auto;
    text-align: center;
    padding: 50px 0 20px 0;
    border-top: 3px solid #DF6400;
}
.contact_tel_box ul {
    width: 654px;
    justify-content: space-between;
    margin: 60px auto 0 auto;
}
.contact_tel_box ul li a {
    font-family: 'Outfit';
    font-size: 28px;
    letter-spacing: 0.1em;
    color: #2c2c2c;
}
.contact_tel_box p {
    font-size: 16px;
    letter-spacing: 0.06em;
    line-height: 1;
    padding-top: 20px;
    margin-bottom: 30px;
}
.contact_tel_box > a {
    color: #2C2C2C;
    font-size: 16px;
    letter-spacing: 0.06em;
}
.contact_tel_box > a img {
    width: 18px;
    height: 14px;
    margin-right: 5px;
    position: relative;
    top: -3px;
}
.form_wrap {
}
.form_wrap h2 {
    font-weight: bold;
    font-size: 34px;
    letter-spacing: 0.1em;
    text-align: center;
    color: #f08300;
    margin-top: 100px;
    position: relative;
}
.form_wrap h2::after {
    content: "";
    display: block;
    background-color: #f08300;
    height: 2px;
    width: 46px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -29px;
}
.wpcf7 {
    margin-top: 79px;
    width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.form_wrap dl {
    justify-content: space-between;
    padding-bottom: 20px;
    padding-top: 20px;
    border-bottom: 1px solid #BEBEBE;
}
.form_wrap dl dt {
    width: 200px;
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 0.1em;
    line-height: 44px;
}
.form_wrap dl dd {
    width: 500px;
}
.form_wrap dl dd input {
    font-size: 18px;
    width: 100%;
    box-sizing: border-box;
    letter-spacing: 0.1em;
    padding: 12px 8px;
    border: 1px solid #BEBEBE;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.form_wrap dl dd.checkbox span span span label{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-around;
    -ms-flex-pack: space-around;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.form_wrap dl dd.checkbox span span span label input {
    width: auto;
    margin-right: 8px;
    /* appearance: none; */
    /* position: absolute; */
    /* border: none; */
}
/* .form_wrap dl dd.checkbox span span span label span {
    font-size: 16px;
    position: relative;
    display: flex;
    align-items: center;
}
.form_wrap dl dd.checkbox span span span label span::before {
    content: '';
    display: block;
    border-radius: 50%;
    border: 1px solid #4D4D4D;
    width: 30px;
    height: 30px;
    background-color: #fff;
    margin-right: 10px;
}
input[type=”radio”]:checked + .form_wrap dl dd.checkbox span span span label span::after {
    content: '';
    display: block;
    border-radius: 50%;
    position: absolute;
    left: 8px;
    width: 15px;
    height: 15px;
    background-color: orange;
} */

.form_wrap dl dd span.address_num input {
    width: 200px;
}
.form_wrap dl dd ul {
    margin-bottom: 20px;
}
.form_wrap dl dd ul li:nth-child(1) input {
    width: 150px;
    margin-left: 20px;
}
.form_wrap dl dd ul li:nth-child(2) {
    justify-content: space-between;
    width: 220px;
    font-size: 14px;
}
.form_wrap dl dd ul li > span {
    font-weight: bold;
    letter-spacing: 0.1em;
}
.form_wrap dl dd ul li:nth-child(2) span:nth-of-type(1) {
    margin-left: 10px;
}
.form_wrap dl dd ul li select {
    font-size: 16px;
    padding: 16px 14px;
    width: 50px;
    box-sizing: border-box;
    border: 1px solid #BEBEBE;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.form_wrap dl dd textarea {
    font-size: 18px;
    width: 100%;
    height: 240px;
    box-sizing: border-box;
    letter-spacing: 0.1em;
    padding: 12px 8px;
    border: 1px solid #BEBEBE;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.form_parts > p {
    text-align: center;
    margin-top: 67px;
    font-weight: bold;
    font-size: 18px;
}
.form_parts > p input {
    width: 20px;
    height: 20px;
    border: none;
    
}
.form_parts p a {
    color: #2C2C2C;
    text-decoration: underline;
}
.form_parts p input.send {
    width: 350px;
    color: #fff;
    font-size: 18px;
    background-color: #f08300;
    font-family: 'NotoSans';
    height: 60px;
}
/*********************************
	プライバシーポリシー
*********************************/
.container_privacy {
    width: 900px;
    margin: 0 auto;
    padding-bottom: 200px;
}
.privacy_wrap .container_privacy > p {
    font-size: 16px;
    margin-bottom: 30px;
}
.privacy_wrap dl {
    margin-bottom: 60px;
}
.privacy_wrap dl dt {
    font-size: 24px;
    color: #F08300;
    font-weight: bold;
    margin-bottom: 30px;
}
.privacy_wrap dl dd {
    font-size: 16px;
    letter-spacing: 0.06em;
    text-align: left;
    color: #2c2c2c;
}
.privacy_wrap dl dd p {
    margin-bottom: 30px;
}
.privacy_wrap dl:nth-of-type(6){
    margin-bottom: 0;
}

/*********************************
プロフィールページ
*********************************/
#page_profile {
    background-color: #F4F4F4;
    padding-bottom: 200px;
    padding-top: 100px;
}
.container_min {
    width: 900px;
    margin: 0 auto;
}
.movie_common {
    background-color: #D7E4F1;
    position: relative;
    padding-top: 238px;
    margin-top: -140px;
}
figure.tour_label {
    width: 436px;
    position: absolute;
    right: calc((100% - 1020px) / 2);
    z-index: 50;
    top: 200px;
}
.movie_common .movie_detail {
    flex-wrap: nowrap;
    justify-content: flex-start;
}
.movie_common .movie_detail figure {
    width: 146px;
    display: inline-block;
}
.movie_common .movie_detail figure img {
    width: 100%;
}
.movie_common .movie_detail p {
    display: inline-block;
    font-size: 19px;
    font-weight: bold;
    line-height: 29px;
    color: #0060bb;
    padding-left: 30px;
}
.profile_block {
    width: 100%;
    margin: 0 auto;
    height: auto;
    padding-top: 345px;
    cursor: pointer;
    position: relative;
    z-index: 40;
}
.profile_block::after {
    content: "";
    background-image: url(./../images/profile/play.svg);
    background-size: 72px;
    background-position: center center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 550;
}
.profile_block a {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 500;
}
.profile_block a .mv_info {
    position: absolute;
    background-color: #F08300;
    color: #fff;
    box-sizing: border-box;
    padding: 25px 40px;
    width: 330px;
    height: 220px;
    margin-top: 63px;
}
.profile_block a .mv_info p {
    font-size: 38px;
    letter-spacing: 0.1em;
    text-align: left;
    line-height: 48px;
}
.profile_block a .mv_info span {
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 0.1em;
    display:  block;
    padding-top: 10px;
}
.profile_block a .mv_info small {
    font-size: 16px;
    letter-spacing: 0.06em;
    line-height: 32px;
    font-weight: normal;
    display: block;
}
.tour_block .profile_block::before {
    content: "";
    background-image: url(./images/top/play.svg);
    background-size: 72px 98px;
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    z-index: 100;
}
figure.tour_label img {
    width: 436px;
    margin-left: auto;
}
.movie_common.profile_block {
    padding-top: 450px;
    z-index: auto;
}
.tour_block .mv {
    z-index: auto;
}
.movie_common {
    position: relative;
}
.movie_common a {
    width: 100%;
    display: block;
    height: 100%;
    z-index: 1000;
}
.movie_common a video {
    width: 100%;
    height: auto;
}
video.video_thumb {
	display: block;
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    left: 40%;
    -webkit-transform: translateX(-20%) translateY(-25%);
    -moz-transform: translateX(-20%) translateY(-25%);
    -ms-transform: translateX(-20%) translateY(-25%);
    -o-transform: translateX(-20%) translateY(-25%);
    transform: translateX(-20%) translateY(-25%);
}
h1.profile_long_ttl {
    margin-left: calc((100% - 900px) / 2);
    font-size: 40px;
    padding-bottom: 70px;
}
h1.profile_long_ttl span {
    font-size: 40px;
    padding-right: 20px;
}
h1.profile_long_ttl p {
    font-size: 20px;
}
h1.profile_long_ttl::after {
    top: -65px;
}
#hobby {
    margin-top: 76px;
}
ul.hobby_list li h2 p {
    font-size: 30px;
    letter-spacing: 0.1em;
    text-align: center;
    color: #F08300;
}
ul.hobby_list li h2 span {
    font-size: 16px;
    color: #2c2c2c;
    display: block;
    text-align: center;
    font-weight: normal;
    letter-spacing: 0.1em;
}
ul.hobby_list li div {
    width: 100%;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    background-color: #fff;
    box-sizing: border-box;
    padding: 40px 50px;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 50px;
    position: relative;
    margin-bottom: 100px;
}
ul.hobby_list li div figure {
    width: 200px;
}
ul.hobby_list li div figure img {
    width: 100%;
}
ul.hobby_list li div p {
    width: 560px;
    font-size: 16px;
    letter-spacing: 0.06em;
    line-height: 32px;
    padding-top: 20px;
}
ul.hobby_list li div::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 19px 20px 19px;
    border-color: transparent transparent #ffffff transparent;
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    margin: auto;
}
ul.hobby_list li div figure.order_2 {
    order: 2;
}
.education .education_info {
    padding-top: 0;
}
ul.hobby_list li:nth-child(2) div {
    margin-bottom: 85px;
}
.education_info ul li:nth-child(2) p {
    padding-top: 0;
}
.think {
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 100px;
}
.think_ttl h1.right_long_ttl {
    margin-left: auto;
}
.think_ttl h1.right_long_ttl span {
    font-size: 40px;
}
.think_ttl h1.right_long_ttl::after {
    display: none;
}
.think_txt {
    position: relative;
}
.think_txt::before {
    content: "";
    width: 1px;
    height: 100%;
    background-color: #2C2C2C;
    display: block;
    position: absolute;
    left: -40px;
}
.think_txt p {
    width: 550px;
    font-size: 16px;
    letter-spacing: 0.06em;
    line-height: 32px;
    text-align: left;
    color: #2c2c2c;
    padding-bottom: 40px;
    
}
.think_txt p:nth-of-type(2) {
    padding-bottom: 0;
}


/*********************************
SERVICEページ
*********************************/
.service_intro {
    padding: 100px 0;
}
.service_intro {
    text-align: center;
}
.service_intro b {
    font-weight: bold;
    font-size: 30px;
    letter-spacing: 0.1em;
    text-align: center;
    color: #f08300;
}
.service_intro p {
    font-size: 16px;
    letter-spacing: 0.06em;
    line-height: 32px;
    text-align: center;
    color: #2c2c2c;
    font-weight: normal;
    margin-top: 49px;
}
.service_wrap {
    background-color: #F4F4F4;
    padding: 100px 0 50px 0;
}
.service_content figure img {
    width: 100%;
}
.service_content figure {
    position: relative;
}
.service_content figcaption {
    color: #fff;
    font-size: 24px;
    letter-spacing: 0.1em;
    text-align: left;
    display: inline-block;
    background-color: #F08300;
    padding: 20px 50px;
    position: absolute;
    left: 0;
    bottom: 0;
    font-weight: bold;
}
.service_txt {
    background-color: #fff;
    width: 790px;
    box-sizing: border-box;
    padding: 50px;
}
.service_txt span {
    font-weight: bold;
    font-size: 34px;
    letter-spacing: 0.1em;
    text-align: left;
    color: #3e3a39;
    display: inline-block;
    padding-bottom: 20px;
}
.service_txt p {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.06em;
    line-height: 32px;
    text-align: left;
    color: #3e3a39;
}
.service_fst {
    margin-bottom: 100px;
}
.service_flow b {
    font-size: 24px;
    letter-spacing: 0.1em;
    text-align: center;
    color: #2c2c2c;
    display: block;
    margin-bottom: 60px;
}
.service_flow ul li {
    width: 130px;
    box-sizing: border-box;
    background-color: #fff;
    border: 2px solid #F08300;
    text-align: center;
    color: #F08300;
}
.service_flow ul li {
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 0.2em;
    line-height: 26px;
    max-height: 80px;
    padding: 25px 0;
    position: relative;
}
.service_flow ul li::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #f08400;
    top: 0;
    bottom: 0;
    margin: auto;
    right: -10px;
    position: absolute;
}
.service_flow ul li:nth-child(3),
.service_flow ul li:nth-child(4),
.service_flow ul li:nth-child(6) {
    padding: 12px 0;
}
.service_flow ul li:last-child::after {
    display: none;
}
.service_q {
    margin-top: 117px;
    background-color: #fff;
    box-sizing: border-box;
    padding: 60px 50px 10px 60px;
    position: relative;
    margin-bottom: 150px;
}
.service_q b {
    position: absolute;
    display: block;
    font-size: 24px;
    letter-spacing: 0.1em;
    text-align: center;
    left: 0;
    right: 0;
    top: -17px;
}
.service_q dl {
    align-items: flex-start;
    margin-bottom: 40px;
}
.service_q dl dt {
    width: 95px;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 0.06em;
    line-height: 32px;
    text-align: left;
    color: #f08300;
}
.service_q dl dd {
    width: 693px;
}
.service_q dl dd {
    font-size: 14px;
    letter-spacing: 0.06em;
    line-height: 32px;
    text-align: left;
}
.service_content {
    margin-bottom: 150px;
}
.service_right .service_txt {
    margin-left: auto;
}
.service_right figcaption {
    left: 110px;
}
.service_txt span.sm {
    font-size: 24px;
    margin-top: 40px;
}
.service_txt ul li span {
    font-size: 14px;
    color: #F08300;
    padding-bottom: 8px;
}
.service_txt p.bottom {
    margin-bottom: 40px;
}
/*********************************
	price
*********************************/
#flow {
    background-color: #F4F4F4;
    padding-top: 100px;
    padding-bottom: 130px;
}
#page_price {
    background-color: #2C2C2C;
    padding-top: 113px;
    padding-bottom: 111px;
}
#flow .flow_content {
    background-color: #fff;
    padding: 57px 0 87px 0;
    text-align: center;
}
#flow .flow_content h2,
#page_price h1 {
    font-size: 40px;
    letter-spacing: 0.1em;
    font-weight: normal;
    margin-bottom: 60px;
    text-align: center;
}
#flow .flow_content h2 p,
#page_price h1 p {
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 0.2em;
    line-height: 29px;
    text-align: center;
}
#page_price h1 {
    color: #fff;
}
#flow .flow_content ul {
    width: 500px;
    margin: 0 auto;
}
#flow .flow_content ul li {
    box-sizing: border-box;
    border: 2px solid #F08300;
    color: #F08300;
    font-weight: bold;
    letter-spacing: 0.2em;
    line-height: 26px;
    padding: 25px 0;
    font-size: 20px;
    margin-bottom: 50px;
    position: relative;
}
#flow .flow_content ul li::after {
    content: "";
    position: absolute;
    bottom: -32px;
    left: 0;
    right: 0;
    margin: auto;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 0 10px;
    border-color: #f08400 transparent transparent transparent;
}
#flow .flow_content ul li:last-child::after {
    display: none;
}
#flow .flow_content ul li:last-child {
    margin-bottom: 0;
}
.reward {
    margin-top: 100px;
}
.reward b {
    font-weight: bold;
    font-size: 24px;
    letter-spacing: 0.1em;
    text-align: center;
    display: block;
    margin-bottom: 60px;
}
.reward dl {
    box-sizing: border-box;
    padding: 0 40px;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 25px;
}
.reward dl dt {
    width: 84px;
    color: #F08300;
    padding-top: 4px;
    font-size: 16px;
}
.reward dl dd {
    width: 693px;
    font-size: 14px;
    letter-spacing: 0.06em;
    line-height: 32px;
}
.reward p {
    font-size: 14px;
    width: 800px;
    margin: auto;
    letter-spacing: 0.06em;
    line-height: 32px;
}
.page_price_info,
.page_price_detail {
    margin-left: auto;
}
#full_screen {
    height: 100%;
    left: -100%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

#full_screen iframe {
    border: medium none;
    height: 100%;
    width: 100%;
}

#full_screen #close_btn {
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 1001;
}

/*********************************
    ページネーション
*********************************/

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0 190px 0;
    position: relative;
    font-size: 13px;
}

.pagination span, .pagination a {
    display: block;
    width: auto;
    margin-left: 15px;
    padding: 8px;
    background-color: #fff;
    text-decoration: none;
    text-align: center;
    line-height: 16px;
    color: #000;
}
/* ページ番号 */
.pagination .pager{
    width: 40px;
    background-color: #2c2c2c;
    padding: 12px 0;
    font-family: 'Outfit';
    color: #fff;
    transition: all 0.25s;
    -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
    -ms-transition: all 0.25s;
    -o-transition: all 0.25s;
}



/* 前へ */
.pagination a.prev,
.pagination a.next {
    position: relative;
    background-color: #2c2c2c;
    width: 40px;
    height: 40px;
    padding: 0;
    transition: all 0.25s;
    -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
    -ms-transition: all 0.25s;
    -o-transition: all 0.25s;
}
.pagination a.prev::after,
.pagination a.next::after {
    content: "";
    background-size: 8px 13px;
    background-repeat: no-repeat;
    position: absolute;
    width: 8px;
    height: 13px;
    top: 0;
    right:0;
    left: 0;
    bottom: 0;
    margin: auto;
}
.pagination a.prev::after {
    background-image: url(./../images/news/prev.svg);
}
.pagination a.next::after {
    background-image: url(./../images/news/next.svg);
}
/* ホバー時 & 現在のページ */
.pagination a:hover,
.pagination .current,
.pagination a.prev:hover,
.pagination a.next:hover  {
    color: #fff;
    background-color: #BEBEBE;
}
/* 次へ */
.pagination a.next {
}
/* 最初へ */
.pagination a.first {
    display: none;
}
/* 最後へ */
.pagination a.last {
    display: none;
}

/* Page x / y */
.pagination span.page_num {
    display: none;
}

/*********************************
    投稿ページ
*********************************/
#post {
    background-color: #F4F4F4;
    padding-top: 150px;
    padding-bottom: 200px;
}
.post_wrap {
    width: 900px;
    margin: 0 auto;
    background-color: #fff;
    border-top: 5px solid #F08300;
    box-sizing: border-box;
    padding: 57px 50px 50px 50px;
}
.post_ttl {
    position: relative;
}
.post_ttl::after {
    content: "";
    background-color: #DF6421;
    width: 46px;
    height: 2px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -30px;
}
.post_ttl h2 {
    width: 800px;
    font-weight: bold;
    font-size: 26px;
    letter-spacing: 0.1em;
    text-align: center;
    color: #f08300;
    line-height: 1.42em;
}
.post_ttl time {
    font-family: 'NotoSans';
    text-align: center;
    font-size: 16px;
    letter-spacing: 0.06em;
    color: #2c2c2c;
    display: block;
    padding-top: 17px;
}
.post_content {
    padding-top: 85px;
}
.post_content p {
    font-size: 16px;
    letter-spacing: 0.06em;
    line-height: 32px;
    padding-bottom: 45px;
}
.post_content p:last-of-type {
    padding-bottom: 0;
}
/*********************************
	SP
*********************************/

@media screen and (max-width: 768px) {
    .container {
        width: 84%;
    }
    a.fixed_btn {
        display: none;
    }
    .head_logo {
        display: none;
    }
    br.sp {
        display: block;
    }
    br.pc {
        display: none;
    }
    nav.header_nav {
        flex-wrap: wrap;
    }
    .nav_left img {
        width: 185px;
    }
    .nav_left span {
        font-size: 20px;
        letter-spacing: 0.1em;
        padding: 25px 0 10px 0;
    }
    .nav_left p {
        font-size: 12px;
        line-height: 2;
    }
    .nav_wrap {
        width: 100%;
        order: 2;
    }
    nav.header_nav ul {
        width: 84%;
        margin: 0 auto;
        order: 1;
        padding-left: 11%;
        margin-top: 44px;
    }
    footer {
        padding-top: 60px;
    }
    #footer_nav ul {
        width: 84%;
        margin: 0 auto;
    }
    #footer_nav ul li {
        width: 50%;
        text-align: center;
        padding-bottom: 20px;
    }
    footer figure {
        margin-bottom: 46px;
    }
    #footer_nav ul li a {
        font-size: 16px;
    }
    footer small.copy {
        padding-top: 20px;
        padding-bottom: 43px;
    }

    /*********************************
	共通
    *********************************/
    .page_head {
        background-image: url(./../images/common/page_head_sp.jpg);
        padding: 36px 0 34px 0;
    }
    .page_head h1 span {
        font-size: 34px;
        padding-bottom: 20px;
    }
    .page_head h1 span::after {
        width: 15px;
        height: 1px;
        left: 0;
        right: auto;
        top: 42px;
    }
    .page_head h1 small {
        font-size: 18px;
    }
    /*********************************
	お問い合わせページ
    *********************************/
    .contact_tel_box {
        width: 100%;
        margin: 50px auto 0 auto;
        padding-bottom: 60px;
    }
    .page_common_wrap {
        padding-top: 0;
    }
    p.contact_intro {
        text-align: left;
        font-size: 14px;
        letter-spacing: 0.06em;
        line-height: 32px;
    }
    .contact_tel_box ul {
        width: 265px;
        margin: 42px auto 0 auto;
        justify-content: space-around;
    }
    .contact_tel_box ul li {
        margin-bottom: 11px;
    }
    .contact_tel_box ul li a {
        font-size: 18px;
    }
    .contact_tel_box p {
        font-size: 14px;
        letter-spacing: 0.06em;
        line-height: 32px;
        text-align: center;
        color: #2c2c2c;
        padding-top: 5px;
    }
    .contact_tel_box > a {
        font-size: 14px;
    }
    .form_wrap h2 {
        margin-top: 80px;
        font-size: 24px;
    }
    .wpcf7 {
        width: 100%;
        margin-top: 46px;
    }
    .form_wrap dl dd.checkbox span span span label {
        font-size: 16px;
    }
    .form_wrap dl dt {
        padding-bottom: 15px;
    }
    .form_wrap dl dd ul {
        justify-content: flex-start;
        margin-bottom: 20px;
    }
    .form_wrap dl dd ul li {
        justify-content: flex-start;
    }
    .form_wrap dl dd ul li:nth-child(2) span:nth-of-type(1),
    .form_wrap dl dd ul li:nth-child(1) span:nth-of-type(1) {
        margin-left: 0;
        display: block;
        width: 100%;
        margin-bottom: 20px;
        margin-top: 20px;
    }

    .form_wrap dl dd ul li:nth-child(1) input {
        margin-left: 0;
    }
    .form_wrap dl dd ul li:nth-child(2) {
        width: 120px;
    }
    .form_wrap dl dd ul:nth-of-type(1) li span:nth-of-type(1) {
        margin-top: 0;
        margin-bottom: 20px;
    }
    .form_wrap dl dd {
        width: 100%;
    }
    .form_wrap dl dd.checkbox {
        width: 80%;
    }
    .form_parts p input.send {
        width: 100%;
    }
    /*********************************
	プロフィールページ
    *********************************/
    #page_profile {
        padding-top: 0;
        padding-bottom: 100px;
    }
    .container_min {
        width: 84%;
    }
    #page_profile .container_sp {
        width: 100%;
    }
    .think_txt p {
        width: 100%;
    }
    .profile_block a .mv_info {
        width: 218px;
        padding: 30px;
        height: auto;
    }
    .profile_block a .mv_info p {
        font-size: 24px;
        line-height: 30px;;
    }
    .profile_block a .mv_info small {
        font-size: 14px;
    }
    h1.profile_long_ttl {
        margin-left: calc((100% - 84%) / 2)
    }
    h1.profile_long_ttl::after {
        top: -90px;
    }
    h1.profile_long_ttl p {
        line-height: 36px;
    }
    ul.hobby_list li div {
        padding: 40px 25px;
        justify-content: space-around;
    }
    ul.hobby_list li h2 span {
        letter-spacing: 0.05em;
    }
    ul.hobby_list li div figure.order_2 {
        order: 1;
    }
    ul.hobby_list li div p {
        order: 2;
    }
    ul.hobby_list li:nth-child(2) div {
        margin-bottom: 50px;
    }
    br.padding {
        padding-bottom: 30px;
    }
    .prof_info ul li.hobby p span {
        margin-bottom: 30px;
        display: block;
    }
    .think_ttl h1.right_long_ttl {
        margin-left: auto;
    }
    .think {
        justify-content: flex-start;
    }
    .think_txt::before {
        display: none;
    }
    .think_ttl h1.right_long_ttl::after {
        content: "";
        width: 100%;
        height: 1px;
        display: block;
        position: absolute;
        background-color: #2C2C2C;
        top: 25px;
        bottom: auto;
        margin: auto;
        right: -27%;
    }
    h1.right_long_ttl span {
        padding-right: 20px;
    }
    /*********************************
	serviceページ
    *********************************/
    .service_intro {
        padding: 60px 0;
        width: 84%;
        margin: 0 auto;
    }
    .service_intro b {
        font-size: 24px;
        position: relative;
    }
    .service_wrap .container_min {
        width: 100%;
    }
    .service_intro b::after {
        content: "";
        width: 46px;
        display: block;
        height: 2px;
        left: 0;
        right: 0;
        margin: auto;
        background-color: #DF6421;
        position: absolute;
        bottom: -30px;
    }
    .service_intro p {
        text-align: left;
    }
    .service_content figure {
        width: 100vw;
        margin-left: calc((100% - 100vw) / 2);
        overflow-x: hidden;
        overflow-y: auto;
        padding-bottom: 55px;
        background-color: #fff;
    }
    .service_content figure img {
        width: 136%;
        margin-left: calc((100% - 136%) / 2);
        position: relative;
        z-index: 10;
    }
    .service_txt {
        width: 100%;
        position: relative;
        z-index: 10;
        padding: 30px 8% 50px 8%;
    }
    .service_content figcaption {
        width: 92%;
        margin-right: 8%;
        box-sizing: border-box;
        padding: 20px 25px 20px 8% ;
        top: auto;
        z-index: 50;
        bottom: 0;
    }
    .service_wrap {
        padding: 0px;
    }
    .service_txt span {
        font-size: 30px;
    }
    .service_fst {
        margin-bottom: 60px;
    }
    .service_flow {
        width: 84%;
        margin: 0 auto;
    }
    .service_flow ul li {
        width: 100%;
        padding: 20px 0;
        margin-bottom: 30px;
        max-height: auto;
    }
    .service_flow ul li:nth-child(3),
    .service_flow ul li:nth-child(4),
    .service_flow ul li:nth-child(6) {
        padding: 20px 0;
    }
    .service_flow ul li::after {
        width: 0;
        height: 0;
        right: 0;
        left: 0;
        top: auto;
        bottom: -23px;
        border-style: solid;
        border-width: 10px 10px 0 10px;
        border-color: #f08400 transparent transparent transparent;
    }
    .service_q {
        width: 84%;
        margin: 45px auto 60px auto;
        padding: 50px 25px 20px 25px;
    }
    .service_q dl {
        justify-content: flex-start;
        margin-bottom: 30px;
    }
    .service_right figcaption {
        left: auto;
    }
    .service_content {
        margin-bottom: 60px;
    }
    .service_content:last-of-type {
        margin-bottom: 0
    }
    /*********************************
	FLOWページ
    *********************************/ 
    #flow {
        padding-top: 0;
        padding-bottom: 80px;
    }
    #flow .flow_content {
        width: 100vw;
        margin-left: calc((100% - 100vw) / 2);
        padding: 57px 0 60px 0;
    }
    #flow .flow_content ul {
        width: 84%;
    }
    #flow .flow_content ul li:nth-child(2) {
        padding: 12px 0;
    }
    .reward b {
        font-size: 20px;
        margin-bottom: 40px;
    }
    .reward {
        margin-top: 80px;
    }
    .reward dl {
        padding: 0;
        margin-bottom: 30px;
    }
    .reward p {
        width: 100%;
    }
    #page_price {
        padding-top: 60px;
        padding-bottom: 10px;
    }
    #page_price h1 {
        width: 92%;
        margin-left: 8%;
        text-align: left;
        position: relative;
    }
    #page_price h1 p {
        text-align: left;
    }
    #page_price h1::after {
        content: "";
        width: 87px;
        height: 1px;
        top: 30px;
        display: block;
        background-color: #fff;
        right: 0;
        position: absolute;
    }
    .container_privacy {
        width: 84%;
        margin: 0 auto;
        padding-top: 60px;
        padding-bottom: 92px;
    }
    .privacy_wrap dl dt {
        font-size: 18px;
        letter-spacing: 0.06em;
    }
    /*********************************
    pagenation
    *********************************/
    /*.pagination span, .pagination a {
        margin-left: 0;
    }
    .pagination {
        justify-content: space-between;
    }
    .pagination_fst {
        justify-content: center;
    }*/
    .pagination a.prev {
        margin-left: 0;
    }
    .pagination {
        margin: 80px auto 0 auto;
        padding-bottom: 80px;
    }
    /*********************************
    post
    *********************************/

    .post_wrap {
        width: 84%;
        padding: 32px 25px 43px 25px;
    }
    .post_ttl h2 {
        width: 100%;
        font-size: 18px;
        letter-spacing: 0.1em;
        text-align: left;
    }
    .post_ttl time {
        text-align: left;
    }
    .post_ttl::after {
        right: auto;
    }
    .post_content {
        padding-top: 52px;
    }
    .post_content img {
        width: 100%;
        height: auto;
    }
    .post_content p {
        font-size: 14px;
    }
    #post {
        padding-top: 60px;
        padding-bottom: 60px;
    }






}