﻿@charset "utf-8";

/* ---------------------
 * FONTSIZE MODEL * 
 * ---------------------
 *  63% ->	10pxに相当
 *  70% ->	11pxに相当
 *  75% ->	12pxに相当
 *  82% ->	13pxに相当
 *  88% ->	14pxに相当
 *  94% ->	15pxに相当
 * 100% ->	16pxに相当
 * 107% ->	17pxに相当
 * 113% ->	18pxに相当
 * 119% ->	19pxに相当
 * 125% ->	20pxに相当
 * --------------------- */


/*---------------------------------------
    リセットCSS（編集不要）
----------------------------------------*/
html{overflow-y:scroll;}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td{margin:0;padding:0;}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;}table{border-collapse:collapse;border-spacing:0;}caption,th{text-align:left;}q:before,q:after{content:'';}object,embed{vertical-align:top;}hr,legend{display:none;}h1,h2,h3,h4,h5,h6{font-size:100%;}img,abbr,acronym,fieldset{border:0;}ul li{list-style-type:none;}a,label{cursor:pointer;}img{vertical-align:bottom;margin:0;padding:0;}

html {
  -webkit-text-size-adjust: 100%;
}
body {
    font-family: 'Kosugi Maru', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    letter-spacing: 0.6px;
/*
    min-width: 1080px;
*/
    min-width: 1200px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
header, section, footer, aside, nav, main, article, figure, picture {
    display: block;
}
/*----------------------------------------
  common
----------------------------------------*/
a {
    color: #333333;
    text-decoration: none;
}
a:visited {
}
a:hover {
	text-decoration: none;
}
a:active {
}
.clearfix:after,
.inner:after {
    content: "."; display: block; visibility: hidden; height: 0.1px; font-size: 0.1em; line-height: 0; clear: both;
}

.floatL {
    float: left;
}


.inner {
    width: 1180px;
    margin: 0 auto;
/*
    width: auto;
    margin: 0 9%;
*/
}



#header-h1 {
    font-size: 0;
    line-height: 0;
}


.basecolor { color: #ff9f53; }

.bbline { border-bottom: solid 1px #333333; }
.unline { text-decoration: underline; }



.msg_pc { display: block; }
.msg_sp { display: none; }



/*----------------------------------------
  header
----------------------------------------*/
header {
    margin: 0px auto 0px;
    text-align: center;
    position: relative;
    z-index: 20;
}

#address_sp {
    display: none;
}



.box {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center; /* 縦方向中央揃え */
    justify-content: center; /* 横方向中央揃え */
    flex-direction: column;
}
.box__bg_photo {
    background-image: url(../images/slide/java01.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


p.box_msg {
    position: absolute;
    top: 35%;
    left: 45%;
    color: #ffffff;
    text-shadow: 0 0 10px #000000;
    font-size: 26px;
    letter-spacing: 0.5px;
    z-index: 200;
    text-align: left;
}
p.box_msg2 {
    position: absolute;
    top: 45%;
    left: 45%;
    color: #ffffff;
    text-shadow: 0 0 10px #000000;
    font-size: 26px;
    letter-spacing: 1.5px;
    z-index: 200;
    text-align: left;
}




.box__bg_photo1 {
    background-image: url(../images/slide/01.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.box__bg_photo2 {
    background-image: url(../images/slide/02.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.box__bg_photo3 {
    background-image: url(../images/slide/03.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.box__bg_photo4 {
    background-image: url(../images/slide/04.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


/* --------------------------------------------------
header 
-------------------------------------------------- */
div#header {
    width: 100%;
    margin: 0px auto;
    position: relative;
    top: 0;
    z-index: 200;
}
div#header .header_L {
    float: left;
    width: 47%;
    background-color: #ff9f53;
    height: 100px;
}
div#header .header_R {
    float: left;
    width: 50%;
}


div#header .header_L .header-logo {
    margin: 10px 90px 0px 10px;
    text-align: right;
}
div#header .header_L .header-logo img.head_logo {
    width: 550px;
}


div#header .header_R .heaer-menu {
    position: relative;
    margin-top: 40px;
    text-align: right;
    float: right;
}
div#header .header_R .heaer-menu ul.headmenulist {
    text-align: right:
}
div#header .header_R .heaer-menu ul.headmenulist li {
    float: left;
    margin: 0 0px 0 15px;
}
div#header .header_R .heaer-menu ul.headmenulist li a {
    margin: 0 10px;
    color: #333333;
}




/*----------------------------------------
    ドロワーメニュー
----------------------------------------*/
.wrapper {
  height: 100%;
  overflow-x: hidden;
  position: relative;
}
.overlay {
  content: "";
  display: block;
  width: 0;
  height: 0;
/* ***
  background-color: rgba(0, 0, 0, 0.5);
*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  transition: opacity .5s;
}
.overlay.open {
  width: 100%;
  height: 100%;
  opacity: 1;
}
main {
  height: 100%;
  min-height: 100vh;
  padding: 0 0px;
  background-color: #eee;
  transition: all .5s;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
main.open {
/* **
  transform: translateX(-250px);
*/
  transform: translateX(0px);
}



.menu-trigger {
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    position: absolute;
/* *****
    top: 35px;
    right: 10%;
    width: 30px;
*/
    top: 30px;
    right: 15%;
    width: 40px;

    z-index: 100;
}

.menu-trigger span {
    display: inline-block;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    width: 100%;
/* *****
    height: 3px;
    transition: all .5s;
*/
    height: 4px;
    transition: all .5s;

    background-color: #333333;
}
.menu-trigger.active span {
    background-color: #333333;
}
.menu-trigger span:nth-of-type(1) {
    top: 0;
}
.menu-trigger.active span:nth-of-type(1) {
    transform: translateY(4px) rotate(-45deg);
}
.menu-trigger span:nth-of-type(2) {
    top: 8px;
}
.menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
}
.menu-trigger span:nth-of-type(3) {
    top: 16px;

}
.menu-trigger.active span:nth-of-type(3) {
    transform: translateY(-12px) rotate(45deg);
}
.menu-trigger p.txt {
    margin-top: 20px;
    color: #333333;
    font-size: 14px;
    letter-spacing: 2px;
    text-align: center;
}



nav {
/*
  width: 90%;
  height: auto;
  padding-top: 47px;
  background-color: rgb(255, 255, 255, 0.7);
*/
  width: 100%;
  height: 100%;
/* ***
  padding-top: 100px;
*/
  padding-top: 70px;

  background-color: rgb(255, 255, 255, 0.4);
  position: fixed;
  top: 0;
  right: 0;

  z-index: 10;
  transform: translate(100%);
/*
  transform: translate(250px);
*/
  transition: all .5s;
}
nav.open {
  transform: translateZ(0);
}


.nav_menu {
/*
    margin: 0 0px 200px;
    font-size: 14px;
    letter-spacing: 0.5px;
*/
/* ***
    margin: 0 0px 200px;
*/
    font-size: 18px;
    letter-spacing: 0.5px;
    text-align: center;
}
.nav_menu a {
    display: block;
    padding: 10px 10px;
/* *****
    background-color: rgb(255, 255, 255, 0.6);
    color: #777777;
***** */
    color: #111111;
    line-height: 1.2;
/* ***
    border-bottom: 1px dotted #333333;
*/
    font-weight: normal;
}

/* *** */
.nav_menu a:hover {
    background-color: rgb(217, 217, 217, 0.6);
}
/* *** */


.nav_menu .child {
    display: none;
    margin: 0 0 -1px;
    padding: 0;
/* ***
    background: #fff;
*/

/* ********
    background-color: rgb(255, 255, 255, 0.3);
***** */
}
.nav_menu .child .menu {
/* ***
    background: #04879c;
*/
    background: #999999;
    color: #777777;
}
.nam_menu .child .menu:hover {
    background: #333333;
}
.nav_menu .child > li {
    padding: 0 0px;
}
.nav_menu .child > li:last-child {
    border-bottom: 0;
}

.switch .menu:after {
  position: absolute;
  top: 70%;
  right: 10px;
  margin-top: -1.4rem;
  content: '>';
/* ********
  font-size: 14px;
  font-weight: normal;
******** */
  font-size: 20px;
  font-weight: bold;

  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -moz-transition: all, 0.25s, linear;
  -o-transition: all, 0.25s, linear;
  -webkit-transition: all, 0.25s, linear;
  transition: all, 0.25s, linear;
}
.switch .menu.active:after {
  -moz-transform: translate(0, 50%);
  -ms-transform: translate(0, 50%);
  -webkit-transform: translate(0, 50%);
  transform: translate(0, 50%);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.child01 {
}
.child01 a {
/* ********
    background-color: rgb(255, 255, 255, 0.3);
    color: #777777;
******** */
    color: #111111;
}

.menu {
    display: block;
    position: relative;
    padding: 10px 10px;
}

.nav_menu .menu {
/* ********
    background-color: rgb(255, 255, 255, 0.6);
    color: #777777;
******** */
    color: #111111;
    font-weight: normal;
}
.nav_menu .menu:hover {
/* ***
    background-color: rgb(254, 205, 3, 0.6);
*/
    background-color: rgb(191, 191, 191, 0.7);
/* ********
    color: #777777;
******** */
    color: #111111;
    text-decoration: none;
    font-weight: normal;
}



/*----------------------------------------
    Catch copy
----------------------------------------*/
.topimg {
    position: relative;
}
.topimg p {
  position: absolute;
  top: 48%;
  left: 2%;

    z-index: 88888;
    color: #ffffff;
    text-shadow: 0 0 10px #000000;
    font-size: 34px;
    letter-spacing: 0.5px;
}

.topimg img {
  width: 100%;
}

/* TATE
.catchcopy {
    position: absolute;
    z-index: 88888;
    top: 7%;
    right: 10%;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 0 0 10px #000000;
    font-size: 40px;
    letter-spacing: 0.5px;
}
.vertical {
    writing-mode: vertical-rl;
}
*/


/*----------------------------------------
    article
----------------------------------------*/
article {
    background-color: #ffffff;
}


/*----------------------------------------
    title common
----------------------------------------*/
.eng {
    font-family: 'Heebo', sans-serif;
}

.top_title {
    text-align: center;
    font-size: 24px;
    color: #333333;
}
.top_title_L {
    text-align: left;
    font-size: 24px;
    color: #333333;
}



@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;700;900&display=swap');
.title {
    text-align: left;
    color: #6bbcff;
    font-size: 46px;
    border-left: solid 8px #6bbcff;
    padding-left: 30px;
    line-height: 48px;
    font-family: 'Noto Serif JP', serif;
}


.appointment_icon {
    position: fixed;
    text-align: right;
    bottom: 10px;
    right: 75px;
    z-index: 2000;
}
.appointment_icon img {
    width: 120px;
    height: 120px;
}



/*----------------------------------------
    sec01
----------------------------------------*/
#sec01 {
    width: 100%;
    margin: 0px auto;
    padding: 80px 0;
}
#sec01 .sec01_L {
    float: left;
    width: 50%;
}
#sec01 .sec01_R {
    float: right;
    width: 50%;
}

.info01_01 {
    margin-left: 4%;
}
.info01_adr {
    float: left;
    font-size: 20px;
    letter-spacing: 2px;
}
ul.info01list {
    position: relative;
    margin-top: -5px;
}
ul.info01list li {
    float: left;
}
.tel {
    font-size: 16px;
    margin-right: 10px;
}
.telno {
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 2px;
}
.btn {
    margin-top: 10px;
    margin-left: 10px;
}
.btn_item {
    background-color: #ff9f53;
    color: #ffffff;
    padding: 8px 10px;
    font-size: 12px;
    letter-spacing: 0.5px;
    border-radius: 15px;
}


.info01_02 {
    float: left;
    margin: 8px 8% 15px 4%;
    width: 88%;
}
table.timetbl {
    width: 100%;
    border-collapse: separate;
    margin: 3px 0px;
}
table.timetbl th {
    text-align: center;
    vertical-align: middle;
    width: 8%;
    padding: 3px 0px;
    background-color: #ff9f53;
    color: #ffffff;
}
table.timetbl th.tm {
    width: 18%;
}
table.timetbl td {
    text-align: center;
    vertical-align: middle;
    padding: 3px 0px;
    width: 3%;
    color: #777777;
}
table.timetbl td.end {
    text-align: center;
    vertical-align: middle;
    padding: 3px 0px;
    width: 3%;
}
table.timetbl td.tm {
    text-align: center;
    vertical-align: middle;
    letter-spacing: 0px;
}
table.timetbl td.tm_line {
    border-top: 2px solid #ff9f53;
    border-bottom: 2px solid #ff9f53;
}

.thL {
    border-radius: 10px 0 0 10px;
}
.thR {
    border-radius: 0 10px 10px 0;
}
.tdL {
    border-radius: 0 0 0 10px;
}
.tdR {
    border-radius: 0 0 10px 0;
}

.time_off {
    color: #777777;
}


.top_red {
    color: #ff0000;
}
.top_off {
    color: #777777;
    font-weight: bold;
}

ul.topkmlist {
    padding-left: 20px;
    list-style: url(../images/common/kome.png) outside;
}


/*----------------------------------------
  お知らせ
----------------------------------------*/
.blog01_01 {
    margin: 0px 0px 0px 30px;
}
.blog01_02 {
    margin: 10px 0px 10px 30px;
}

.newsarea {
    margin: 0px 10px 0px 10px;
}

.blog_area {
    margin-top: 30px;
    width: 96%;
    text-align: left;
    padding-bottom: 5px;
/*
    border-bottom: dashed 2px #999999;
*/
    overflow-y: scroll;
    height: 245px;
}
/* スクロールバー確認の要素 */
/*
.sample_bar {
 width: 200px;
 height: 200px;
 overflow: scroll;
}
*/
/* スクロールの幅の設定 */
.blog_area::-webkit-scrollbar {
 width: 10px;
 height: 10px;
}
 
/* スクロールの背景の設定 */
.blog_area::-webkit-scrollbar-track {
 border-radius: 5px;
 background: rgba(110, 108, 108, 0.2);
}
 
/* ドラックできるスクロール部の設定 */
.blog_area::-webkit-scrollbar-thumb {
 border-radius: 5px;
 background: #777777;
}

.blog_date {
    margin-bottom: 5px;
    padding-left: 0px;
    padding-top: 5px;
/*
    border-top: dashed 2px #999999;
*/
}
.blog_item {
    margin-left: 30px;
}
.css-br::after {
}
/* ---------------------------------------- */



/*----------------------------------------
    sec02
----------------------------------------*/
#sec02 {
    margin: 0px auto;
}
.sec02_inner {
    width: 1220px;
    margin: 0 auto;
}

.ul02 {
    width: 100%;
}
.ul02 li.li02_img {
    float: left;
    display: inline-block;
    vertical-align: middle;
    width: 49.8%;
}

.ul02 li.li02_txt {
    float: left;
    display: inline-block;
    vertical-align: middle;
    width: 48.2%;
    background-color: #ff9f53;
    margin-top: 40px;
}

.img02_img_R {
    margin: 0 0% 0 0%;
    text-align: center;
    display: block;
    width: 100%;
}
.img02_img_L {
    text-align: center;
    display: block;
    width: 100%;
    margin-top: 20px;
}
.line_w {
    background-color: #ecf8ec;
    background-image: -webkit-gradient(linear, 0 0, 100% 100%,color-stop(.25, #97db9a), color-stop(.25, transparent),color-stop(.5, transparent), color-stop(.5, #97db9a),color-stop(.75, #97db9a), color-stop(.75, transparent),to(transparent));
    -webkit-background-size: 5px 5px;
    width: 87%;
    height: 250px;
}
.img02_img_L img {
    margin: -230px 0px 0px 3.2%;
    position: relative;
    width: 96.8%;
}


.box02 {
    position: relative;
}
.bg_img02 img {
    width: 100%;
}

.img02 {
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    margin: 0;
    width: 100%;
    text-align: center;
}


.img02_box_R {
    margin: 0 7% 0 7%;
    text-align: center;
    display: block;
    width: 86%;
}
.img02_box_L {
    margin: 0 8% 0 0%;
    text-align: center;
    display: block;
    width: 92%;
}
.img02_cmnt {
    text-align: left;
    display: inline-block;
    padding-top: 40px;
}

.img02 .cont02 {
    margin-top: 40px;
    width: 90%;
    text-align: right;
}
.img02 .cont02 a {
    padding: 10px;
    border: solid 2px #333333;
}



/*----------------------------------------
    sec03
----------------------------------------*/
#sec03 {
    width: 100%;
    margin: 20px auto;
    padding: 60px 0;
    background-color: #ffffff;
}

.img03_cmnt {
    margin: 30px 14%;
    text-align: left;
}


.bnrbox03 {
    margin: 50px 0;
    width: 100%;
    text-align: center;
}
.ul03 {
    margin: 0 12%;
}
.ul03 li {
    float: left;
    text-align: center;
    margin: 0 3%;
    width: 26.3%;
    display: inline-block;
    vertical-align: middle;
}

.bnr03 {
    border: solid 1px #333333;
    padding: 5px 0 10px 0;
}


.top_num {
    color: #ff9f53;
    font-style: italic;
    font-size: 26px;
    padding-left: 3px;
}
.ul03 li a {
    opacity: 1;
}



/*----------------------------------------
    sec05
----------------------------------------*/
#sec05 {
    margin: 0px auto;
}

.box05 {
    position: relative;
}
.bg_img05 img {
    width: 100%;
}

.box05 .sec05_inner {
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 1180px;
    margin: 0 auto;
}

.img05 {
    margin-left: 50%;
    width: 50%;
    text-align: left;
}


.img05_cmnt {
    text-align: left;
    display: inline-block;
    padding-top: 40px;
}

.img05 .cont05 {
    margin-top: 40px;
    width: 85%;
    text-align: right;
}
.img05 .cont05 a {
    padding: 10px 20px;
    border: solid 2px #333333;
}



/*----------------------------------------
    sec06
----------------------------------------*/
#sec06 {
    margin: 0px auto;
}
.prev_title {
    text-align: center;
    font-size: 90px;
    letter-spacing: 0px;
    color: #ffffff;
}

.box06 {
    position: relative;
}
.bg_img06 img {
    width: 100%;
}

.box06 .sec06_inner {
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 1180px;
    margin: 0 auto;
}

ul.ul06 {
    margin-top: -20px;
}
ul.ul06 li {
    float: left;
    width: 50%;
    text-align: left;
}
ul.ul06 li .img06_R img {
    width: 100%;
    margin-top: -40px;
}


.img06_cmnt {
    text-align: left;
    display: inline-block;
    padding-top: 40px;
}

.tag06 {
    padding: 40px 40px 40px 35px;
}
.tag06 a {
    padding: 0;
    margin-left: 5px;
    margin-right: 5px;
    text-decoration: underline;
    line-height: 1.5;
}

.cont06 {
    margin-top: 20px;
    width: 85%;
    text-align: right;
}
.cont06 a {
    padding: 10px 20px;
    border: solid 2px #333333;
}



/*----------------------------------------
    sec04
----------------------------------------*/
#sec04 {
    width: 100%;
    padding: 80px 0;
    margin: 0px auto;
    text-align: center;
    background-image: url(../images/top/bg_img04.png);
    background-size: 100%;
    background-position: bottom center;
    background-repeat: no-repeat;

}

.img04_cmnt {
    padding-top: 40px;
    text-align: center;
    font-size: 18px;
}

.bnrbox04 {
    margin: 40px auto;
    text-align: center;
}
.ul04 {
    width: 72%;
    margin: 0 14% 0px 14%;
}
.ul04 li {
    float: left;
    text-align: center;
    margin: 0 11% 0px 11%;
    width: 28%;
    display: inline-block;
    vertical-align: middle;
}

.bnr04 {
    position: relative;
}
.bnr04 img {
  width: 100%;
}
.bnr04 .msg04 {
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    margin: 0;
    padding: 0;
    z-index: 88888;
    text-align: center;
    width: 100%;
}
.bnr04 .msg04 p {
    font-size: 18px;
    letter-spacing: 0.5px;
    line-height: 1;
}
.bnr04 .msg04 .link04 {
}
.bnr04 .msg04 .link04 a {
    color: #ff9f53;
    border-bottom: solid 1px #ff9f53;
    font-size: 12px;
    line-height: 0;
}



/*----------------------------------------
    address
----------------------------------------*/
#address {
    margin: 0px auto;
    background-color: #ffffff;
}

.map_container {
    overflow: hidden;
    height: 450px;
    width:100%;
}


/*----------------------------------------
  footer
----------------------------------------*/
footer {
    margin: 0px auto;
    padding: 60px 0px 10px 0px;
    background-color: #ff9f53
}

.foot_info {
    text-align: center;
}
.foot_hspnm1 {
    font-size: 24px;
    letter-spacing: 4px;
}
.foot_hspnm2 {
    font-size: 14px;
}
.foot_adrs {
    border: solid 1px #333333;
    margin: 10px 35%;
    padding: 10px 0px;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.foot_menu {
    text-align: center;
    padding: 40px 0px;
}
.foot_menu a {
    color: #333333;
    margin: 0 20px;
    font-size: 14px;
}


.copyright {
    font-size: 14px;
    color: #333333;
    text-align: center;
}




/* # Page Top
---------------------------------------------------------------------------- */
/* 
* Scroll top link inside footer, 
* but fixed relative to viewport
*/
#scroll-top {
    position:fixed; 
    z-index:9999; 
    display:inline-block;
    bottom: 10px;
    right: 10px;
    font-size: 25px;
    width: 55px;
    height: 50px;
    padding: 5px 0 0px 0;
    text-align: center;
    border-radius: 50%;
    border: solid 1px #50342b;
/*
    background-color: rgb(107, 188, 255, 0.6);
    color: #ffffff;
*/
    color: #50342b;
}
#scroll-top:hover {
    opacity: 1;
/*
    background-color: rgb(107, 188, 255, 1);
    opacity: 1;
*/
}



/*----------------------------------------
  グーグルマップのスクロール
----------------------------------------*/
#map {
    pointer-events: none;
}


/* ページ内リンク
---------------------------------------------------------------------------- */
#tag-pre02 {
  margin-top: -0px; /* 固定ナビの高さ分のネガティブマージン */
  padding-top: 0px; /* 打ち消し用のパディング */
}
#tag-pre03 {
  margin-top: -0px;
  padding-top: 0px;
}
#tag-pre04 {
  margin-top: -0px;
  padding-top: 0px;
}
#tag-pre05 {
  margin-top: -0px;
  padding-top: 0px;
}
#tag-pre06 {
  margin-top: -0px;
  padding-top: 0px;
}

#tag-sono02 {
  margin-top: -0px;
  padding-top: 0px;
}
#tag-sono03 {
  margin-top: -0px;
  padding-top: 0px;
}

#tag-heart02 {
  margin-top: -0px;
  padding-top: 0px;
}
#tag-heart03 {
  margin-top: -0px;
  padding-top: 0px;
}




#opecase02 {
  margin-top: -30px; /* 固定ナビの高さ分のネガティブマージン */
  padding-top: 30px; /* 打ち消し用のパディング */
}
#opecase03 {
  margin-top: -30px;
  padding-top: 30px;
}
#opecase04 {
  margin-top: -30px;
  padding-top: 30px;
}
#opecase05 {
  margin-top: -30px;
  padding-top: 30px;
}
#opecase06 {
  margin-top: -30px;
  padding-top: 30px;
}
#opecase07 {
  margin-top: -30px;
  padding-top: 30px;
}






#tag-rec04 {
  margin-top: -30px; /* 固定ナビの高さ分のネガティブマージン */
  padding-top: 30px; /* 打ち消し用のパディング */
}

#tag-message {
  margin-top: -30px;
  padding-top: 30px;
}
#tag-schedule {
  margin-top: -30px;
  padding-top: 30px;
}


