/*
Theme Name: Sample Theme
Theme URI: http://www.www.www/
Description: This is my sample theme.
*/

/*---------------------------------
add css standard start
--------------------------------*/

@charset "utf-8";

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size: 100%;
    vertical-align:baseline;
    background:transparent; /*背景色を透明にする初期設定 */
}

html {
  scroll-behavior: smooth;
}

/* 基本 */
body  {font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro','メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
margin:0; padding:0;
overflow-x: hidden;
    position: relative;
   background-color:#fff;
  color: #333;
}

* html body{  
    overflow: hidden;  /* はみ出た部分非表示 */
}  

.wrap {
  overflow: hidden; /*スマホサイトの右に空白が出るので全体を wrapして解決*/
}

img {
  max-width: 100%;
  height:auto;
  margin: 0;
  padding: 0;
  vertical-align: bottom;
}

a  {text-decoration: none;
  color: #000;
  vertical-align:baseline;
    background:transparent;
}

a img  {border: none}

a:hover img {
  opacity: 0.6; /* マウスオーバー時透過 */
  filter: alpha(opacity=60);
}

/* clearfix */
.cf { zoom: 1; }
.cf:before, .cf:after { content: ""; display: table; }
.cf:after { clear: both; }

.both {
  clear: both;
}

.inline_block {  
  display: inline-block;  
  *display: inline;  
  *zoom: 1;  
}

/* reCAPTCHA非表示 */	
.grecaptcha-badge { visibility: hidden; }

/*---------------------------------
add css standard end
add css layout start
--------------------------------*/

/* /_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_
 共通設定およびスマートフォン向けのスタイル
/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_*/

h1 a:hover img {
  opacity: 1.0; /* マウスオーバー時透過 しない*/
}

h3.page {
  position: relative;
  padding: 1rem .5rem;
	font-size:1.3em;
}

h3.page:before,
h3.page:after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  content: '';
  background-image: -webkit-gradient(linear, right top, left top, from(#ffffff), to(#0063A7));
  background-image: -webkit-linear-gradient(right, #ffffff 0%, #0063A7 100%);
  background-image: linear-gradient(to left, #ffffff 0%, #0063A7 100%);
}

h3.page:before {
  top: 0;
}

h3.page:after {
  bottom: 0;
}



h4.left_line2 {
	margin:20px 0;
	font-weight:bold;
	border-left:10px solid #0063A7;
	padding-left:20px;
}


/* header */

#header {
  width:100%;
  padding:5px 0 10px 0;
border-top:solid 5px #0063A7;
	box-shadow:0 2px 4px;
	position: fixed;
	z-index:9999;
	background-color:#fff;
  }

.header_inner {
  width:95%;
  margin:0 auto;
  }
.header_inner_left {
width:60%;	
	float:left;
		padding:10px 0 5px 0;
}
.header_inner_right_mobile {
width:30%;	
	float:right;
	text-align:right;
}
.header_inner_right_pc {
display:none;
}

/*ハンバーガーメニューここから*/
/*============
nav
=============*/
nav#hmg2020 {
  display: block;
  position: fixed;
  top: 0;
  left: -300px;
  bottom: 0;
  width: 300px;
  background: #ffffff;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 3;
  opacity: 0;
}

.open nav#hmg2020 {
  left: 0;
  opacity: 1;
  width: 70%;
}

nav#hmg2020 .inner {
  padding: 15px;
}

nav#hmg2020 .inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav#hmg2020 .inner ul li {
  position: relative;
  margin: 0;
  border-bottom: 1px solid #333;
  text-align: left;
}

nav#hmg2020 .inner ul li a {
  display: block;
  color: #333;
  font-size: 14px;
  padding: 0.7em;
  text-decoration: none;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}

nav#hmg2020 .inner ul li a:hover {
  background: #e4e4e4;
}

.hbg_logo {  /* ハンバーガーメニュー下のロゴ*/
	width:100%;
	text-align:left;
}
.hbg_logo img {
	width:80%;
padding:10px 0;
}
.hbg_tel {  /* ハンバーガーメニュー下のTEL*/
	width:100%;
	text-align:left;
}
.hbg_tel a{
	color:#D60038;
	 font-family: 游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN","Hiragino Mincho Pro",HGS明朝E,メイリオ,Meiryo,serif;
	font-size:1.6em;
}

@media screen and (max-width: 767px) {
  nav#hmg2020 {
    left: -220px;
    width: 220px;
  }
}

/*============
.toggle_btn
=============*/
.toggle_btn {
  display: block;
  position: fixed;
  top: 25px;
  right: 18px;
  width: 30px;
  height: 30px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 3;
}

.toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #333;
  border-radius: 4px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.toggle_btn span:nth-child(1) {
  top: 1px;
}

.toggle_btn span:nth-child(2) {
  top: 10px;
}

.toggle_btn span:nth-child(3) {
  top: 20px;
}

.toggle_btn span:nth-child(4) {
  background-color: #fff;
  top: 23px;
  font-size: 10px;
}

.open .toggle_btn span {
  background-color: #fff;
}

.open .toggle_btn span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(-315deg);
  transform: translateY(10px) rotate(-315deg);
}

.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}

.open .toggle_btn span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(315deg);
  transform: translateY(-10px) rotate(315deg);
}

.open .toggle_btn span:nth-child(4) {
  opacity: 0;
}

/*============
#mask
=============*/
#mask {
  display: none;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #09395A;
  opacity: 0.8;
  z-index: 2;
  cursor: pointer;
}

/* スマートフォン2階層目 */
nav#hmg2020 .inner ul li:hover ul.second-level {
  display: block;
}

nav#hmg2020 .inner ul li ul.second-level {
  display: none;
  position: relative;
  padding: 0;
  z-index: 1001;
}

nav#hmg2020 .inner ul li ul.second-level li a {
  padding-left: 15px;
}

.drawer_menu .drawer_nav_wrapper.open {
  -webkit-transform: translate(0);
          transform: translate(0);
}

.drawer_menu.left .drawer_button {
  right: auto;
  left: 32px;
}

.drawer_menu.left .drawer_nav_wrapper {
  -webkit-transform: translate(-250px);
          transform: translate(-250px);
  right: auto;
  left: 0;
}

.drawer_menu.left .drawer_nav_wrapper.open {
  -webkit-transform: translate(0);
          transform: translate(0);
}

.pc-hidden {
  text-align: center;
}

.touch-btn {
  color: #555;
  position: absolute;
  top: 0.25rem;
  right: 2%;
  display: block;
  z-index: 10;
  width: 50px;
  height: 50px;
  text-align: center;
  vertical-align: middle;
}

i.fa-chevron-down {
  padding-top: 10px;
}

/* ハンバーガーメニューここまで*/


/* トップページ*/

#main {
  width:100%;
	margin:70px auto 0 auto;
	font-size:0.9em;
  }

/* トップページ01　画像*/

#top_01big {
	width:100%;
	background-image:url(https://saihoo.net/wp-content/uploads/top_bg03.jpg);
	background-size:cover;
}
.blackbox {
	width:100%;
	height:100%;
	background-color:rgba(0,0,0,0.4);
	color:#fff;
	text-align:center;
	padding:30px 0;
}
.top_01_1 {
	font-size:1.5em;
	font-weight:bold;
	font-family: 'Noto Sans JP', sans-serif;
}
.top_01_hr {
width:90%;
	margin:10px auto;
}
.top_01_2 {
font-size:0.9em;	
	margin-bottom:30px;
}
 /*白枠ボタン*/
.btn06{
  position: relative;
  text-decoration: none;
  display: inline-block;
  border:1px solid #fff;
  color:#fff;
	font-size:0.9em;	
    padding: 5px 80px 5px 70px;
    text-align: center;
    outline: none;
    transition: ease .2s;
}
.btn06:hover{
background-color:#fff;
	color:#09395A;
}
.btnarrow1::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;
}
.btnarrow1:hover::after{
    right: 11px;
	border-top: 2px solid #09395A;
    border-right: 2px solid #09395A;
}

 /*黒枠ボタン*/
.btn07{
  position: relative;
  text-decoration: none;
  display: inline-block;
  border:1px solid #333;
  color:#333;
	font-size:0.9em;	
    padding: 5px 80px 5px 70px;
    text-align: center;
    outline: none;
    transition: ease .2s;
}
.btn06:hover{
background-color:#333;
	color:#fff;
}
.btnarrow1::after{
    content: '';
    /*絶対配置で矢印の位置を決める*/
  position: absolute;
    top:42%;
    right: 13px;
    /*矢印の形状*/
    width: 5px;
    height: 5px;
    border-top: 2px solid #09395A;
    border-right: 2px solid #09395A;
    transform: rotate(45deg);
    /*アニメーションの指定*/
    transition: all .3s;
}
.btnarrow1:hover::after{
    right: 11px;
	border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}

/* トップページ02　大メニュー*/

#top_02menu {
	width:100%;
	background-color:#09395A;
}
.top_02menu_inner {
	width:100%;
	margin:0 auto;
}
.top_02menu_inner_s {
	width:50%;
float:left;
}

/* トップページ03　cafe*/
#top_03cafe {
	width:100%;
	margin:0 auto;
	text-align:center;
	padding:100px 0;
}
.top_03cafe_1 img {
width:70%;	
}

.top_03cafe_2 {
width:95%;	
	margin:0 auto;
padding:30px 0;
}
.top_03cafe_photo {
	width:100%;
	padding-bottom:30px;
}
.top_03cafe_text {
	width:80%;
	margin:0 auto;
	padding-bottom:30px;
	text-align:left;
}
.top_03cafe_text img {
	width:20%;
}

.insta_sample {
	width:100%;
	margin:10px auto;
	text-align:center;
}
.insta_sample img {
width:95%;	
	padding:2px;
}

/* トップページ03　watercoat*/
#top_03coat {
	width:100%;
	text-align:center;
	background-image:url(https://saihoo.net/wp-content/uploads/top_02bg.jpg);
	background-size:100% auto;
	background-repeat:no-repeat;
	background-position:center;
}
#top_03coat1 {
width:100%;
	padding:50px 0 20px 0;
	text-align:center;
	color:#E50012;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight:bold;
	font-size:1.2em;
}
#top_03coat2 {
	width:60%;
	margin:0 auto 50px auto;
}
#top_03coat3_s {
	width:85%;
	margin:0 auto 20px auto;
}
#top_03coat3 {
display:none;
}

/* トップページ04　watercoat*/
#top_04coat {
	width:90%;
margin:20px auto 50px auto;
}

h3.blue {
		padding: 0.5rem 1rem;
  background: #25489C;
		color:#fff;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight:bold;
	margin-bottom:20px;
	}	

.textbox_04coat {
	width:100%;
}

.fukidashi_girl {
		width:95%;
	margin:20px auto 0 auto;
	}
.fukidashi_01 {
		width:25%;
	float:left;
	}
.fukidashi_02 {
		width:75%;
	float:right;
	}
/* ふきだし*/
.balloon1-left {
  position: relative;
  display: inline-block;
  margin: 0 0 0 15px;
  padding: 20px 10px;
  min-width: 120px;
  max-width: 100%;
  color: #fff;
  background: #E50012;
	font-size:0.85em;
	border-radius: 5px;
}

.balloon1-left:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-right: 15px solid #E50012;
}

.balloon1-left p {
  margin: 0;
  padding: 0;
}
/* ふきだしおわり*/

.coat_photobox {
		width:100%;
	}	
	.pic_frame {
		width:50%;
		float:left;
		padding-bottom:10px;
		text-align:center;
	}	
	.pic_frame img {
		width:95%;
	padding-bottom:5px;
	}
.coat_next {
width:100%;
	margin:20px auto 40px auto;
}
 /*青枠ボタン*/
.btn07{
  position: relative;
  text-decoration: none;
  display: inline-block;
  border:1px solid #25489C;
  color:#25489C;
	font-size:0.9em;	
    padding: 5px 80px 5px 20px;
    text-align: center;
    outline: none;
    transition: ease .2s;
}
.btn07:hover{
background-color:#25489C;
	color:#fff;
}
.btnarrow2::after{
    content: '';
    /*絶対配置で矢印の位置を決める*/
  position: absolute;
    top:42%;
    right: 13px;
    /*矢印の形状*/
    width: 5px;
    height: 5px;
    border-top: 2px solid #25489C;
    border-right: 2px solid #25489C;
    transform: rotate(45deg);
    /*アニメーションの指定*/
    transition: all .3s;
}
.btnarrow2:hover::after{
    right: 11px;
	border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}
 /*青枠ボタンEND*/


/* トップページ05　contents*/
#top_05contents {
	width:100%;
background-image:url(https://saihoo.net/wp-content/uploads/top_contents_bg.jpg);
background-attachment:fixed;
	background-size:cover;
	color:#fff;
	padding:50px 0;
}
.contents_box {
	width:100%;
	height:100%;
	text-align:center;
	padding:30px 0;
}

/* トップページ06　SDGs*/
#top_06sdgs {
	width:100%;
	margin:30px auto;
	text-align:center;
}
#top_06sdgs img {
	width:50%;
}

/* footer */

#footer_top {
width:95%;	
margin:200px auto 10px auto;
}
#footer_top img {
width:60%;	
}

#footer {
  width:100%;
  background-color:#0063A7;
  padding:20px 0;
  }

.footer_inner {
  width:80%;
  margin:0 auto;
	color:#fff;
	font-size:0.9em;
  }
.footer_inner a {
	color:#fff;
  }
.footer_inner_menu {
	width:100%;
	margin:0 auto 50px auto;
}
table.footer_menu {
	width:100%;
}
table.footer_menu a:hover {
color:#FFFF00;	
}

table.footer_menu th {
font-family: 'Noto Sans JP', sans-serif;
	text-align:left;
	padding-bottom:20px;
}
table.footer_menu td {
	padding-bottom:20px;
}

.footer_inner_add {
	width:100%;
	margin:0 auto 50px auto;
}
.copy {
	width:80%;
	margin:0 auto;
	color:#fff;
	font-size:0.75em;
}


/* 固定ページ*/

a.anchor{
    display: block;
    padding-top: 70px;
    margin-top: -70px;
}

/* 固定ページ トップ画像*/
#title_img {
	width:100%;
}
#title_img img {
  width: 100%;
  height: 200px;
	object-fit: cover;
	object-position: center;
}
#page_title {
	width:100%;
	background: #0063A7;
margin-bottom:20px;
}
h2.title {
		padding: 0.5rem 1rem;
color:#fff;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight:bold;
	}	
h3.page_h3 {
  position: relative;
  padding: 1.5rem;
  text-align: center;
	font-size:1.3em;
	margin-bottom:30px;
}

h3.page_h3:before {
  position: absolute;
  bottom: 10px;
  left: calc(50% - 30px);
  width: 60px;
  height: 5px;
  content: '';
  border-radius: 3px;
  background: #0063A7;
}

.page_1000 {
	width:90%;
	margin:30px auto 200px auto;
}

/* 固定ページ 会社案内*/
.about_01 {
	width:90%;
	margin:30px auto 200px auto;
}
.rinen {
	width:100%;
	font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
	font-size:2.5em;
	text-align:center;
	color:#09395A;
letter-spacing:0.1em;
}
ul.rinen_s {
width:90%;
	margin:40px auto;
}
ul.rinen_s li {
	list-style-type: none;
	font-size:1.2em;
	font-weight:bold;
	padding-bottom:20px;
}
ul.rinen_s li::before {
  position: relative;
  left: -10px;
 display: inline-block;
width: 15px;
  height: 15px;
 content: '';
 border-radius: 100%;
  background: #E50012;
}

table.gaiyo {
		width:100%;
	margin:40px 0 200px 0;
	font-size:1.0em;
	}
table.gaiyo th {
	display:block;
		width:100%;
padding:15px 0 2px 5px;
	text-align:left;
	font-weight:bold;
	font-family: 'Noto Sans JP', sans-serif;
	}
table.gaiyo td {
	display:block;
		width:100%;
padding:2px 0 15px 5px;
	border-bottom:1px dotted #666;
	}

.about_04 {
	width:90%;
	margin:30px auto 200px auto;
}

/* 固定ページ 事業内容*/

.mizuiro_box {
width:90%;
	margin:20px auto;
	background-color:#ADD8E6;
	padding:15px;
	font-size:1.1em;
}
.contents_photo {
	width:100%;
	margin:0 auto 100px auto;
}
.contents_photo_box {
      display: inline-block;
	margin-bottom:10px;
		text-align:center;
font-size:0.9em;
}
.contents_photo_box p {
margin:5px 0;
}


/* 固定ページ SDGs*/
.sdgs_01top {
width:100%;
	margin:0 auto 20px auto;
	text-align:center;
}
.sdgs_01top img {
	width:80%;
}
.sdgs_02text {
width:100%;
	margin:0 auto;
	text-align:center;	
	font-size:2.3em;
	font-family: 'Noto Sans JP', sans-serif;
}
.sdgs_03text {
width:90%;
	margin:40px auto 100px auto;
	font-weight:bold;
	font-size:1.2em;
	}	
.sdgs_textbox {
	width:100%;
	margin:20px auto;
}
ul.sdgs_torikumi {
	padding-left:15px;
}
.sdgs_image {
	width:100%;
	padding-bottom:50px;
}
.sdgs_image img {
	width:47%;
	padding:5px;
}
.sdgs_what {
	width:95%;
	margin:60px auto;
	text-align:center;
}
.sdgs_what img {
	width:100%;
}

/* /_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_
  Media Queries による切り替え
/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_*/

/* タブレット向けのスタイル：645px ～ 768px */
@media only screen and (min-width: 645px) {
	
	/*  電話はスマホだけ */
	a[href^="tel:"] {
		pointer-events:none;
	}
	
	/* header */

.header_inner_left {
width:25%;	
}
.header_inner_right_mobile {
width:50%;	
}
	.toggle_btn {
  top:25px;
	}
 
/* トップページ*/
	
/* トップページ01　画像*/
	
	#top_01big {
	width:100%;
padding:50px 0;
}
	
.blackbox {
	width:60%;
	height:auto;
	margin:0 auto;
}

/* トップページ02　大メニュー*/
.top_02menu_inner_s {
	width:25%;
}
	
	/* トップページ03　cafe*/

.top_03cafe_1 img {
width:30%;	
}

.top_03cafe_photo {
	width:55%;
	float:left;
	padding:0;
}
.top_03cafe_text {
	width:40%;
	float:right;
	padding:0;
}
.top_03cafe_text img {
	width:60px;
}
.insta_sample img {
width:45%;	
}	
	
	
/* トップページ03　watercoat*/
#top_03coat {
	background-position:center 30%;
}
#top_03coat1 {
width:30%;
	float:right;
	padding:200px 70px 0 0;
	text-align:center;
	font-size:1.7em;
}
#top_03coat2 {
	width:60%;
	float:left;
	margin:0;
	text-align:right;
	padding:150px 0 30px 0;
}
	#top_03coat2 img {
		width:70%;
	}
#top_03coat3_s {
	width:90%;
	margin:0 auto 20px auto;
}
#top_03coat3_s img {
	width:100%;
}
	
/* トップページ04　watercoat*/
#top_04coat {
margin:30px auto 100px auto;
}
h3.blue {
font-size:1.2em;
	}	
.textbox_04coat {
text-align:center;
}	
	.fukidashi_02 {
		padding-top:30px;
	}
/* ふきだし*/
.balloon1-left {
	font-size:1.2em;
	padding: 20px 30px;
}	
.coat_next {
width:100%;
text-align:right;
}
	
	/* トップページ05　contents*/
.contents_box {
	width:60%;
	height:auto;
	margin:0 auto;
}
	/* トップページ06　SDGs*/
#top_06sdgs img {
	width:30%;
}
	
	/* footer */
#footer_top img {
width:25%;	
}
.footer_inner {
  width:90%;
  }

.footer_inner_menu {
	width:40%;
	float:right;
	margin:40px auto 50px auto;
}

.footer_inner_add {
	width:50%;
	float:left;
	margin:0 auto 50px auto;
}
.copy {
width:90%;
}	
	
/* 固定ページ*/
h2.title {
font-size:1.5em;
	}	
	
	/* 固定ページ 会社案内*/
ul.rinen_s li {
	font-size:1.5em;
}
	table.gaiyo {
	font-size:1.1em;
	}
table.gaiyo th {
	display:table-cell;
		width:30%;
	border-bottom:1px dotted #666;
	}
table.gaiyo td {
	display:table-cell;
		width:70%;
	}
	
/* 固定ページ 事業内容*/

.mizuiro_box {
width:95%;
}
	
.contents_photo_box {
	width:49%;
	margin:0 1px 10px 1px;
	vertical-align:top;
    }	
	
	/* 固定ページ SDGs*/

.sdgs_01top img {
	width:50%;
}
.sdgs_02text {
	font-size:3.0em;
}
.sdgs_03text {
width:80%;
	font-size:1.5em;
	}	
	.sdgs_textbox {
		width:95%;
	font-size:1.2em;
}
.sdgs_image img {
	width:23%;
}
	
  }

/* /_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_
  Media Queries による切り替え
/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_*/

/*  PC向けのスタイル：769px～960px */
@media only screen and (min-width: 1000px) {
	
	/* header */
#header {
  padding:0;
  }
.header_inner {
  width:1000px;
  }
.header_inner_left {
width:200px;
	padding:10px 0;
}
.header_inner_right_mobile {
display:none;
}
.header_inner_right_pc {
display:block;
	width:550px;	
	float:right;
	text-align:right;
}
	
nav{

}
nav ul{
display: table;
margin: 0 auto;
padding: 0;
width:100%;
text-align: center;
}
nav ul li{
display: table-cell;
width:70px;
border-right: 1px dotted #dcdcdc;
	font-size:0.7em;
}
nav ul li:first-child{
border-left: 1px dotted #dcdcdc;
}
nav ul li a{
display: block;
width: 100%;
padding: 20px 0;
text-decoration: none;
color: #333;
	background-color:#fff;
	font-weight:bold;
}
nav ul li a:hover{
background-color:#F5F5F5;
	color: #0063A7;
}

		/* トップページ */
	
#main {
	margin:60px auto 0 auto;
  }
	
	/* トップページ01　画像*/
	#top_01big {
	width:100%;
		height:auto;
		padding:70px 0;
		background-size:cover;
			background-position: right 10% bottom 50%;
}
	.blackbox {
	width:600px;
	padding:50px 0;
}
.top_01_1 {
	font-size:2.5em;
}
.top_01_hr {
	margin:30px auto;
}
.top_01_2 {
font-size:1.1em;	
	margin-bottom:30px;
}
	 /*白枠ボタン*/
.btn06{
	font-size:1.1em;	
    padding: 5px 100px 5px 90px;
}
	
	/* トップページ02　大メニュー*/
.top_02menu_inner {
	width:1000px;
}
.top_02menu_inner_s {
	width:250px;
}
	
	/* トップページ03　cafe*/
.top_03cafe_1 img {
width:300px;	
}
	.top_03cafe_2 {
width:1000px;	
}
	.insta_sample {
	width:1000px;
}
.insta_sample img {
width:23%;	
}

  /* トップページ03　watercoat*/
#top_03coat {
	background-position:center 230px;
}
#top_03coat1 {
width:50%;
	padding:200px 0 0 0;
	text-align:left;
	font-size:1.7em;
}
#top_03coat2 {
	width:50%;
	margin:0;
	text-align:right;
	padding:150px 0 30px 0;
}
	#top_03coat2 img {
		width:300px;
	}
#top_03coat3 {
	display:block;
	width:900px;
	margin:0 auto 20px auto;
}
#top_03coat3_s {
display:none;
}	
	
/* トップページ04　watercoat*/
#top_04coat {
	width:1000px;
}
.fukidashi_girl {
		width:900px;
	}
.fukidashi_01 {
		width:150px;
	}	
	.fukidashi_02 {
		width:750px;
	}	
/* ふきだし*/
.balloon1-left {
	font-size:1.2em;
	padding: 20px 30px;
}	
.coat_photobox {
		width:1000px;
	}	
	.pic_frame {
		width:250px;
		padding-bottom:30px;
	}	
/* トップページ05　contents*/
	.contents_box {
	width:600px;
	padding:50px 0;
}	
/* トップページ06　SDGs*/
#top_06sdgs img {
	width:300px;
}	
		/* footer */
#footer_top {
  width:1000px;
  }
#footer_top img {
  width:200px;
  }
	
	.footer_inner {
  width:1000px;
		font-size:0.85em;
  }

.footer_inner_menu {
	width:300px;
	margin:70px auto 50px auto;
}

.footer_inner_add {
	width:500px;
}
.copy {
width:1000px;
}	
	
/* 固定ページ*/
	.page_1000 {
	width:1000px;
}	
	

/* 固定ページ トップ画像*/
#title_img img {
  width: 100%;
  height: 300px;
}
h2.title {
	width:1000px;
	margin:0 auto;
	}	

	
/* 固定ページ 会社案内*/
.about_01 {
	width:800px;
}	
	
	ul.rinen_s {
width:600px;
}
	
	.about_04 {
	width:500px;
}	
	
	/* 固定ページ 事業内容*/

.mizuiro_box {
width:960px;
	padding:15px;
}
	.contents_photo {
		width:980px;
	}
	.contents_photo_box {
		width:485px;
		font-size:0.85em;
    }	

	/* 固定ページ SDGs*/

.sdgs_01top img {
	width:300px;
}
.sdgs_02text {
width:100%;
	margin:0 auto;
	text-align:center;	
	font-size:2.3em;
	font-family: 'Noto Sans JP', sans-serif;
}
.sdgs_03text {
width:700px;
	font-size:1.2em;
	}		
.sdgs_image img {
	width:200px;
	padding:20px;
}	
.sdgs_what img {
	width:500px;
}	
	
	
	
	
  }