@charset "utf-8";


/* ----------------------------------------------------------------------
	
	 スパホスピタリティー フレーム　css
	
---------------------------------------------------------------------- */


/* - 共通内容
---------------------------- */


html {
	/*-webkit-font-smoothing: antialiased;*/
	font-size: 62.5%;
}


body {
	font-size: 100%;
	font-family: 'Noto Serif JP', 'Yu Gothic', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', sans-serif;
	color:#555;
	/*-webkit-font-smoothing: subpixel-antialiased;*/
	word-wrap: break-word;
  overflow-wrap: break-word;
  background-color: #F9F9F9;
  line-height: 1.6;
  position: relative;
}


a {
	text-decoration:none;
	color:#555;
}

img {
	max-width: 100%;
  width: 100%;
	height: auto;
	border: 0;
	vertical-align: top;
}

.logo img {
  width: 95%;
	margin-top: 7px;
}

br.sp {
	display:none;
}


i {
  margin-right: 0.4em;
}
#wrapper {
	width:100%;
	position:relative;
	font-size: 1.5rem;
}

#wrapper_nonanimation {
	width:100%;
	position:relative;
	font-size: 1.5rem;
}

#wrapper * { box-sizing: border-box; }


.note > li {
  display: table;
  font-size: 1.2rem;
}

.note > li + li {
  margin-top: 8px;
}

.note > li > span {
  display: table-cell;
}

.note > li > span.cap {
  white-space: nowrap;
}

.center {
  text-align: center;
}

.dot_list > li {
  padding-left: 1em;
  text-indent: -1em;
}

.dot_list > li + li {
  margin-top: 3px;
}

/* ------------------------------------------------------------

	共通パーツなど

------------------------------------------------------------ */

.font_eb {
  font-family: 'EB Garamond', serif;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.font_nunito {
  font-family: 'Nunito', serif;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.common_btn a {
  position: relative;
  border: 1px solid #ababab;
  padding: 15px 5px;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  color: #666;
  outline: none;
  transition: all .2s linear;
  line-height: 1.2;
  font-size: 1.8rem;
  max-width: 300px;
  border-radius: 6px;
  width: 100%;
}

.common_btn.wide a {
  padding: 20px 5px;
}


.common_btn:not(.icon) a i {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  font-size: 1.4rem;
}


.common_btn a:hover{
	background:#666;
	color:#fff;
  border: 1px solid #666;
}

/* - in view 設定
---------------------------- */

div.box {
	position:relative;
}

.fade-pre {
	opacity: 0;
	transform: translateY(15px);
	-moz-transform: translateY(15px);
	
	transition:all .5s ease 0.5s;
	-moz-transition: all .5s ease 0.5s;
}

.fade-work {
	opacity: 0;
	transform: translateY(15px);
	-moz-transform: translateY(15px);
	
	transition:all .8s ease 0s;
	-moz-transition: all .8s ease 0s;
}

/* - TOP フェードイン
---------------------------- */

.in_fade {
	animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

/*フェードイン　設定*/

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}


/*========= ローディング画面のためのCSS ===============*/
#splash_sec {
	position: fixed;
	width: 100%;
	height: 100%;
	background: #f4f3f2;
	z-index: 9999999;
	text-align:center;
	color:#666;
  font-size: 2rem;
  top: 0;
  left: 0;
}

#splash-logo_sec {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/*========= 画面遷移のためのCSS ===============*/

/*画面遷移アニメーション*/
.splashbg_sec{
    display: none;
}

/*bodyにappearクラスがついたら出現*/
body.appear .splashbg_sec{
  display: block;
  content: "";
  position:fixed;
  z-index: 1200;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  transform: scaleX(0);
  background-color: #ede8e3;/*伸びる背景色の設定*/
  animation-name:PageAnime;
  animation-duration:1.2s;
  animation-timing-function:ease-in-out;
  animation-fill-mode:forwards;
}

@keyframes PageAnime{
	0% {
		transform-origin:left;
		transform:scaleX(0);
	}
	50% {
		transform-origin:left;
		transform:scaleX(1);
	}
	50.001% {
		transform-origin:right;
	}
	100% {
		transform-origin:right;
		transform:scaleX(0);
	}
}


.sec #wrapper {
	opacity: 0;
}


/*bodyにappearクラスがついたら出現*/
body.appear.sec #wrapper{
	animation-name:PageAnimeAppear;
	animation-duration:1s;
	animation-delay: 0.8s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes PageAnimeAppear{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
}
}



/* ------------------------------------------------------------

	ヘッダー

------------------------------------------------------------ */

#main_header {
  position: absolute;
  top: -100px;
  z-index: 1011;
  width: 100%;
  margin-top: 100px;
  background: #000;
}

#main_header > .content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px 0 10px;
  /*padding-bottom: 0;*/
}


#main_header > .content > .logo {
 /* font-family: 'EB Garamond', serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-shadow: 1px 2px 4px rgb(0 0 0 / 20%);*/
  width:280px
}

#main_header > .content > .logo a {
  font-size: 2.6rem;
  color: #FFF;
}

#main_header > .content > .menu_area > ul {
  display: flex;
}

#main_header > .content > .menu_area > ul > li {
  margin-left: 25px;
  line-height: 1.2;
}

#main_header > .content > .menu_area > ul > li:first-child {
  margin-left: 0;
}

#main_header > .content > .menu_area > ul > li > a {
  color: #FFF;
  text-shadow: 1px 2px 4px rgb(0 0 0 / 25%);
  /*font-weight: bold;*/
  font-size: 1.5rem;
  /*font-size: 12px !important;*/
}


#main_header > .content > .menu_area > ul > li.ec {
  margin-left: 45px;
    margin-bottom: 3px;
}

#main_header > .content > .menu_area > ul > li.ec > a {
  border: 1px solid #FFF;
  padding: 7px 15px;
  font-family: 'EB Garamond', serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  font-size: 1.6rem;
}

.simple #main_header > .content > .logo a {
  color: #555;
  text-shadow: none;
}

.simple #main_header > .content > .menu_area > ul > li > a {
  /*color: #555;*/
  text-shadow: none;
}

.simple #main_header > .content > .menu_area > ul > li.ec > a {
  border: 1px solid #666;
}


/* ヘッダー固定後*/

.header_area.fixed {
	top: 0;
	margin-top:0;
    position: fixed;
	/*background-color:#0c0c0c;*/
	background-color:#FFF;
	border-bottom:1px solid #888;
    transition: top 0.4s ease-in ;
    -webkit-transition: top 0.4s ease-in ;
    -moz-transition: top 0.4s ease-in ;
}

.header_area.fixed .menu_inner {
	padding:10px 10px 10px 20px;
}


.header_area.fixed .menu_inner .logo_block {
	width:80px;
}


.header_area.fixed .menu_inner .menu_block {
	text-align:right;
	display:table-cell;
	vertical-align:middle;
	box-sizing:border-box;	
	padding-top:0;	
}


/* - SP時メインメニュー
---------------------------- */

#sp_nav { display: none; }


#g-nav{
  position:fixed;
  z-index: -1;
  opacity: 0;
  display: none;
  top:0;
  left: 0;
  width:100%;
  height: 100vh;
  background:rgba(255,255,255,0.9);
  transition: all 0.3s;
}

#g-nav.panelactive{
	opacity: 1;
  display: block;
  animation: obj_fade_in 0.3s ease-in-out;
	z-index:1200;
}

@keyframes obj_fade_in {
    from{ opacity: 0; }
    to{ opacity: 1; }
}


#g-nav.panelactive #g-nav-list{
    position: fixed;
    z-index: 1200; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}


#g-nav ul {
    display: none;
    position: absolute;
    z-index: 1200;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

#g-nav.panelactive ul {
    display: block;
}

/*リストのレイアウト設定*/

#g-nav li{
  list-style: none;
  text-align: center; 
}

#g-nav li a{
	color: #666;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
  z-index: 9999;
	top:10px;
	right: 10px;
	cursor: pointer;
  width: 50px;
  height:50px;
}
	

.openbtn span{
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #FFF;
  width: 45%;
}

.simple .openbtn span {
  background-color: #666;
}

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

.openbtn.active span {
  background-color: #666;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 14px;
    transform: translateY(6px) rotate(-45deg);
    width: 45%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 14px;
    transform: translateY(-6px) rotate(45deg);
    width: 45%;
}


/* ------------------------------------------------------------

	精油へのこだわり

------------------------------------------------------------ */

#oil_link {
  padding: 80px 0;
  background-color: #FFF;
}

#oil_link > .title {
  font-size: 3rem;
  text-align: center;
}

#oil_link > .content {
  display: flex;
  max-width: 980px;
  margin: 0 auto;
  width: 100%;
  justify-content: center;
  padding: 0 30px;
}

#oil_link > .content > div {
  /*text-align: center;*/
  width: calc(33.33% - 120px / 3 );
  margin-right: 60px;
}

#oil_link > .content > div:nth-child(3n) {
  margin-right: 0;
}

#oil_link > .content > div a {
  display: block;
  position: relative;
}

#oil_link > .content > div a img {
  border-radius: 8px;
  
}

#oil_link > .content > div a .caption {
  font-size: 3.4rem;
  position: absolute;
  top: 15px;
  left: 20px;
  color: #FFF;
  text-shadow: 1px 2px 4px rgb(0 0 0 / 30%);
  /*transform: translateY(-50%);*/
}

#oil_link > .content > div a .caption > span {
  display: block;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}


#oil_link > .content > div a .view {
  position: absolute;
  bottom: 15px;
  right: 15px;
  color: #FFF;
}

#oil_link > .content > div a .view > span {
  display: inline-block;
  border: 1px solid #FFF;
  line-height: 1.2;
  border-radius: 20px;
  padding: 4px 25px;
  font-size: 1.2rem;
}

#oil_link > .content > div a .view > span i {
  font-size: 1.1rem;
}

#oil_link > .content > div a > .img {
  position: relative;
}

#oil_link > .content > div a > .img .cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.2);
  border-radius: 8px;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  /*opacity: 0;*/
}


#oil_link > .content > div a:hover > .img .cover {
  background-color: rgba(0,0,0,0.4);
}

#oil_link > .content > div a > .img .cover > .inner {
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
  color: #FFF;
}
#oil_link > .content > div a > .img .cover > .inner > span {
  display: inline-block;
  line-height: 1.2;
  border: 1px solid #FFF;
  padding: 8px 15px;
  font-weight: bold;
  font-size: 1.3rem;
  border-radius: 4px;
}

#oil_link > .online_link {
  max-width: 980px;
  margin: 0 auto;
  width: 100%;
  margin-top: 60px;
  padding: 0 30px;
}

#oil_link > .online_link > a {
  display: block;
  color: #FFF;
}

#oil_link > .online_link > a > .content {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../images/common/bg_online.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 240px;
  border-radius: 8px;
  position: relative;
  width: 100%;
}

#oil_link > .online_link > a > .content > .cover {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.2);
  border-radius: 8px;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  top: 0;
  left: 0;
  z-index: 1;
}

#oil_link > .online_link > a:hover > .content > .cover {
  background-color: rgba(0,0,0,0.4);
}

#oil_link > .online_link > a > .content > .caption {
  position: relative;
  z-index: 2;
  font-weight: bold;
  text-align: center;
}

#oil_link > .online_link > a > .content > .caption > p {
  font-size: 2.4rem;
  text-shadow: 1px 2px 4px rgb(0 0 0 / 30%);
}

#oil_link > .online_link > a > .content > .caption > p > span {
  display: block;
  margin-top: 15px;
}

#oil_link > .online_link > a > .content > .caption > p > span i {
  font-size: 1.2rem;
}

#oil_link > .online_link > a > .content > .caption > p > span > span {
  display: inline-block;
  border: 1px solid #FFF;
  line-height: 1.2;
  border-radius: 20px;
  padding: 4px 25px;
  font-size: 1.4rem;
}

/* ------------------------------------------------------------

	下層ページ　フレームなど

------------------------------------------------------------ */

#contents_body {
  width: 100%;
  position: relative;
  z-index: 1;
}

#contents_body .section {
  padding: 100px 30px;
}

#contents_body .section.full {
  padding: 100px 0;
}


.simple #contents_body {
  padding: 0 20px 80px;
  margin-bottom: 80px;
}

#contents_body .main_content {
  max-width: 980px;
  margin: 0 auto;
}

/* - タイトル類
---------------------------- */

.title_type1 {
  width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 460px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #FFF;
}


.title_type1 > .cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.45);
  z-index: 2;
}

.title_type1 > .title {
  position: relative;
  z-index: 10;
}

.title_type1 > .title h1 {
  font-size: 3.6rem;
  margin-bottom: 30px;
}

.title_type1 > .title h1.-en {
  font-size: 5.2rem;
}

.title_type1 > .title h1 > span {
  display: block;
  font-size: 1.8rem;
  margin-top: 2px;
  letter-spacing: 0.02em;
}

.title_type1 > .title p {
  font-size: 1.5rem;
/*  font-weight: bold;*/
  line-height: 1.5;
}

.title_type1 > .title p.-en {
  font-size: 1.8rem;
}

.title_type1 > .title br.pc{
  display: block;
}

.title_type1 > .title br.sp{
  display: none;
}

.title_simple {
  padding-top: 140px;
}

.title_simple .title {
  text-align: center;
}

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

.title_simple.left .title {
  text-align: left;
}

.title_simple > .title h1 {
  font-size: 3.2rem;
  margin-bottom: 5px;
}

.title_simple .title p {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.6;
}

.title_simple.left > .title h1 {
  font-size: 2.8rem;
  margin-bottom: 0;
}

.title_simple.left .title p {
  font-size: 1.5rem;
}


.title_simple .title p.-en {
  font-size: 1.8rem;
}

.title_simple .title br.pc{
  display: block;
}

.title_simple .title br.sp{
  display: none;
}


/* - ユニット類
---------------------------- */

.grid_simple {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.section.full .grid_simple {
  max-width: 100%;
}

.grid_simple.reverse {
  flex-direction: row-reverse;
}

.grid_simple > div {
  width: 50%;
}

.grid_simple > .txt {
  margin-right: 30px;
}

.grid_simple > .img {
  margin-left: 30px;
}

.grid_simple.reverse > .txt {
  margin-right: 0;
  margin-left: 30px;
}

.grid_simple.reverse > .img {
  margin-left: 0;
  margin-right: 30px;
}

.grid_simple > .img.radius img {
  border-radius: 8px;
}

.section.full .grid_simple > .txt {
  flex: 0 0 50%;
  padding: 0 50px;
  margin: 0;
}

.section.full .grid_simple > .img {
  margin: 0;
}

.sub_title {
  font-size: 2.2rem;
}

.section_title {
  font-size: 2.8rem;
}

.grid_simple .section_title,
.grid_type1 .section_title,
.item_list .section_title{
  text-align: center;
  font-size: 2.8rem;
}

.section_title.top {
  font-size: 3.2rem;
}

.grid_simple .section_title {
    text-align: left;
    margin-bottom: 35px;
}

.grid_type1 > .content {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 70px;
}

.section.full .grid_type1 > .content {
  max-width: 100%;
}

.grid_type1 > .content > div {
  width: 50%;
}

.grid_type1 > .content > .txt {
  margin-right: 30px;
}

.grid_type1 > .content > .img {
  margin-left: 30px;
}

.section.full .grid_type1 > .content > .txt {
  flex: 0 0 50%;
  padding: 0 50px;
  margin: 0;
}

.section.full .grid_type1 > .content > .img {
  margin: 0;
}

.grid_type1 > .content > .img.radius img {
  border-radius: 8px;
}

.grid_type1.reverse > .content {
  flex-direction: row-reverse;
}

.grid_type1.reverse > .content > .txt {
  margin-right: 0;
  margin-left: 30px;
}

.grid_type1.reverse > .content > .img {
  margin-left: 0;
  margin-right: 30px;
}

.bg_block {
  width: 100%;
  min-height: 380px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}


.item_list > .content {
  display: flex;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.item_list > .content.col3 > div {
  width: calc(33.33% - 80px / 3 );
  margin-right: 40px;
}

.item_list > .content.col3 > div:nth-child(3n) {
  margin-right: 0;
}


.pic_list {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
}

.pic_list > div {
  width: 50%;
}

.pic_list > div:first-child {
  margin-right: 20px;
}

.pic_list > div:last-child {
  margin-left: 20px;
}

/* ------------------------------------------------------------

	フッター

------------------------------------------------------------ */

#footer {
  width: 100%;
}

#footer .footer_top {
  background-color: #F4F3F2;
  padding: 60px 30px;
}

#footer .footer_top > .content {
  display: flex;
  justify-content: center;
}

#footer .footer_top > .content ul.link li a {
  display: table;
  color: #333;
  font-size: 1.4rem;
}

#footer .footer_top > .content ul.link li a > span {
  display: table-cell;
}

#footer .footer_top > .content ul.link li.sub a > span.cap {
  width: 1em;
}

#footer .footer_top > .content ul.link li + li {
  margin-top: 12px;
}

#footer .footer_top > .content .unit {
  margin-left: 60px;
}

#footer .footer_top > .content .unit:first-child {
  margin-left: 0;
}

#footer .footer_top > .content .unit.btn_link{
  align-self: center;
  text-align: center;
}

#footer .footer_top > .content .unit .sns_link > div {
  margin-left: 15px;
  display: inline-block;
}

#footer .footer_top > .content .unit .sns_link > div:first-child {
  margin-left: 0;
}

#footer .footer_top > .content .unit .sns_link a {
  font-size: 3.4rem;
}

#footer .footer_top > .content .unit .sns_link i {
  margin-right: 0;
}

#footer .footer_top > .content .btn_link .shop {
  margin-top: 15px;
}

#footer .footer_top > .content .btn_link .shop a {
  display: block;
  font-size: 1.8rem;
  border: 1px solid #666;
  line-height: 1.3;
  padding: 10px 25px;
  border-radius: 4px;
}

#footer .footer_bottom {
  background-color: #007D65;
  padding: 40px 30px;
  font-family:'YuGothic', 'Yu Gothic', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', sans-serif;
  color: #FFF;
}

#footer .footer_bottom > .content {
  display: flex;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

#footer .footer_bottom > .content .left {
  flex: 0 0 280px;
}

#footer .footer_bottom > .content .logo_area p {
  font-size: 1.8rem;
  text-align: center;
  font-weight: bold;
  margin-top: 20px;
}

#footer .footer_bottom > .content .logo_area p > span {
  display: block;
  font-size: 1.2rem;
}

#footer .footer_bottom > .content .logo_area .btn a {
  display: block;
  position: relative;
  color: #FFF;
  border: 1px solid #FFF;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.2;
  padding: 12px 5px;
  text-align: center;
  margin-top: 30px;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
}

#footer .footer_bottom > .content .logo_area .btn a::after{
  content: '';
  position: absolute;
  top:42%;
  right: 13px;
  width: 5px;
  height: 5px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
}

#footer .footer_bottom > .content .logo_area .btn a:hover {
  color: #007D65;
  background-color: #FFF;
}

#footer .footer_bottom > .content .logo_area .btn a:hover::after {
  border-color: #007D65;
}

#footer .footer_bottom > .content > .right {
  margin-left: 80px;
  flex: 1;
}


#footer .footer_bottom > .content .banner_link a {
  display: block;
  color: #FFF;
  font-size: 1.3rem;
}

#footer .footer_bottom > .content .banner_link {
  display: flex;
  flex-wrap: wrap;
}

#footer .footer_bottom > .content .banner_link > li {
  width: calc(33.33% - 40px / 3 );
  margin-right: 20px;
}

#footer .footer_bottom > .content .banner_link > li:nth-child(3n) {
  margin-right: 0;
}

#footer .footer_bottom > .content .banner_link > li:nth-child(n+4) {
  margin-top: 20px;
}

#footer .footer_bottom > .content .banner_link a img {
  opacity: 1;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
}

#footer .footer_bottom > .content .banner_link a:hover img {
  opacity: 0.7;
}

#footer .footer_bottom > .content .banner_link a .caption {
  margin-top: 8px;
}

#footer .footer_bottom .opt_link {
  text-align: right;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 20px;
  margin-top: 25px;
  border-top: 1px solid #0b6453;
  padding-top: 25px;
}

#footer .footer_bottom .opt_link > ul {
  display: inline-block;
}

#footer .footer_bottom .opt_link > ul li {
  display: inline-block;
}

#footer .footer_bottom .opt_link > ul li + li {
  margin-left: 15px;
}

#footer .footer_bottom .opt_link a {
  color: #FFF;
}

#footer .footer_bottom .opt_link a i {
  font-size: 1.2rem;
  margin-left: 0.3em;
}

@media screen and (max-width: 959px) {
  #footer .footer_bottom > .content {
    flex-direction: column;
    align-items: center;
  }
  
  #footer .footer_bottom > .content .left .logo_area {
    max-width: 270px;
  }
  
  #footer .footer_bottom > .content .left {
    flex: auto;
  }
  
  #footer .footer_bottom > .content > .right {
    margin-left: 0;
    margin-top: 40px;
  }
  
  .section.full .grid_simple > .txt {
    padding: 0 20px;
  }
  
  .section.full .grid_type1 > .content > .txt {
    padding: 0 20px;
  }
  
  .title_simple {
    padding-top: 100px;
  }


}

@media screen and (max-width: 860px) {
  #main_header > .content {
    padding: 10px;
  }
  
  
  #main_header > .content > .menu_area > ul > li {
    margin-left: 10px;
  }
  
  #main_header > .content > .menu_area > ul > li.ec {
    margin-left: 25px;
  }
  
  .title_type1 > .title h1 {
    margin-bottom: 20px
  }


  #oil_link {
    padding: 50px 0;
  }
  
  #oil_link > .content {
    flex-direction: column;
    align-items: center;
  }
  
  #oil_link > .content > div {
    width: 100%;
    max-width: 320px;
    margin: 0;
  }
  
  #oil_link > .content > div + div {
    margin-top: 60px;
  }
  
  #oil_link > .online_link > a > .content {
    height: 320px;
    max-width: 320px;
    margin: 0 auto;
  }
  
  #oil_link > .online_link > a > .content > .caption > p {
    font-size: 2rem;
  }
  
  #footer .footer_top > .content {
    flex-wrap: wrap;
  }
  
  
  #footer .footer_top > .content > .unit {
    margin-left: 0;
    width: calc(50% - 50px / 2 );
    margin-right: 50px;
    max-width: 220px;
  }
  
  #footer .footer_top > .content > .unit:nth-child(2n) {
    margin-right: 0;
  }
  
  #footer .footer_top > .content > .unit:nth-child(3) {
    margin-top: 30px;
    margin-right: 0;
    width: 100%;
  }
  
  #contents_body .section {
    padding: 60px 30px;
  }
  
  #contents_body .section.full {
    padding: 60px 0;
  }
  
  .simple #contents_body {
    padding-bottom: 50px;
  }
  
  .section.full .grid_simple > .txt {
    padding: 0 20px;
  }
  
  .section_title {
    font-size: 2.2rem;
  }
  
  .grid_simple .section_title,
  .grid_type1 .section_title,
  .item_list .section_title{
    font-size: 2.2rem;
  }
  
  .section_title.top {
    font-size: 2.6rem;
  }
  
  .bg_block {
    min-height: 280px;
  }
  
  .title_type1 {
    min-height: 320px;
  }
  
  .title_type1 > .title {
    padding: 0 15px;
  }
  
  .title_type1 > .title h1 {
    font-size: 2.8rem;
  }
  
  .title_type1 > .title h1.-en {
    font-size: 4.2rem;
  }
  
  .title_type1 > .title p {
    font-size: 1.3rem;
  }
  
  .title_type1 > .title br.pc{
    display: none;
  }

  .title_type1 > .title br.sp{
    display: block;
  }
  
  
  
  .grid_type1 > .content {
    flex-direction: column-reverse;
    margin-top: 40px;
  }
  
  .grid_type1 > .content > div {
      width: 100%;
    }

  .grid_type1 > .content > .txt {
    margin-right: 0;
    margin-top: 30px;
  }
  
  .section.full .grid_type1 > .content > .txt {
    margin-top: 30px;
  }

  .grid_type1 > .content > .img {
    margin-left: 0;
  }
  
  .grid_simple {
    flex-direction: column-reverse;
  }
  
  .grid_simple > div {
    width: 100%;
  }
  
  .grid_simple > .txt {
    margin: 0;
    margin-top: 30px;
  }
  
  .section.full .grid_simple > .txt {
    margin-top: 30px;
  }
  
  .grid_simple > .img {
    margin: 0;
  }
  
  .grid_simple.reverse {
    flex-direction: column-reverse;
  }
  
  .grid_simple.reverse > .txt {
    margin: 0;
    margin-top: 30px;
  }

  .grid_simple.reverse > .img {
    margin: 0;
  }
  
  .grid_type1.reverse > .content {
    flex-direction: column-reverse;
  }

  .grid_type1.reverse > .content > .txt {
    margin: 0;
    margin-top: 30px;
  }

  .grid_type1.reverse > .content > .img {
    margin: 0;
  }
  
  .grid_simple .section_title {
    font-size: 2.2rem;
    margin-bottom: 25px;
  }
  
  .item_list > .content {
    flex-direction: column;
  }
  
  .item_list > .content.col3 > div {
    width: 100%;
    margin-right: 0;
  }
  
  .item_list > .content > div + div {
    margin-top: 35px;
  }
  
  .pic_list {
    flex-direction: column;
  }

  .pic_list > div {
    width: 100%;
  }

  .pic_list > div:first-child {
    margin-right: 0;
  }

  .pic_list > div:last-child {
    margin-left: 0;
    margin-top: 20px;
  }
  
  
}

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

#main_header > .content > .menu_area > ul#pc_nav { display: none; }
#sp_nav { display: block; }

#footer .footer_bottom > .content .banner_link > li {
  width: calc(50% - 20px / 2 );
}

#footer .footer_bottom > .content .banner_link > li:nth-child(3n) {
  margin-right: 20px;
}

#footer .footer_bottom > .content .banner_link > li:nth-child(2n) {
  margin-right: 0;
}

#footer .footer_bottom > .content .banner_link > li:nth-child(n+3) {
  margin-top: 20px;
}

}


@media screen and (max-width: 479px) {
  br.sp { display:block; }
  
  .title_simple.left.sm > .title h1 {
    font-size: 2.4rem;
  }

  .title_simple.left.sm .title p {
    font-size: 1.3rem;
  }
  
  #footer .footer_top > .content > .unit {
    width: calc(50% - 20px / 2 );
    margin-right: 20px;
    max-width: 220px;
  }
  
  #footer .footer_top > .content ul.link li a {
    font-size: 1.3rem;
  }
  
  #footer .footer_bottom {
    padding: 40px 15px;
  }
  
  #footer .footer_bottom > .content .banner_link > li {
    width: calc(50% - 10px / 2 );
    margin-right: 10px;
  }

  #footer .footer_bottom > .content .banner_link > li:nth-child(3n) {
    margin-right: 10px;
  }

  #footer .footer_bottom > .content .banner_link > li:nth-child(2n) {
    margin-right: 0;
  }

  #footer .footer_bottom > .content .banner_link > li:nth-child(n+3) {
    margin-top: 20px;
  }

}



  .pc { display:block !important; }
  .sp { display:none !important; }

@media screen and (max-width: 768px){   
.pc { display:none !important; }
.sp { display:block !important; }

}

