@charset "utf-8";

/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
 Body
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
body {
	position: relative;
	overflow: hidden;
	font-size: 100%;
	word-wrap: break-word;
	-webkit-overflow-scrolling: touch;
	-webkit-text-size-adjust: none;
}
a {
	color: #000;
	text-decoration: none;
}
a:hover {
	text-decoration: none;
	opacity: 1;
	filter: alpha(opacity=100);
	-moz-opacity: 1;
}
.pc, .nobr {
	display: none!important;
}

/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
 Header
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
header {
	position: fixed;
    width: 100%;
	height: 60px;
	display: block;
    z-index: 20000;
    background: #fff;
}
header .inner {
	position: relative;
	width: 100%;
	height: 60px;
	display: flex;
		justify-content: flex-start;
        align-content: center;
		align-items: center;
		flex-wrap: wrap;
	padding: 0 10px;
    box-sizing: border-box;
}
header .logo {
	width: auto;
    height: 36px;
	display: block;
    margin-right: 5px;
}
header h1 {
	width: auto;
	display: block;
    font-family: "リュウミン R-KL","Ryumin Regular KL","游明朝","Yu Mincho","ヒラギノ明朝 Pro W3","Hiragino Mincho Pro","ＭＳ Ｐ明朝","MS PMincho",serif;
    font-size: 1.1em;
    /*-webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
    transform: scale(0.9);
    transform-origin: left center;*/
    line-height: 1.2em;
    text-align: left;
}
a.btnMail {
	position: fixed;
    width: 30px;
    height: 30px;
    top: 15px;
    right: 70px;
	display: flex;
		justify-content: center;
        align-content: center;
		align-items: center;
    z-index: 20000;
    border-radius: 20px;
    background: #68b0c4;
}
a.btnMail img {
	width: 16px;
    height: 16px;
	display: block;
}
a.btnMail:hover {
	transition: all 200ms;
    opacity: 0.7;
}

/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
 グローバルナビ
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/*メニューボタン*/
#input {
	display: none;
}
#btnMenu {
	position: fixed;
	width: 60px;
	height: 60px;
	top: 0;
    right: 0;
	display: block;
	z-index: 30000;
	cursor: pointer;
	caret-color: transparent;
	background: #fff;
	transition: all 300ms;
}
#btnMenu:hover {
	opacity: 1;
}
#btnMenu b {
	position: absolute;
	width: 100%;
	top: 42px;
    font: 200 0.8em/1em copperplate, serif;
    letter-spacing: 0.1em;
	text-align: center;
	color: #68b0c4;
}
.line1,.line2,.line3 {
	position: absolute;
	width: 30px;
	height: 1px;
	left: calc(50% - 15px);
	background-color: #68b0c4;
	transform: rotate(0deg);
	transition: all 300ms;
}
.line2 {
	width: 22px;
	left: calc(50% - 8px);
}
.line1 {
	top: 16px;
}
.line2 {
	top: 24px;
}
.line3 {
	top: 33px;
}
#input:checked ~ #btnMenu .line1,
#input:checked ~ #btnMenu .line3 {
	width: 36px;
	height: 1px;
	top: 24px;
	left: calc(50% - 18px);
	background-color: #68b0c4;
	transform: rotate(-45deg);
	transition: all 300ms;
}
#input:checked ~ #btnMenu .line2 {
	opacity: 0;
	transition: all 300ms;
}
#input:checked ~ #btnMenu .line3 {
	transform: rotate(45deg);
}
nav.globalNavi {
	position: fixed;
	width: 100%;
    height: calc(100vh - 60px);
	top: 60px;
    right: 0;
	display: block;
	z-index: 20000;
	padding: 5px 5%;
	background: rgba(104,176,196,0.95);
	box-sizing: border-box;
	opacity: 1;
	transform: translateX(100%);
	transition: all 300ms;
}
#input:checked ~ nav.globalNavi {
	opacity: 1;
	transform: translateX(0%);
	transition: all 300ms;
}
nav.globalNavi ul.mainMenu {
	width: 100%;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
	box-sizing: border-box;
}
nav.globalNavi ul.mainMenu li {
	width: 100%;
	height: 40px;
	display: block;
}
nav.globalNavi ul.mainMenu li+li {
	border-top: solid 1px rgba(255,255,255,0.5);
}
nav.globalNavi ul.mainMenu li a {
	width: 100%;
	height: 40px;
	display: flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
	padding: 0 15px 0 0;
    font-size: 1.2em;
    line-height: 1em;
    color: #fff;
    background: url("../images/arrow_right_w.svg") no-repeat right center;
    background-size: 8px 8px;
	box-sizing: border-box;
    opacity: 1;
	transition: all 200ms;
}
nav.globalNavi ul.mainMenu li a:hover {
	opacity: 0.5;
	transition: all 200ms;
}

/*==============================
 Common
==============================*/
main {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
    margin-top: 60px;
    box-sizing: border-box;
}
.reverse {
	flex-direction: row-reverse;
}
.block {
	width: 90%;
	display: flex;
        flex-wrap: wrap;
    margin: 0 auto;
}
.titleCommon {
    width: 100%;
    display: flex;
		justify-content: center;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
}
.titleCommon span {
    width: 80%;
    display: block;
    margin: 0 auto 10px;
    font: 200 1.6em/0.7em futura-pt, Arial, Helvetica, sans-serif;
    text-align: center;
    border-bottom-style: solid;
    border-bottom-width: 1px;
}
.titleCommon h2 {
    width: 100%;
    display: block;
    font: 400 1.2em/1.2em "リュウミン R-KL","Ryumin Regular KL","游明朝","Yu Mincho","ヒラギノ明朝 Pro W3","Hiragino Mincho Pro","ＭＳ Ｐ明朝","MS PMincho",serif;
    text-align: center;
}

/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
メインビジュアル
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#mainVisual {
	position: relative;
	width: 100%;
    height: 50vh;
	display: block;
}
#mainVisual ul.bxslider li {
	position: relative;
}
#mainVisual ul.bxslider li img.image {
	width: 100%;
    height: 50vh;
	display: block;
	object-fit: cover;
	object-position: 50% 50%;
	font-family: 'object-fit: cover; object-position: 50% 50%;';
}
#mainVisual img.copy {
	position: absolute;
    width: 60%;
    top: 20px;
    right: 20px;
    display: block;
	filter: drop-shadow(0px 5px 10px rgba(0,0,0,0.3));
}
#mainVisual a.bnr_monitor_tour {
	position: absolute;
    width: 40%;
    bottom: 15px;
    right: 15px;
    display: block;
	filter: drop-shadow(0px 5px 10px rgba(0,0,0,0.3));
}
#mainVisual a.bnr_monitor_tour img {
	width: 100%;
    display: block;
}

/* PAGER */
#mainVisual .bx-wrapper .bx-pager,
#mainVisual .bx-wrapper .bx-controls-auto {
	position: absolute;
	width: auto;
    bottom: 10px;
    left: 0;
}
#mainVisual .bx-wrapper .bx-pager {
	padding: 0 5px;
	text-align: center;
}
#mainVisual .bx-wrapper .bx-pager .bx-pager-item,
#mainVisual .bx-wrapper .bx-controls-auto .bx-controls-auto-item {
	display: inline-block;
	*zoom: 1;
	*display: inline;
}
#mainVisual .bx-wrapper .bx-pager.bx-default-pager a {
	background: #FFF;
	text-indent: -9999px;
	display: block;
	width: 10px;
	height: 10px;
	margin: 0 4px;
	outline: 0;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
}
#mainVisual .bx-wrapper .bx-pager.bx-default-pager a:hover, 
#mainVisual .bx-wrapper .bx-pager.bx-default-pager a.active {
	background: #68b0c4;
	opacity: 1;
}

/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
メッセージ
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#message {
	width: 100%;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
    padding: 20px 0;
    /*background: url("../images/message_bg.jpg") no-repeat center center;
    background-size: cover;*/
}
#message .block {
    justify-content: space-between;
    align-content: flex-start;
    align-items: flex-start;
}
#message .message_text {
    width: 100%;
    display: flex;
        flex-wrap: wrap;
    margin-bottom: 20px;
}
#message .message_text img {
    width: 70%;
    display: block;
    margin: 10px 0;
}
#message .message_text p {
    width: 100%;
    display: block;
    padding: 10px 0;
    font: 400 1.1em/1.8em "リュウミン R-KL","Ryumin Regular KL","游明朝","Yu Mincho","ヒラギノ明朝 Pro W3","Hiragino Mincho Pro","ＭＳ Ｐ明朝","MS PMincho",serif;
}
#message img {
	width: 70%;
	display: block;
    margin: 0 auto;
	object-fit: contain;
	object-position: 50% 50%;
	font-family: 'object-fit: contain; object-position: 50% 50%;';
}
#message iframe {
	width: 100%;
    aspect-ratio: 16/9;
	display: block;
    margin: 0 auto;
	object-fit: contain;
	object-position: 50% 50%;
	font-family: 'object-fit: contain; object-position: 50% 50%;';
}

/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
ウェルネス今帰仁村おすすめポイント
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#point {
	width: 100%;
	display: flex;
		justify-content: center;
        flex-wrap: wrap;
    padding: 40px 0;
    background: url("../images/point_bg.jpg") no-repeat center center;
    background-size: cover;
}
#point .titleCommon span {
    color: #68b0c4;
    border-bottom-color: #68b0c4;
}
#point .block {
    justify-content: space-between;
    align-content: flex-start;
    align-items: flex-start;
}
#point dl.pointBox {
	width: 90%;
    display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
    margin: 20px auto 10px;
    padding: 20px 30px;
    color: #fff;
    border-radius: 20px;
    background: #68b0c4;
	filter: drop-shadow(0px 5px 10px rgba(0,0,0,0.3));
    box-sizing: border-box;
}
#point dl.pointBox dt {
	width: 100%;
    display: block;
    margin-bottom: 10px;
    font-size: 1.4em;
    font-weight: 700;
    line-height: 1.2em;
    text-align: center;
}
#point dl.pointBox dd {
	width: 100%;
    display: block;
    margin-top: 10px;
    font-size: 1.2em;
    line-height: 1.4em;
    text-align: justify;
}
#point dl.pointBox img {
	width: 100%;
    display: block;
    margin: 0 auto;
}

/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
ご利用シーンに合わせたモデルプラン
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#plan {
	width: 100%;
	display: flex;
		justify-content: center;
        align-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
    padding: 30px 0;
    background: #68b0c4;
}
#plan .titleCommon span {
    color: #fff;
    border-bottom-color: #fff;
}
#plan .titleCommon h2 {
    color: #fff;
}
#plan .planRead {
	width: 90%;
    display: block;
    margin: 20px auto 10px;
    font-size: 1.3em;
    line-height: 1.6em;
    text-align: justify;
    color: #fff;
}
#plan .sceneBlock {
	width: 90%;
	display: flex;
		justify-content: space-between;
        align-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
    margin: 20px auto;
    border-radius: 5px;
    background: #fff;
    filter: drop-shadow(0px 5px 10px rgba(0,0,0,0.1));
}
#plan .paleYellow {
	background: #fffcf0;
}
#plan .sceneBlock .sceneBlock_title {
	width: 100%;
    height: 90px;
	display: flex;
		justify-content: flex-start;
        align-content: center;
        align-items: center;
        /*flex-wrap: wrap;*/
    border-bottom: solid 1px #68b0c4;
}
#plan .sceneBlock .sceneBlock_title .number {
    width: 30%;
    min-width: 70px;
    display: flex;
		justify-content: center;
        align-content: center;
        align-items: center;
        flex-wrap: wrap;
    align-self: stretch;
    padding-bottom: 10px;
    font: 200 1.2em/1.8em futura-pt, Arial, Helvetica, sans-serif;
    text-align: center;
    color: #68b0c4;
    border-right: solid 1px #68b0c4;
    box-sizing: border-box;
}
#plan .sceneBlock .sceneBlock_title .number span {
    width: 100%;
    display: block;
    font-size: 2.4em;
}
#plan .sceneBlock .sceneBlock_title .copy {
	width: auto;
    height: 100%;
    display: flex;
		justify-content: flex-start;
        align-content: center;
        align-items: center;
        flex-wrap: wrap;
    align-self: stretch;
    padding: 0 10px;
    box-sizing: border-box;
}
#plan .sceneBlock .sceneBlock_title .copy h3 {
	width: 100%;
    display: block;
    font-size: 1.4em;
    font-weight: 700;
    line-height: 1.2em;
    color: #68b0c4;
}
#plan .sceneBlock .sceneBlock_title .copy span {
	width: 100%;
    display: block;
    padding: 20px 5px 0;
    font-size: 1em;
    line-height: 1em;
    box-sizing: border-box;
}
#plan .sceneBlock .content {
	width: 100%;
	display: flex;
		justify-content: space-between;
        align-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
    padding: 20px 20px 10px;
}
#plan .sceneBlock .content p {
	margin-bottom: 10px;
    font-size: 1.2em;
    line-height: 1.8em;
    text-align: justify;
}
#plan .sceneBlock .content .photo {
	width: 100%;
    margin-bottom: 20px;
}
#plan .sceneBlock .content .photo span {
	width: 100%;
    display: block;
    margin-top: 10px;
    font-size: 1em;
    line-height: 1.2em;
    text-align: center;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
選べる宿泊施設
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#accom {
	width: 100%;
	display: flex;
		justify-content: center;
        align-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
    padding: 30px 0 10px;
    background: url("../images/point_bg.jpg") no-repeat center center;
    background-size: cover;
}
#accom .titleCommon span {
    color: #bab097;
    border-bottom-color: #bab097;
}
#accom .accomRead {
	width: 90%;
    display: block;
    margin: 20px auto;
    font-size: 1.2em;
    line-height: 1.6em;
    text-align: justify;
}
#accom .accomRead br {
	display: none;
}
#accom ul.accomList {
	width: 90%;
	display: flex;
		justify-content: space-between;
        align-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
    margin: 0 auto;
}
#accom ul.accomList li {
	width: 48%;
    max-width: 280px;
	display: block;
    margin-bottom: 20px;
}
#accom ul.accomList li h3 {
	width: 100%;
	display: block;
    margin-top: 10px;
    font-size: 1.2em;
    line-height: 1.6em;
    text-align: center;
}
#accom ul.accomList li h3 span {
	width: 100%;
	display: block;
    font: italic 1.4em/1.2em futura-pt, Arial, Helvetica, sans-serif;
    color: #bab097;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
体験者の声
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#voice,
#about {
	width: 100%;
	display: flex;
		justify-content: center;
        flex-wrap: wrap;
    padding: 30px 0;
}
#voice .titleCommon span,
#about .titleCommon span {
    color: #68b0c4;
    border-bottom-color: #68b0c4;
}
#voice .block,
#about .block {
    justify-content: space-between;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 20px 0;
}
#voice ul.list {
	width: 100%;
	display: flex;
		justify-content: flex-start;
        align-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
    margin: 20px auto 0;
}
#voice ul.list li {
	width: 100%;
	display: block;
    margin-bottom: 10px;
}
#voice ul.list li .number {
	width: 80px;
    height: 24px;
	display: flex;
		justify-content: center;
        align-content: center;
        align-items: center;
    font: normal 1.2em/1em futura-pt, Arial, Helvetica, sans-serif;
    color: #fff;
    background: #68b0c4;
    box-sizing: border-box;
}
#voice ul.list li p {
	width: 100%;
	display: block;
    padding: 10px 0;
    font-size: 1.2em;
    line-height: 1.6em;
    text-align: justify;
}
#voice ul.list li .who {
	width: 100%;
	display: block;
    font-size: 1em;
    line-height: 1em;
    text-align: right;
    color: #999;
}

/*スライド*/
#voice .slide,
#about .slide {
	width: 100%;
	display: block;
    margin: 0 auto;
}
#voice .slide ul.bxslider2,
#about .slide ul.bxslider3 {
	position: relative;
	width: 100%;
	display: block;
}
#voice .slide ul.bxslider li,
#about .slide ul.bxslider li {
	position: relative;
	width: 100%;
}
#voice .slide ul.bx-pager,
#about .slide ul.bx-pager {
	width: 100%;
	display: flex;
		justify-content: space-between;
		align-content: space-between;
		flex-wrap: wrap;
    margin: 20px 0 0;
	box-sizing: border-box;
}
#voice .slide ul.bx-pager li,
#about .slide ul.bx-pager li {
	width: 18%;
	display: block;
	cursor: pointer;
    font-size: 0;
	box-sizing: border-box;
}
#voice .slide ul.bx-pager li a,
#about .slide ul.bx-pager li a {
	display: block;
	background: #000;
    font-size: 0;
}
#voice .bx-pager-item,
#about .bx-pager-item {
	font-size: 0;
}
#voice .slide ul.bx-pager li a img,
#about .slide ul.bx-pager li a img {
	width: 100%;
	object-fit: contain;
	object-position: 50% 50%;
	font-family: 'object-fit: contain; object-position: 50% 50%;'
}
#voice .slide ul.bx-pager li a img,
#about .slide ul.bx-pager li a img {
	opacity: 0.5;
}
#voice .slide ul.bx-pager li a:active img,
#about .slide ul.bx-pager li a:active img {
	opacity: 1;
}
#voice .slide ul.bx-pager li .active img,
#voice .slide ul.bx-pager li a:hover img,
#about .slide ul.bx-pager li .active img,
#about .slide ul.bx-pager li a:hover img {
 	opacity: 1;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
今帰仁村の魅力
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#about .titleCommon span {
    color: #68b0c4;
    border-bottom-color: #68b0c4;
}
#about dl {
	width: 90%;
	display: flex;
		justify-content: flex-start;
        align-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
    margin: 0 auto;
}
#about dl dt {
	width: 100%;
	display: block;
    margin: 20px 0;
    font: normal 4em/1em futura-pt, Arial, Helvetica, sans-serif;
    text-align: center;
    color: #ddd;
}
#about dl dd {
	width: 100%;
	display: block;
    font-size: 1.2em;
    line-height: 1.6em;
    text-align: justify;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
交通アクセス
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#access {
	width: 100%;
	display: flex;
		justify-content: center;
        flex-wrap: wrap;
    padding: 30px 0;
    background: #f2f8f9;
}
#access .titleCommon span {
    color: #68b0c4;
    border-bottom-color: #68b0c4;
}
#access .block {
    justify-content: space-between;
    align-content: flex-start;
    align-items: flex-start;
    padding: 20px 0;
}
#access h3 {
	width: 100%;
    height: 30px;
	display: flex;
		justify-content: center;
        align-content: center;
        align-items: center;
        flex-wrap: wrap;
    margin-bottom: 20px;
    font-size: 1.2em;
    font-weight: 700;
    line-height: 1em;
    text-align: center;
    color: #fff;
    border-radius: 20px;
    background: #68b0c4;
}
#access h3 img {
	width: 24px;
    height: 24px;
	display: block;
    margin-right: 5px;
}
#access img.root {
	width: 80%;
	display: block;
    margin: 0 auto;
}
#access .time {
	width: 100%;
	display: flex;
		justify-content: center;
        align-content: center;
        align-items: center;
        flex-wrap: wrap;
    margin: 20px 0;
}
#access .time img {
	width: 60%;
	display: block;
    margin: 0 auto 10px;
}
#access .time span {
	width: 100%;
	font-size: 1em;
    line-height: 1.4em;
    text-align: center;
}
#access img.map {
	width: 80%;
	display: block;
    margin: 0 auto;
}
#access .busCopy {
	width: 100%;
	font-size: 1.2em;
    line-height: 1.4em;
    text-align: center;
}
#access .busBox {
	width: 100%;
	display: flex;
		justify-content: space-between;
        align-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
    margin: 20px auto;
    padding: 20px;
    border: solid 1px #68b0c4;
    box-sizing: border-box;
}
#access .busBox img {
	width: 100%;
    display: block;
}
#access dl {
	width: 100%;
	display: flex;
		justify-content: flex-start;
        align-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
}
#access dl dt {
	width: 100%;
	display: block;
    margin: 20px 0 10px;
    font-size: 1.6em;
    font-weight: 700;
    line-height: 1em;
    text-align: center;
    color: #68b0c4;
}
#access dl dt span {
	display: inline-block;
    font-size: 0.8em;
    font-weight: normal;
}
#access dl dd {
	width: 100%;
	display: block;
    margin-bottom: 20px;
    font-size: 1.2em;
    line-height: 1.6em;
    text-align: justify;
}
#access a.btnBus {
	width: 80%;
    max-width: 300px;
    height: 50px;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
    margin: 0 auto;
    padding-right: 10px;
	font-size: 1.2em;
    font-weight: 700;
	line-height: 1em;
    color: #fff;
    border-radius: 5px;
	background: url("../images/arrow_right_w.svg") no-repeat right 10px center #fbaf25;
    background-size: 12px 12px;
    box-sizing: border-box;
}
#access a.btnBus:hover {
	transition: all 200ms;
    opacity: 0.7;
}
#access .naviBox {
	width: 100%;
	display: flex;
		justify-content: center;
        align-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
}
#access .naviBox p {
	width: 100%;
	display: block;
    margin: 20px 0;
    font-size: 1.2em;
    line-height: 1.6em;
    text-align: center;
}
#access .naviBox img {
	width: 80%;
	display: block;
    margin: 0 auto;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【Home】インタビュー
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#homeInterview {
	width: 100%;
	display: flex;
		justify-content: center;
        flex-wrap: wrap;
    padding: 40px 0;
    background: #f2f8f9;
}
#homeInterview .titleCommon span {
    color: #68b0c4;
    border-bottom-color: #68b0c4;
}
#homeInterview h3 {
	width: 100%;
	display: flex;
		justify-content: center;
        align-content: center;
        align-items: center;
        flex-wrap: wrap;
    margin: 20px 0 10px;
    font: 400 1.1em/1.4em "リュウミン R-KL","Ryumin Regular KL","游明朝","Yu Mincho","ヒラギノ明朝 Pro W3","Hiragino Mincho Pro","ＭＳ Ｐ明朝","MS PMincho",serif;
    text-align: center;
    color: #68b0c4;
}
#homeInterview .homeInterview_photo {
    width: 90%;
	display: block;
    margin: 0 auto 20px;
}
#homeInterview .btnBlock {
	width: 100%;
	display: flex;
		justify-content: center;
        flex-wrap: wrap;
}
#homeInterview a.btn {
	width: 60%;
    max-width: 300px;
    height: 50px;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
    margin: 0 auto;
    padding-right: 10px;
	font-size: 1.1em;
    font-weight: 700;
	line-height: 1em;
    color: #fff;
    border-radius: 5px;
	background: url("../images/arrow_right_w.svg") no-repeat right 10px center #68b0c4;
    background-size: 12px 12px;
    box-sizing: border-box;
}
#homeInterview a.btn:hover {
	transition: all 200ms;
    opacity: 0.7;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
インタビュー
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#interview {
	
}
#interview .interviewMain {
	position: relative;
	width: 100%;
	display: block;
}
#interview .interviewMain img.copy {
	position: absolute;
    width: 40%;
    top: 10px;
    left: 10px;
    display: block;
}
#interview .interviewMain img.title {
	position: absolute;
    width: 25%;
    top: 20px;
    right: 0;
    display: block;
}
#interview .interviewMain .name {
	position: absolute;
    width: auto;
    height: 20px;
    bottom: 10px;
    right: 0;
    display: flex;
		justify-content: flex-start;
        align-content: center;
        align-items: center;
        flex-wrap: wrap;
    padding: 0 5px;
    font-size: 0.8em;
    line-height: 1em;
    background: rgba(255,255,255,0.9);
    box-sizing: border-box;
}

/*プロフィール*/
#interview .interviewBlock {
	width: 90%;
	display: flex;
		justify-content: space-between;
        align-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
    margin: 0 auto;
    padding: 20px 0;
}
#interview .interviewBlock .read {
	width: 100%;
	display: block;
    margin: 10px 0;
    font: 400 1.4em/1.6em "リュウミン R-KL","Ryumin Regular KL","游明朝","Yu Mincho","ヒラギノ明朝 Pro W3","Hiragino Mincho Pro","ＭＳ Ｐ明朝","MS PMincho",serif;
    text-align: left;
    color: #68b0c4;
}
#interview .interviewBlock .read br {
	display: none;
}
#interview .interviewBlock .text {
	width: 100%;
	display: block;
    margin-bottom: 20px;
    font-size: 1.2em;
    line-height: 1.6em;
    text-align: justify;
}
#interview .interviewBlock .order_yokozawa {
    order: 3;
}
#interview .interviewBlock .order_kotaki {
    order: 1;
}
#interview .interviewBlock .order_uchida {
    order: 2;
}
#interview .interviewBlock dl.profile {
	position: relative;
    width: 100%;
	display: flex;
		justify-content: space-between;
        align-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
    margin: 10px 0;
}
#interview .interviewBlock dl.profile img {
	position: absolute;
    width: 20%;
	display: block;
    top: -10px;
    left: 0;
}
#interview .interviewBlock dl.profile dt {
	width: 78%;
	display: flex;
		justify-content: flex-start;
        align-content: flex-end;
        align-items: flex-end;
        flex-wrap: wrap;
    align-self: stretch;
    margin-left: auto;
    color: #68b0c4;
}
#interview .interviewBlock dl.profile dt .title {
	width: 100%;
	display: block;
    font-size: 1em;
    line-height: 1.2em;
}
#interview .interviewBlock dl.profile dt .title br {
	display: none;
}
#interview .interviewBlock dl.profile dt .name {
	width: 100%;
	display: block;
    margin-top: 10px;
    font-size: 1.2em;
    line-height: 1.2em;
}
#interview .interviewBlock dl.profile dt .name b {
	font-size: 1.2em;
}
#interview .interviewBlock dl.profile dd {
	width: 78%;
	display: block;
    margin: 10px 0 0 auto;
    font-size: 1em;
    line-height: 1.6em;
    text-align: justify;
}

/*インタビュー内容*/
#interview .interviewBlock .qaBlock {
	width: 100%;
	display: flex;
		justify-content: flex-start;
        align-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
    margin-bottom: 20px;
}
#interview .interviewBlock .qaBlock .question {
	width: 100%;
    height: 60px;
	display: flex;
		justify-content: flex-start;
        align-content: center;
        align-items: center;
    margin-bottom: 10px;
    padding: 0 10px;
    font-size: 1.2em;
    font-weight: 700;
    line-height: 1.2em;
    color: #fff;
    text-align: justify;
    border-radius: 10px;
    background: #68b0c4;
    box-sizing: border-box;
}
#interview .interviewBlock .qaBlock .question span {
	width: auto;
	display: block;
    margin-right: 10px;
    padding-right: 10px;
    font: normal 1.6em/1em futura-pt, Arial, Helvetica, sans-serif;
    text-align: center;
    border-right: solid 1px #fff;
    background: #68b0c4;
}
#interview .interviewBlock .answerBox {
	width: 100%;
	display: flex;
		justify-content: space-between;
        align-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
}
#interview .interviewBlock .answerBox img {
	width: 80%;
	display: block;
    margin: 10px auto;
}
#interview .interviewBlock .answerBox p {
	width: 100%;
	display: block;
    padding: 10px 0;
    font-size: 1.2em;
    line-height: 1.6em;
    text-align: justify;
}
#interview .interviewBlock .answerBox p .marker {
    background: -webkit-linear-gradient(transparent 50%, #f6ff5f 50%);
    background: -o-linear-gradient(transparent 50%, #f6ff5f 50%);
    background: linear-gradient(transparent 50%, #f6ff5f 50%);
}
#interview .interviewBlock .answerBox .half {
	width: 100%;
}
#interview .interviewBlock .answerBox p .name {
	width: auto;
	display: block;
    margin-bottom: 10px;
    font-size: 1em;
    line-height: 1em;
    color: #68b0c4;
}
#interview .interviewBlock img.lastPhoto {
	width: 100%;
	display: block;
    margin: 0 auto;
}

/*戻るボタン*/
#interview .backBlock {
	width: 100%;
	display: flex;
		justify-content: center;
        flex-wrap: wrap;
    padding: 30px 0;
    background: #68b0c4;
}
#interview a.btnBack {
	width: 50%;
    height: 50px;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
    margin: 0 auto;
	font-size: 1.2em;
	line-height: 1em;
    color: #68b0c4;
    border-radius: 5px;
	background: #fff;
    box-sizing: border-box;
}
#interview a.btnBack:hover {
	transition: all 200ms;
    opacity: 0.7;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
　お問い合わせ
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#contact {
	width: 100%;
	display: flex;
		justify-content: center;
        flex-wrap: wrap;
    padding: 30px 0 10px;
    background: #68b0c4;
}
#contact .titleCommon span {
    color: #fff;
    border-bottom-color: #fff;
}
#contact .titleCommon h2 {
    color: #fff;
}
#contact .block {
    justify-content: space-between;
    align-content: flex-start;
    align-items: flex-start;
    padding: 20px 0;
}
#contact a.btnContact {
	width: 90%;
    height: 60px;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
    margin: 0 auto;
	font-size: 1.2em;
    font-weight: 700;
	line-height: 1em;
    color: #68b0c4;
    border-radius: 5px;
	background: #fff;
    box-sizing: border-box;
}
#contact a.btnContact img {
	width: 30px;
    height: 30px;
	display: block;
    margin-right: 5px;
}
#contact a.btnContact:hover {
	transition: all 200ms;
    opacity: 0.7;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
　Footer
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
footer {
	width: 100%;
	display: block;
    padding: 20px 0;
}
footer #page-top{
	position: fixed;
	width: 40px;
	height: 40px;
	right: 5px;
	bottom: 70px;
	z-index: 10000;
    border: solid 1px #fff;
	border-radius: 20px;
	background: #68b0c4;
    box-sizing: border-box;
}
footer section {
	position: relative;
    width: 90%;
	display: flex;
		justify-content: center;
		align-content: flex-end;
		align-items: flex-end;
		flex-wrap: wrap;
	margin: 0 auto;
	box-sizing: border-box;
}
footer section .copy {
	width: 100%;
	display: flex;
		justify-content: center;
		flex-wrap: wrap;
    margin-bottom: 20px;
}
footer section .copy img {
	width: 50%;
	display: block;
    margin: 10px auto;;
}
footer section .copy span {
	width: 100%;
	display: block;
    font-size: 1.2em;
	line-height: 1.2em;
    text-align: center;
}
footer section address {
	width: 100%;
	display: flex;
		justify-content: center;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
    margin-bottom: 20px;
}
footer section address img {
	width: 60%;
	display: block;
    margin-bottom: 10px;
}
footer section address p {
	width: 100%;
	display: block;
    margin-bottom: 20px;
	font-size: 1em;
	line-height: 1.6em;
    text-align: center;
    box-sizing: border-box;
}
footer section address a.btn {
	width: 70%;
    max-width: 320px;
    height: 50px;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
    padding-right: 20px;
	font-size: 1.2em;
    font-weight: 700;
	line-height: 1em;
    color: #fff;
    border-radius: 5px;
	background: url("../images/icon_link.svg") no-repeat right 10px center #68b0c4;
    background-size: 16px 16px;
    box-sizing: border-box;
}
footer section address a.btn:hover {
	transition: all 200ms;
    opacity: 0.7;
}
footer section .copyright {
	display: block;
	font-size: 0.8em;
    font-weight: normal;
	line-height: 1em;
	text-align: right;
}