@charset "utf-8";

/* 共通 
＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿ */
body { font-family: "MS Pゴシック", Helvetica, Arial, sans-serif; margin: 0; }
img { max-width: 100%; vertical-align: bottom; }

p {
font-size: 14px;
line-height: 1.5em;
margin-top: 0;
font-feature-settings: "palt";
text-align: justify;
text-justify: inter-ideograph;
letter-spacing: 0.5px;
}

a {
font-size: 14px;
line-height: 1.5em;
margin-top: 0;
font-feature-settings: "palt";
text-align: justify;
text-justify: inter-ideograph;
text-decoration: none;
letter-spacing: 0.5px;
}
a:hover { opacity: 0.6; }

ul { margin: 0; padding: 0 }
li { 
font-size: 14px;
line-height: 1.5em;
margin-top: 0;
font-feature-settings: "palt";
text-align: justify;
text-justify: inter-ideograph;
list-style: none;
letter-spacing: 0.5px;
}

table {
font-size: 14px;
line-height: 1.5em;
font-feature-settings: "palt";
text-align: justify;
text-justify: inter-ideograph;
list-style: none;
border-spacing: 0;
letter-spacing: 0.5px;
}

.post-password-form { 
max-width: 630px;
margin: 0 auto;
padding: 80px 15px 0 15px;
}



/* header 
＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿ */
header .wrap { padding: 0 15px; }
header .content {
max-width: 1200px;
margin: 15px auto;
/* postion: -webkit-sticky;
position: sticky; */
top: 0;
}

header .logo { display: none; }
header .logo a { transition: 0.5s; }

@media screen and (max-width: 1000px) {
header .logo { display: block; width: 325px; }
}
@media screen and (max-width: 450px) {
header .logo { width: 300px; }
}
@media screen and (max-width: 400px) {
header .logo { width: 250px; }
}
@media screen and (max-width: 350px) {
header .logo { width: 230px; }
}



/* footer 
＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿ */
footer { background: #fff; }
footer .wrap { padding: 0 15px; }
footer .content { max-width: 1200px; margin: 0 auto; }

footer a { transition: 0.5s; }

.footbox { display: flex; justify-content: space-between; margin-top: 80px; }

.footbox .logo img { width: 100%; max-width: 325px; }

.footbox a { color: #666666; padding-left: 1em; text-indent: -1em; }
.footbox span a { color: #111; padding-left: 0; text-indent: 0; }
.footbox p { color: #666666; margin-bottom: 0; }
.footbox ul:nth-child(4) { padding-right: 15px; }
.footbox li { line-height: 2em; }

.footbox .logo p { margin-bottom: 0; }
.footbox .logo a { display: block; }
.footbox .logo img { margin-bottom: 10px; }

.footbox .tel { margin: 10px auto; }
.footbox .tel img { display: block; max-width: 180px; margin: 0 auto; }

@media screen and (max-width: 1000px) {
footer p { text-align: center; }
.footbox { display: block; }
.footbox .logo { max-width: 325px; margin: 0 auto 30px auto; }
.footbox .logo p { text-align: left; }
footer .footbox ul { display: none; }
}



/* slider 
＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿ */
.zoom_slide {
position: relative;
max-width: 1200px;
height: 580px;
margin: 0 auto;
overflow: hidden;
z-index: -1;
}

.zoom_slide-image {
background-position: center;
background-repeat: no-repeat;
background-size: cover;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
animation: slider-1 24s linear infinite;
}

.zoom_slide .copy {
position: absolute;
display: inline-block;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
z-index: 11;
max-width: 300px;
}

/*　8秒×3枚=24秒 */
.zoom_slide-image:nth-child(1) { background-image: url(../images/slider/pc_slider_03.jpg); animation-delay: -2s; }/* 0秒-(2秒後から開始)=-2 */
.zoom_slide-image:nth-child(2) { background-image: url(../images/slider/pc_slider_02.jpg); animation-delay: 6s; }/* 8秒-(2秒早めて開始)=6 */
.zoom_slide-image:nth-child(3) { background-image: url(../images/slider/pc_slider_01.jpg); animation-delay: 14s; }/* 16秒-(2秒早めて開始)=14 */

@keyframes slider-1 {
  /* 非表示状態からフェードインを開始する */
  0% {
    opacity: 0;
    transform: scale(1); /* ズームのための指定 */
  }
  /* フェードインを完了し完全表示する */
  4.16% {
    opacity: 1;
  }
  /* ここまで完全表示を維持したらフェードアウトを開始する */
  33.33% {
    opacity: 1;
  }
  /* フェードアウトを完了し非表示にする */
  41.66% {
    opacity: 0;
    transform: scale(1.2); /* ズームのための指定 */
  }
  100% {
    opacity: 0;
  }
}

@media screen and (max-width: 767px) {
.zoom_slide { height: 400px; }
}



/* content 
＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿ */
.wrap { padding: 0 15px; }
.content { max-width: 1200px; margin: 0 auto; }



/* aluminum 
＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿ */
.back_sky { 
background-image : url(../images/back_sky.jpg);
background-position: top center;
background-repeat: no-repeat;
background-size: cover;
}
.aluminum { padding: 80px 0; }
.aluminum h2 { max-width: 700px; margin: 0 auto 30px auto; padding: 5px 10px; font-size: 30px; color: #fff; background: #0066CC; text-align: center; }
.aluminum h2 br { display: none; }
.aluminum p { font-size: 18px; line-height: 2em; text-align: center; margin-bottom: 0; }

@media screen and (max-width: 600px) {
.aluminum h2 { font-size: 24px; }
.aluminum h2 br { display: block; }
.aluminum p { font-size: 16px; text-align: left; }
.aluminum p br { display: none; }
}



/* top_link 
＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿ */
.back_01 { 
background-image : url(../images/back_01.jpg);
background-position: top center;
background-repeat: no-repeat;
background-size: cover;
}

.top_link { max-width: 1000px; margin: 0 auto; padding: 80px 0; }

.top_link .box { display: flex; align-items: flex-start; border-top: 1px solid #fff; border-left: 1px solid #fff; }
.top_link .box:nth-of-type(2) { border-bottom: 1px solid #fff; }

.top_link .box a { display: block; width: 100%; transition: 0.5s; }
.top_link .box a:hover { background: rgba(255, 255, 255, 0.7); opacity: 1; }
.top_link .box a:hover .link h2 { color: #111; opacity: 1; }
.top_link .box a:hover .link p { color: #111; opacity: 1; }
.top_link .box a:hover .link img { opacity: 1; }

.top_link .link { display: flex; justify-content: space-between; padding: 10px; border-right: 1px solid #fff; }
.top_link .link h2 { color: #fff; margin-top: 0; }
.top_link .link p { width: 100%; max-width: 200px; color: #fff; margin-bottom: 0; }
.top_link .link img { width: 100%; max-width: 266px; margin-left: 10px; }

@media screen and (max-width: 1025px) {
.top_link { padding: 80px 50px; }	
.top_link .box { display: block; border: none; }
.top_link .box:nth-of-type(2) { border: none; }
.top_link .link { border: 1px solid #fff; padding: 20px; }
.top_link .link:nth-of-type(2) { border-top: none; }
.top_link .link p { max-width: 400px; }
}
@media screen and (max-width: 767px) {
.top_link .link { display: block; }
.top_link .link p { max-width: 100%; margin-bottom: 20px; }
.top_link .link img { display: block; max-width: 100%; margin: 0 auto; }
}
@media screen and (max-width: 500px) {
.top_link { padding: 80px 15px; }	
}




/* top_link 
＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿ */
.back_blue { background: #00A0FF; }

.news_box {
max-width: 900px;
margin: 0 auto;
padding: 80px 0;
}

.news {
padding: 20px 50px 50px 50px;
background: #fff;
display: flex;
justify-content: space-between;
}

.news h2 {
display: flex;
justify-content: space-between;
align-items: center;
margin: 0;
}
.news h2 img { margin-left: 10px; }

.news ul { width: 45%; }
.news ul:nth-of-type(2) { margin-left: 10%; }
.news li { line-height: 2em; border-bottom: 1px solid #111; padding-bottom: 20px; margin-bottom: 20px; }
.news li:last-child { margin-bottom: 0; }

.news a { display: block; color: #111; transition: 0.5s; }
.news a span { display: block; color: #666666; transition: 0.5s; }

@media screen and (max-width: 900px) {
.news { display: block; }
.news ul { width: 100%; margin: 0 auto; }
.news ul:nth-of-type(2) { margin: 50px auto 0 auto; }
}
@media screen and (max-width: 500px) {
.news { padding: 20px 15px 50px 15px; }
}



/* tel 
＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿ */
.back_02 { 
background-image : url(../images/back_02.jpg);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}

.contact { max-width: 350px; margin: 0 auto; padding: 60px 0; }
.contact p { color: #fff; text-align: center; border-top: 1px solid #fff; padding-top: 15px; margin-bottom: 0; }
.contact img { display: block; margin: 0 auto 15px auto; }



/* トップへ戻るボタン 
＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿ */
#page_top{
width: 40px;
height: 40px;
position: fixed;
right: 10px;
bottom: 10px;
background: #3f98ef;
opacity: 0.6;
z-index: 0;
}

#page_top a{
display: block;
width: 40px;
height: 40px;
background-image : url(../images/top.svg);
}



/* お知らせ、日軽新潟通信 
＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿ */
.posts_main { 
background-image : url(../images/posts/posts_main.jpg);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
height: 200px;
padding: 0 15px;
}

.posts_box {
max-width: 1200px;
height: 200px;
margin: 0 auto;
}

.posts_box h2 {
font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
font-size: 36px;
line-height: 1.5em;
color: #fff;
margin: 0;
padding-top: 70px;
text-shadow: 1px 2px 3px #111;
}

.activity_main { 
background-image : url(../images/activity/activity_main.jpg);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
height: 200px;
padding: 0 15px;
}

.activity_box {
max-width: 1200px;
height: 200px;
margin: 0 auto;
}

.activity_box h2 {
font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
font-size: 36px;
line-height: 1.5em;
color: #fff;
margin: 0;
padding-top: 70px;
text-shadow: 1px 2px 3px #111;
}

@media screen and (max-width: 767px) {
.posts_box h2 { text-align: center; }
.activity_box h2 { text-align: center; }
}



/* 一覧、記事 */
.write_list { 
max-width: 800px;
margin: 0 auto;
padding: 80px 0;
}
.write_list ul { padding: 30px; background: #fff; }
.write_list li { padding-bottom: 10px; margin-bottom: 10px; border-bottom: 1px solid #ccc; }
.write_list li:last-child { margin-bottom: 0; }
.write_list li span { display: block; font-size: 14px; margin-bottom: 5px; }
.write_list li a { display: block; font-size: 16px; line-height: 1.5em; color: #111; }

.write_text { 
max-width: 800px;
margin: 0 auto;
padding: 80px 0;
}
.write_text .box {
padding: 30px;
background: #fff;	
}
.write_text .box .day { font-size: 16px; line-height: 1.5em; text-align: right; }
.write_text .box .day a { 
display: inline-block;
width: 150px;
font-weight: bold;
text-align: center;
color: #fff;
background: #00A0FF;
margin-left: 10px;
margin-bottom: 10px;
padding: 5px 10px;
}

.write_text .box h2 { font-size: 30px; font-weight: bold; line-height: 1.5em; margin: 20px 0; }
.write_text .box p { font-size: 18px; line-height: 2em; }
.write_text .box p a { font-size: 18px; font-weight: bold; line-height: 2em; }
.write_text .box img { width: 100%; }

.write_text .box .link { 
display: flex;
justify-content: center;
margin-top: 60px;
}
.write_text .box .link a { 
width: 200px;
font-size: 18px;
font-weight: bold;
line-height: 1.5em;
text-align: center;
color: #fff;
background: #00A0FF;
padding: 10px;
}
.write_text .box .link a:last-child { margin-left: 20px; }
.write_text video { max-width: 100%; }

.page-numbers-box { max-width: 530px; margin: 40px auto 0 auto; padding: 0 15px; }
.page-numbers-box .nav-links { display: flex; justify-content: space-between; align-items: center; }
.page-numbers-box .page-numbers { display: flex; justify-content: center; align-items: center; font-size: 16px; line-height: 1em; width: 100%; max-width: 40px; height: 35px; border: 1px solid #111; margin-right: 1%; color: #111; background: #fff; }
.page-numbers-box .page-numbers:last-child { margin-right: 0; }
.page-numbers-box .prev, .page-numbers-box .next { width: 100%; max-width: 50px; }
.page-numbers-box .current { color: #fff; background: #00A0FF; border: 1px solid #00A0FF; }

.pagenavi {
display: flex;
align-items: center;
justify-content: space-around;
margin: 60px auto 30px auto;
}
.pagenavi a { 
display: table;
font-size: 20px;
font-weight: bold;
text-align: center;
color: #fff;
background: #00A0FF;
padding: 5px 15px;
}

@media screen and (max-width: 767px) {
.write_text .box h2 { font-size: 24px; }
}
@media screen and (max-width: 500px) {
.write_list ul { padding: 30px 15px; }
.write_text .box { padding: 30px 15px; }
.write_text .box .link { display: block; }
.write_text .box .link a { display: block; margin: 0 auto; }
.write_text .box .link a:last-child { margin: 20px auto 0 auto; }
.write_text .box p { font-size: 16px; }
.page-numbers-box .page-numbers { font-size: 14px; }
.page-numbers-box .prev, .page-numbers-box .next { font-size: 12px; }
}



/* 折りたたみボタン */
.ac-box label {
max-width: 800px;
font-size: 30px;
font-weight: bold;
line-height: 1.5em;
text-align: center;
color: #fff!important;
background: #00A0FF;
margin: 40px auto 0 auto;
padding: 5px 10px;
display: block;
border-radius: 10px;
color: #fff;
}

.ac-box label:hover {
opacity: 0.6;
-webkit-transition: all .3s;
transition: all .3s;
}

.ac-box input {
display: none;
}

.ac-box div{
height: 0px;
padding: 0px;
overflow: hidden;
opacity: 0;
transition: 0.5s;
}

.ac-box input:checked ~ div{
max-width: 800px;
height: auto;
margin: 0 auto;
padding: 5px;
opacity: 1;
}

.ac-box ul { margin-top: 20px; padding: 30px; background: #fff; }
.ac-box li { padding-bottom: 10px; margin-bottom: 10px; border-bottom: 1px solid #111; }
.ac-box li:last-child { margin-bottom: 0; }
.ac-box li span { margin-right: 20px; }
.ac-box li a { display: block; font-size: 16px; line-height: 1.5em; color: #111; }

@media screen and (max-width: 767px) {
.ac-box label { font-size: 24px; }
}



/* お知らせ、日軽新潟通信 専用 */
.logo_02 { max-width: 325px; margin: 0 auto; }

.footbox_02 { padding-top: 80px; }
.footbox_02 .logo { max-width: 325px; margin: 0 auto 30px auto; }
.footbox_02 .logo p { text-align: left; margin-bottom: 0; }
.footbox_02 .logo a { display: block; }
.footbox_02 .logo img { margin-bottom: 10px; }
.footbox_02 .copy p { color: #111; text-align: center; }



/* 関係会社
＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿ */
.custom_main { 
background-image : url(../images/custom_main.jpg);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
height: 200px;
padding: 0 15px;
}

.custom_box {
max-width: 1200px;
height: 200px;
margin: 0 auto;
}

.custom_box h2 {
font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
font-size: 36px;
line-height: 1.5em;
color: #fff;
margin: 0;
padding-top: 70px;
text-shadow: 1px 2px 3px #111;
}

@media screen and (max-width: 767px) {
.custom_box h2 { text-align: center; }
}



.back_custom { 
background-image : url(../images/about/back_01.jpg);
background-position: bottom center;
background-repeat: no-repeat;
background-size: cover;
}

.custom { 
max-width: 900px;
margin: 0 auto;
padding: 80px 0;
}
.custom p { font-size: 18px; line-height: 2em; text-align: center; margin-bottom: 0; }
.custom p span br { display: block; }

@media screen and (max-width: 600px) {
.custom p { font-size: 16px; }
.custom p span br { display: none; }
}



.custom_list { 
max-width: 900px;
margin: 0 auto 120px auto;
}

.custom_list h2 { font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif; font-size: 30px; line-height: 1.5em; text-align: center; margin-top: 0; margin-bottom: 30px; }
.custom_list table { width: 100%; font-size: 16px; line-height: 1.5em; border-top: 1px solid #111; margin-bottom: 80px; }
.custom_list th { font-weight: bold; vertical-align: top; background: #e5f5ff; border-bottom: 1px solid #111; padding: 10px; }
.custom_list th a { font-size: 16px; line-height: 2.5em; color: #fff; background: #00A0FF; padding: 5px 10px; }
.custom_list td { border-bottom: 1px solid #111; padding: 10px; }

@media screen and (max-width: 767px) {
.custom_list h2 { font-size: 24px; }
.custom_list th { display: block; padding: 5px 10px; }
.custom_list td { display: block; padding: 15px 10px; }
}



/* よくある質問 Q&A
＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿ */
.back_qa { 
background-image : url(../images/back_sky.jpg);
background-position: top center;
background-repeat: no-repeat;
background-size: cover;
padding: 120px 0 0 0; 
}

.qa_box { 
max-width: 900px; 
margin: 0 auto; 
}

.qa_box .title h2 { 
display: flex;
align-items: center;
justify-content: space-between;
font-size: 24px;
line-height: 1.5em;
margin-top: 0;
margin-bottom: 60px;
}
.qa_box .title h2 img { width: auto; height: 40px; }

.qa_box .title h3 { 
max-width: 200px;
font-size: 18px;
line-height: 1.5em;
text-align: center;
color: #fff;
background: #00A0FF;
border-radius: 20px;
padding: 5px 10px;
margin: 0 auto 60px auto;
}

@media screen and (max-width: 900px) {
.back_qa { padding: 30px 0 0 0; }
}
@media screen and (max-width: 767px) {
.qa_box .title h2 { font-size: 20px; }
.qa_box .title h2 img { height: 30px; }
}
@media screen and (max-width: 400px) {
.qa_box .title h2 { font-size: 18px; }
.qa_box .title h2 img { height: 25px; }
}



/*吹き出し*/
.balloon_box { padding-bottom: 100px; }

.balloon_box .phot { max-width: 700px; margin: 0 auto 15px auto; }
.balloon_box .phot img { width: 100%; }
.balloon_box .phot .mb { display: none; }

.balloon_l,
.balloon_r{
display:flex;
justify-content: flex-start;
align-items: flex-start;
margin: 0 0 15px 0;
}

.balloon_l{
}
.balloon_r{
justify-content:flex-end;
}
.faceicon img{
width: 100%;
max-width: 80px;
}
.balloon_r .faceicon{
margin-left:25px;
}
.balloon_l .faceicon{
margin-right:25px;
}
.balloon_r .faceicon{
order:2 !important;
}
.says {
width: 100%;
max-width: 500px;
display: flex;
flex-wrap: wrap;
position: relative;
padding: 17px 13px 15px 18px;
border-radius: 12px;
box-sizing: border-box;
margin:0 !important;
}
.says p{
font-size: 16px!important;
line-height: 1.5em!important;
margin: 8px 0 0 !important; 
}
.says p:first-child{
margin-top:0 !important;
}
.says:after {
content: "";
position: absolute;
border: 10px solid transparent;
}

.balloon_l .says { 
font-size: 16px!important;
line-height: 1.5em!important;
color: #111;
background: #fff;
}
.balloon_l .says:after {
left: -26px;
border-right: 22px solid #fff;
}

.balloon_r .says {  
color: #fff;
background: #00A0FF; 
}
.balloon_r .says:after {
right: -26px;
border-left: 22px solid #00A0FF;
}

@media screen and (max-width: 767px) {
.balloon_box .phot { max-width: 300px; }
.balloon_box .phot .pc { display: none; }
.balloon_box .phot .mb { display: block; }
}



/* 仕事内容
＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿ */
.work_main { 
background-image : url(../images/work/work_main.jpg);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
height: 200px;
padding: 0 15px;
}

.work_box {
max-width: 1200px;
height: 200px;
margin: 0 auto;
}

.work_box h2 {
font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
font-size: 36px;
line-height: 1.5em;
color: #fff;
margin: 0;
padding-top: 70px;
text-shadow: 1px 2px 3px #111;
}

@media screen and (max-width: 767px) {
.work_box h2 { text-align: center; }
}



.work { padding: 20px 0; }
.work h2 { 
font-size: 30px;
line-height: 1.5em;
color: #fff;
text-align: center;
margin: 0;
}

.work_wrap { 
margin-top: 80px;
margin-bottom: 120px;
}

.work_flow { 
display: flex;
align-items: stretch;
max-width: 950px;
margin: 0 auto;
}

.work_flow .sp01 { margin-top: 40px; }
.work_flow .sp02 { border-top: none!important; }
.work_flow .sp03 { border-bottom: none!important; }
.work_flow .sp04 { margin: 0 15px; }
.work_flow .sp05 { margin: 0 0 0 15px; }
.work_flow .sp06 { margin-left: 5px; }

.work_flow .box01 { 
width: 100%;
max-width: 80px;
background: #00A0FF; 
}
.work_flow .box01 h3 { 
font-size: 20px;
line-height: 1.5em;
text-align: center;
color: #fff;
margin: 0;
padding: 40px 0;
border-top: 2px solid #fff;
border-bottom: 2px solid #fff;
}


.work_flow .box02 {
padding-left: 50px;
}
.work_flow .box02 h3 { 
font-size: 20px;
line-height: 1.5em;
margin-top: 0;
margin-bottom: 15px;
}
.work_flow .box02 p { 
margin-bottom: 30px;
}
.work_flow .box02 .scene { 
display: flex;
justify-content: space-between;
border-bottom: 1px solid #111;
padding-bottom: 40px;
}
.work_flow .box02 .scene h3 { 
font-size: 16px;
line-height: 1.5em;
text-align: center;
color: #fff;
background: #00A0FF;
padding: 5px;
margin-bottom: 0;
}
.work_flow .box02 .scene img { margin-bottom: 5px; }


.triangle_box { 
max-width: 950px;
margin: 0 auto;
}
.triangle {
width: 0;
height: 0;
border-left: 40px solid transparent;
border-right: 40px solid transparent;
border-top: 40px solid #00A0FF;
margin-bottom: 10px;
}
.triangle_box h3 { 
width: 80px;
font-size: 30px;
font-weight: bold;
line-height: 1.5em;
text-align: center;
color: #0066cc;
margin: 0;
}


@media screen and (max-width: 1000px) {
.work_flow .box02 .scene img { max-width: 250px; }
}
@media screen and (max-width: 900px) {
.work_flow { max-width: 700px; }
.triangle_box { max-width: 700px; }
.work_flow .box02 { width: 100%; }
.work_flow .box02 .scene { display: block; }
.work_flow .box02 .scene img { display: block; width: 100%; max-width: 620px; }
.work_flow .sp04 { margin: 20px auto; }
.work_flow .sp05 { margin: 20px auto 0 auto; }
.work_flow .sp06 { margin-left: 0; }
}
@media screen and (max-width: 767px) {
.work h2 { font-size: 24px; }
.work_flow .box01 { max-width: 60px; }
.work_flow .box01 h3 { font-size: 16px; }
.work_flow .box02 { padding-left: 20px; }
.triangle {
border-left: 30px solid transparent;
border-right: 30px solid transparent;
border-top: 30px solid #00A0FF;
}
.triangle_box h3 { width: 60px; font-size: 24px; }
}


