@charset "UTF-8";
@import url("grid.css");
:root { /* 色変更される場合は、#以降のカラーコードを変更してください IE非対応 */
  --base-color: #000;
  --link-color: #666;
  --linkhover-color: #999;
  --back-color: #f7f7f7;
  --border-color: #ccc;
  --white-color: #fff;
}
img {
  max-width: 100%;
  height: auto; /*高さ自動*/
}
/*a {
  display: block;
  color: var(--link-color);
  text-decoration-line: none;
}*/ .link_none {
  pointer-events: none;
}
a:hover {
  color: var(--linkhover-color);
}
.hidden {
  display: none;
}
.bubble-background {
  position: relative;
  height: auto;
  width: 100%;
  overflow: hidden;
}
/* 泡の見た目 */
.bubble {
  position: absolute;
  bottom: -50px;
  background-color: transparent;
  border-radius: 50%;
  pointer-events: none;
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.8);
  animation: bubble 100s linear infinite;
}
/* 泡の一番明るい部分を疑似要素で表現 */
.bubble::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  transform: scale(0.25) translate(-70%, -70%);
  background: radial-gradient(rgba(255, 255, 255, 1), transparent);
  border-radius: 50%;
}
/* 泡が上に浮かび上がっていくアニメーション */
@keyframes bubble {
  0% {
    transform: translatY(0);
    opacity: 1;
  }
  99% {
    opacity: 1;
  }
  100% {
    transform: translateY(-1100vh);
    opacity: 0;
  }
}
/*ヘッダー
-------------------------------------*/
header {
  position: fixed; /*** ← fixedで固定 ***/
  width: 100%;
  background: #FFF;
  box-sizing: border-box;
  top: 0;
  left: 0;
  align-items: center;
  z-index: 9999;
}
@media screen and (min-width: 769px) {
  header {
    position: fixed; /*** ← fixedで固定 ***/
    width: 100%;
    background: #FFF;
    box-sizing: border-box;
    top: 0;
    left: 0;
    align-items: center;
    z-index: 9999;
  }
}
/* header
----------------------------------------------- */
#head {
  width: 100%;
  max-width: 980px;
  /*  height: 155px;*/
  margin: 0 auto;
  padding-top: 10px;
  overflow: hidden;
}
header #logo {
  width: 240px;
  float: left;
  padding-top: 20px;
}
.head_text_pc, .head_text_sp {
  padding-top: 50px;
  padding-left: 10px;
  color: #55c3b3;
  display: inline-block;
}
#head_tel {
  width: 250px;
  float: right;
  padding-top: 20px;
  font-family: bahnschrift, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #7a6a56;
  text-align: center;
}
#head_tel .title {
  margin-bottom: 5px;
  padding: 3px 0;
  color: #FFF;
  font-size: 14px;
  background: #70c4bf;
}
#head_tel .telbox {
  margin: -10px 0 0 0;
  padding: 0;
  display: block;
  font-size: 30px;
}
#head_tel .telbox a {
  color: #7a6a56;
}
#head_tel .time {
  font-size: 14px;
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  .head_text_sp, .head_tel_sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #head {
    width: 100%;
    height: auto;
    padding-bottom: 0;
    max-width: none;
    text-align: center;
  }
  header #logo {
    width: 100%;
    float: none;
    padding-top: 5px;
  }
  header #logo img {
    width: 50%;
    height: auto;
  }
  .head_text_sp {
    padding-top: 0;
    padding-left: 0;
    font-size: 12px;
  }
  .head_text_pc, .head_tel_pc {
    display: none;
  }
  .head_tel_sp {
    margin-top: 140px !important;
  }
  #head_tel {
    margin: 0 auto;
    float: none;
    padding-top: 0;
  }
}
/*ヘッダー(スクロール)
-------------------------------------*/
.head-scroll {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
  position: relative;
  z-index: 9999;
}
.head_scroll_out {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap; /* flexアイテムを折り返す（複数行に配置する） */
  justify-content: center;
}
.head_scroll_inn {
  width: calc(50% - 0px); /* 列の幅を均等に分配し、マージンを考慮して計算 */
  padding: 20px 0;
  text-align: center;
  box-sizing: border-box; /* ボックスモデルを維持するために必要なスタイル */
}
.head_scroll_inn a {
  font-size: 22px;
  color: #FFF !important;
  font-weight: bold;
}
.head_scroll_inn:first-child {
  background: hsla(286, 71%, 62%, 1.00);
}
.head_scroll_inn:last-child {
  background: hsla(327, 87%, 34%, 1.00);
}
.fixed-header {
  position: fixed;
  top: -80px;
  left: 0;
  z-index: 9999;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
}
.fixed-header.is-show {
  top: 0;
  visibility: visible;
}
@media screen and (max-width: 768px) {
  .head_scroll_inn a {
    font-size: 18px;
  }
  .head_scroll_inn:first-child {
    padding-top: 8%;
  }
}
/*メイン画像
-------------------------------------*/
#particles-js {
  position: fixed; /*描画固定*/
  z-index: -9999; /*描画を一番下に*/
  width: 100%;
  height: 100%;
}
.mainimg {
  width: 100vw;
  height: 100vh;
  margin-top: 200px;
  background: url("../img/top_bg.png");
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  /*  z-index: -1;*/
}
.mainimg_cont {
  width: 100%;
  padding-top: 120px;
  margin: 0 auto;
  text-align: center;
}
.maintextimg img {
  width: 100%;
  max-width: 550px;
  height: auto;
}
.fadebox1 {
  width: 100%; /* 横幅いっぱい */
  height: 500px; /* 高さを300pxに指定 */
  margin: 0 0 100px; /* 下方向に適度な余白 */
  opacity: 0; /* 初期値は透明にしておく */
  transition: .7s; /* 動くスピードを0.5秒に指定 */
  position: relative; /* 相対位置の設定 */
  top: 50px; /* 事前に下に50pxずらしておく */
}
@media screen and (min-width: 769px) {
  .mainimg_cont:before {
    content: "";
    display: inline-block;
    width: 300px;
    height: 515px;
    background-image: url('../img/top_bg_img01.png');
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0%; /* 親要素の外側（左辺）から50%内側 */
    transform: translateX(-35%); /* 要素の位置をX軸方向に-50%変える */
  }
  .mainimg_cont:after {
    content: "";
    display: inline-block;
    width: 230px;
    height: 333px;
    background-image: url('../img/top_bg_img02.png');
    background-size: contain;
    position: absolute;
    top: 0;
    right: 0%; /* 親要素の外側（左辺）から50%内側 */
    transform: translateX(25%); /* 要素の位置をX軸方向に-50%変える */
  }
  /*  .top_img2box:after {
    content: "";
    display: inline-block;
    width: 430px;
    height: 430px;
    background-image: url('../img/top_img03.png');
    background-position: top;
    background-size: contain;
    position: absolute;
    top: 0;
    right: 0%; 
    transform: translateX(30%); 
  }
  .fuwafuwa_topleft {
    animation: fuwafuwa 3s ease-in-out infinite alternate;
    background: url(../img/top_img05.png) no-repeat 10% 80% / 100% auto;
    display: inline-block;
    transition: 1.5s ease-in-out;
    width: 130px;
    height: 230px;
    margin-top: 15px;
    position: absolute;
    top: 30%;
    left: 0%; 
  }
  .fuwafuwa_topright {
    animation: fuwafuwa2 5s ease-in-out infinite alternate;
    background: url(../img/top_img04.png) no-repeat 95% bottom / 80% auto;
    display: inline-block;
    transition: 1.5s ease-in-out;
    width: 146px;
    height: 420px;
    margin-top: 15px;
    position: absolute;
    bottom: 0;
    right: 0%; 
  }*/
}
@media screen and (max-width: 768px) {
  .mainimg {
    width: 100vw;
    height: 100vh;
    margin-top: 0;
    padding-top: 100px;
    background: url("../img/top_bg.png");
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    /*  z-index: -1;*/
    overflow: hidden;
  }
  .mainimg_cont {
    width: 95%;
    margin: 0 auto;
    padding-top: 0;
    padding-bottom: 100px;
    z-index: 10;
  }
  .mainimg_cont:before {
    content: "";
    display: inline-block;
    width: 300px;
    height: 515px;
    background-image: url('../img/top_bg_img01.png');
    background-size: 60% auto;
    position: absolute;
    top: 0;
    left: 0%; /* 親要素の外側（左辺）から50%内側 */
    transform: translateY(-20%); /* 要素の位置をX軸方向に-50%変える */
    z-index: -1;
  }
  .mainimg_cont:after {
    content: "";
    display: inline-block;
    width: 230px;
    height: 333px;
    background-image: url('../img/top_bg_img02.png');
    background-size: 50% auto;
    position: absolute;
    top: 0;
    right: 0%; /* 親要素の外側（左辺）から50%内側 */
    transform: translate(45%, 20%); /* 要素の位置をX軸方向に-50%変える */
    z-index: -1;
  }
  /*  .top_img3box:after {
    content: "";
    display: inline-block;
    width: 150px;
    height: 170px;
    background-image: url('../img/top_img04.png');
    background-position: bottom;
    background-size: contain;
    position: absolute;
    bottom: 10%;
    right: 0%; 
    transform: translateY(50%); /
  }
  .fuwafuwa_topleft {
    animation: fuwafuwa 3s ease-in-out infinite alternate;
    background: url(../img/top_img05.png) no-repeat 10% 40% / 50% auto;
    display: inline-block;
    transition: 1.5s ease-in-out;
    width: 130px;
    height: 230px;
    margin-top: 15px;
    position: absolute;
    top: 0;
    left: 0%; 
  }
  .fuwafuwa_topright {
    animation: fuwafuwa2 3s ease-in-out infinite alternate;
    background: url(../img/top_img04.png) no-repeat 80% 110% / 40% auto;
    display: inline-block;
    transition: 1.5s ease-in-out;
    width: 146px;
    height: 420px;
    margin-top: 15px;
    position: absolute;
    bottom: 0;
    right: 0%; 
  }*/
}
/*背景
-------------------------------------*/
.background01 {
  width: 100vw;
  height:auto;
	padding-bottom:100px;
  background: url("../img/background00.png");
  background-size: auto;
  background-position: center top;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
	.background01 {
  width: 100%;
  height:auto;
  background: url("../img/background00_sp.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
}
/*.background02 {
  width: 100vw;
  height:auto;
  background-size: auto;
 background-position: top center;
  background-repeat: no-repeat;
		margin: calc(200% - 200vh) 0;
	padding: 4px calc(80vh - 80% + 8px);
	z-index:9999;
}*/
/*main01
-------------------------------------*/
.main01 {
/*  background: hsla(180, 57%, 86%, 1.00);*/
  font-family: "zen-maru-gothic",fot-tsukubrdgothic-std, sans-serif;
  font-weight: 400;
  font-style: normal;
  position: relative;
}
.main01_cont {
  width: 100%;
/*padding-top: 50px;*/
  text-align: center;
}
.main01_cont .aisatsu_title {
  margin-bottom: 20px;
  color: #00a7e0;
  font-size: 30px;
  font-weight: 700;
}
.aisatsu_fade {
  width: 100%; /* 横幅いっぱい */
  height: 500px; /* 高さを300pxに指定 */
  margin: 0 auto 100px auto; /* 下方向に適度な余白 */
  opacity: 0; /* 初期値は透明にしておく */
  transition: .7s; /* 動くスピードを0.5秒に指定 */
  position: relative; /* 相対位置の設定 */
  top: 50px; /* 事前に下に50pxずらしておく */
}
@media screen and (min-width: 769px) {
/*  .main01 {
    padding-bottom: 50px;
  }*/
  .main01_cont {}
/*  .main01_img1box:before {
    content: "";
    display: inline-block;
    width: 745px;
    height: 515px;
    background-image: url('../img/main01_contbg_left.png');
    background-size: contain;
    position: absolute;
    bottom: 0;
    left: -50%; 
    transform: translateY(60%); 
  }*/
/*  .main01_img1box:after {
    content: "";
    display: inline-block;
    width: 540px;
    height: 380px;
    background-image: url('../img/main01_contbg_right.png');
    background-size: contain;
    position: absolute;
    top: 0;
    right: -50%; 
    transform: translateY(10%); 
  }*/
  .main01_cont .aisatsu_text .br:after {
    content: "\A";
    white-space: pre;
  }
}
@media screen and (max-width: 768px) {
  .main01 {}
  .main01_cont {
    padding-top: 0;
    padding-bottom: 300px;
    z-index: 10;
  }
/*  .main01_img1box:before {
    content: "";
    display: inline-block;
    width: 745px;
    height: 515px;
    background-image: url('../img/main01_contbg_left.png');
    background-size: 40% auto;
    position: absolute;
    top: 0;
    left: -20%; 
    transform: translateY(140%); 
  }*/
/*  .main01_img1box:after {
    content: "";
    display: inline-block;
    width: 540px;
    height: 380px;
    background-image: url('../img/main01_contbg_right.png');
    background-size: 40% auto;
    position: absolute;
    bottom: -15%;
    right: 0; 
    transform: translateX(80%); 
    z-index: -1;
  }*/
  .main01_cont .aisatsu_text {
    text-align: left;
  }
  .fadebox {
    width: 100%; /* 横幅いっぱい */
    height: 430px; /* 高さを300pxに指定 */
    opacity: 0; /* 初期値は透明にしておく */
    transition: .5s; /* 動くスピードを0.5秒に指定 */
    position: relative; /* 相対位置の設定 */
    top: 50px; /* 事前に下に50pxずらしておく */
  }
  .active {
    opacity: 1; /* 透明度を元に戻す */
    top: 0; /* ずらしていた位置を戻すことで上に上がっているようにみえる */
  }
}
/*main02
-------------------------------------*/
.main02 {
/*  background: hsla(179, 60%, 65%, 1.00);*/
  font-family: "zen-maru-gothic", fot-tsukubrdgothic-std, sans-serif;
  font-weight: 700;
  font-style: normal;
/*
  background: url("../img/background02.png");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;*/
}
.main02_cont {
  padding: 60px 0 50px 0;
  /*  text-align: center;*/
  font-weight: 400;
}
.main02_cont .rinen_title {
  margin-bottom: 20px;
  color: #FFF;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
}
.main02_cont .rinen_text_title {
  display: block;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}
.rinen_fade {
  width: 100%; /* 横幅いっぱい */
  height: 600px; /* 高さを300pxに指定 */
  margin: 0 auto; /* 下方向に適度な余白 */
  opacity: 0; /* 初期値は透明にしておく */
  transition: .7s; /* 動くスピードを0.5秒に指定 */
  position: relative; /* 相対位置の設定 */
  top: 50px; /* 事前に下に50pxずらしておく */
}
@keyframes fuwafuwahanashi {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(0px, 20px) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}
.slidein {
  opacity: 0;
  transform: translate(0, 0);
  transition: all 1.0s;
}
.slidein-left {
  transform: translate(-100%, 0);
}
.slidein-right {
  transform: translate(100%, 0);
}
.slidein-up {
  transform: translate(0, -100%);
}
.slidein-bottom {
  transform: translate(0, 100%);
}
.scrollin {
  transform: translate(0, 0) !important;
  opacity: 1 !important;
}
.fadein {
  opacity: 0;
  transform: translate(0, 0);
  transition: all 1.5s;
}
.fadein-left {
  transform: translate(-30px, 0);
}
.fadein-right {
  transform: translate(30px, 0);
}
.fadein-up {
  transform: translate(0, -30px);
}
.fadein-bottom {
  transform: translate(0, 30px);
}
.scrollin {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}
@media screen and (min-width: 769px) {
  .main02_cont {
    text-align: center;
  }
.main02_cont:before {
    content: "";
    display: inline-block;
    width: 1023px;
    height: 622px;
/*    background-image: url('../img/main02_contbg.png');*/
    background-size: contain;
    position: absolute;
    top: 0;
    right: 0; 
    transform: translateX(10%); 
  }
 .main02_cont:after {
    content: "";
    display: inline-block;
    width: 321px;
    height: 284px;
/*    background-image: url('../img/main02_contbg2.png');*/
    background-size: contain;
    position: absolute;
    bottom: 0;
    left: 0; 
    transform: translate(-70%, -70%); 
  }
 .main02_bgcont:before {
    content: "";
    display: inline-block;
    width: 611px;
    height: 272px;
/*    background-image: url('../img/main02_contbg3.png');*/
    background-size: contain;
    position: absolute;
    bottom: 0;
    left: 0; 
    transform: translate(-40%, 40%); 
  }
 .main02_bgcont:after {
    content: "";
    display: inline-block;
    width: 812px;
    height: 311px;
/*    background-image: url('../img/main02_contbg4.png');*/
    background-size: contain;
    position: absolute;
    top: 0;
    right: 0; 
    transform: translate(50%, 220%); 
  }
  .main02_cont .rinen_text_inn .br:after {
    content: "\A";
    white-space: pre;
  }
  .fuwafuwahanashi {
    animation: fuwafuwahanashi 2s ease-in-out infinite alternate;
    background: url("../img/main02_img01.png") no-repeat 0% 50% / 100% auto;
    display: inline-block;
    transition: 1.5s ease-in-out;
    width: 105px;
    height: 105px;
    margin-top: 15px;
    position: absolute;
    top: -5%;
    left: 45%; /* 親要素の外側（左辺）から50%内側 */
  }
  .fuwafuwa_main02left {
    animation: fuwafuwa 3s ease-in-out infinite alternate;
    background: url("../img/main02_img02.png") no-repeat 0% 10% / 100% auto;
    display: inline-block;
    transition: 1.5s ease-in-out;
    width: 134px;
    height: 230px;
    position: absolute;
    top: 15%;
    left: 0%;
  }
  .fuwafuwa_main02right {
    animation: fuwafuwa2 5s ease-in-out infinite alternate;
    background: url("../img/main02_img03.png") no-repeat 0% 10% / 100% auto;
    display: inline-block;
    transition: 1.5s ease-in-out;
    width: 110px;
    height: 310px;
    position: absolute;
    bottom: 0%;
    right: 0%; /* 親要素の外側（左辺）から50%内側 */
  }
  .main02top_link {
    position: absolute;
    bottom: 0;
    left: 50%; /* 親要素の外側（左辺）から50%内側 */
  }
  .main02top_link img {
    width: 50%;
    height: auto;
  }
  .main02top_link:hover {
    bottom: 10px;
    transition: 0.5s;
  }
}
@media screen and (max-width: 768px) {
  .main02_cont {
    padding-bottom: 250px;
    z-index: 10;
  }
  .main02_cont .rinen_text {
    width: 90%;
    margin: 0 auto;
  }
  .main02_cont:after {
    content: "";
    display: inline-block;
    width: 321px;
    height: 284px;
/*    background-image: url('../img/main02_contbg2.png');*/
    background-size: 60% auto;
    position: absolute;
    bottom: 0;
    left: 0; /* 親要素の外側（左辺）から50%内側 */
    transform: translate(-20%, -80%); /* 要素の位置をX軸方向に-50%変える */
    z-index: -1;
  }
  .main02_bgcont:before {
    content: "";
    display: inline-block;
    width: 611px;
    height: 272px;
/*    background-image: url('../img/main02_contbg3.png');*/
    background-size: 50% auto;
    position: absolute;
    bottom: 0;
    left: 0; /* 親要素の外側（左辺）から50%内側 */
    transform: translate(-10%, 80%); /* 要素の位置をX軸方向に-50%変える */
    z-index: -1;
  }
  .main02_bgcont:after {
    content: "";
    display: inline-block;
    width: 812px;
    height: 311px;
/*    background-image: url('../img/main02_contbg4.png');*/
    background-size: 40% auto;
    position: absolute;
    bottom: 0;
    right: 0; /* 親要素の外側（左辺）から50%内側 */
    transform: translate(70%, 90%); /* 要素の位置をX軸方向に-50%変える */
    z-index: -2;
  }
  .main02_cont .rinen_text_inn {
    text-align: left !important;
  }
  .fuwafuwahanashi {
    animation: fuwafuwahanashi 2s ease-in-out infinite alternate;
    background: url("../img/main02_img01.png") no-repeat 0% 50% / 100% auto;
    display: inline-block;
    transition: 1.5s ease-in-out;
    width: 105px;
    height: 105px;
    margin-top: 15px;
    position: absolute;
    top: -5%;
    left: 35%; /* 親要素の外側（左辺）から50%内側 */
  }
  .fuwafuwa_main02right {
    animation: fuwafuwa2 5s ease-in-out infinite alternate;
    background: url("../img/main02_img03.png") no-repeat 0% 10% / 100% auto;
    display: inline-block;
    transition: 1.5s ease-in-out;
    width: 110px;
    height: 310px;
    position: absolute;
    bottom: 0%;
    right: 0%; /* 親要素の外側（左辺）から50%内側 */
    z-index: -9997;
  }
  .main02_cont .maintext_title {
    margin-bottom: 20px;
    text-align: center;
    font-size: 21px;
  }
  .main02_cont .maintext_text {
    width: 90%;
    margin: 0 auto 50px;
    font-size: 12px;
  }
  .main02_cont .project_title {
    margin-bottom: 60px;
    text-align: center;
    font-size: 21px;
    font-weight: bold;
  }
  .main02_cont .project_title span {
    display: block;
    color: #9966cc;
  }
  .project_title span:after {
    content: "▶︎";
    display: inline-block;
    color: #ff0000;
    z-index: 9999;
  }
  .main02_cont .pro_out {
    width: 100%;
    margin: 0 auto 30px;
    display: flex;
    flex-wrap: wrap; /* flexアイテムを折り返す（複数行に配置する） */
  }
  .main02_cont .pro_inn {
    width: 100%; /* 列の幅を均等に分配し、マージンを考慮して計算 */
    margin: 5px;
    padding: 10px;
    box-sizing: border-box; /* ボックスモデルを維持するために必要なスタイル */
  }
  .main02_cont .pro_inn:nth-child(odd) {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }
  .main02_cont .pro_inn:nth-child(even) {
    margin-bottom: 30px;
    font-size: 14px;
  }
  .main02_cont .pro_inn .stitle {
    font-size: 20px;
    color: #9966cc;
    font-weight: bold;
    text-align: center;
  }
  .main02_cont .pro_out2 {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap; /* flexアイテムを折り返す（複数行に配置する） */
  }
  .main02_cont .pro_inn2 {
    width: calc(33% - 10px); /* 列の幅を均等に分配し、マージンを考慮して計算 */
    margin: 5px;
    padding: 10px;
    box-sizing: border-box; /* ボックスモデルを維持するために必要なスタイル */
    text-align: center;
  }
  .main02top_link {
    position: absolute;
    bottom: 0;
    left: 50%; /* 親要素の外側（左辺）から50%内側 */
  }
  .main02top_link img {
    width: 50%;
    height: auto;
  }
  .main02top_link:hover {
    bottom: 10px;
    transition: 0.5s;
  }
}
/*main03
-------------------------------------*/
.main03 {
padding: 160px 0 0 0;
  font-family: "zen-maru-gothic", fot-tsukubrdgothic-std, sans-serif;
  font-weight: 700;
  font-style: normal;
/*  background: hsla(197, 66%, 59%, 1.00);*/
}
.main03_cont {
  position: relative;
  z-index: 10;
}
.service_cont, .taisyou_cont {
  margin-bottom: 100px;
  padding: 50px 30px 20px 30px;
  border-radius: 30px;
  background: hsla(213, 49%, 57%, 0.60);
}
.service_title, .taisyou_title {
  margin-bottom: 30px;
  color: #5affff;
  font-size: 26px;
  text-align: center !important;
}
.main03_cont .service_out {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap; /* flexアイテムを折り返す（複数行に配置する） */
  color: #FFF;
}
.main03_cont .service_inn {
  width: calc(50% - 10px); /* 列の幅を均等に分配し、マージンを考慮して計算 */
  margin: 5px 5px 15px 5px;
  padding: 10px;
  box-sizing: border-box; /* ボックスモデルを維持するために必要なスタイル */
}
.main03_cont .service_inn dt {
  font-size: 20px;
  padding-left: 25px;
}
.main03_cont .service_inn dt:before {
  position: absolute;
  display: block;
  content: "●";
  color: #5affff;
  font-size: 20px;
  margin-left: -25px;
}
.main03_cont .service_inn dd {
  height: 100px;
  margin-bottom: 25px;
  font-size: 16px;
  font-weight: 400;
  border-bottom: 0.5px solid #FFF;
}
.main03_cont .service_inn dd:last-child {
  border: none;
}
/*---------------------------------------------*/
.main03_cont .taisyou_out {
  width: 770px;
  margin: 0 auto;
}
.taisyou_outbox {
  margin-bottom: 50px;
}
.main03_cont .taisyou_inn dt, .main03_cont .taisyou_inn dd {
  color: #FFF;
}
.main03_cont .taisyou_inn dt {
  font-size: 20px;
  padding-left: 25px;
}
.main03_cont .taisyou_inn dt:before {
  position: absolute;
  display: block;
  content: "●";
  color: #5affff;
  font-size: 20px;
  margin-left: -25px;
}
.main03_cont .taisyou_inn dd {
  margin-bottom: 20px;
  font-weight: 400;
}
.main03_cont .taisyou_innbox {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap; /* flexアイテムを折り返す（複数行に配置する） */
  color: #FFF;
}
.main03_cont .taisyou_innbox dt {
  width: calc(30% - 10px); /* 列の幅を均等に分配し、マージンを考慮して計算 */
  box-sizing: border-box; /* ボックスモデルを維持するために必要なスタイル */
}
.main03_cont .taisyou_innbox dd {
  width: calc(70% - 10px); /* 列の幅を均等に分配し、マージンを考慮して計算 */
  box-sizing: border-box; /* ボックスモデルを維持するために必要なスタイル */
}
.main03_cont .taisyou_inn .taisyou_left {
  width: 38%;
  float: left;
}
.main03_cont .taisyou_inn .taisyou_left2 {
  width: 60%;
  float: left;
}
.main03_cont .taisyou_inn .taisyou_left2 .text_indent {
  display: inline-block;
  padding-left: 1em;
  text-indent: -1em;
}
.main03_cont .taisyou_inn dd .chiiki_yellow {
  display: block;
  color: #ffc800;
  font-size: 18px;
}
.main03_cont .taisyou_inn dd .chiiki_green {
  display: block;
  color: #82dc2c;
  font-size: 18px;
}
.main03_cont .taisyou_inn .chiiki_bubble {
  height: 130px;
  color: #2ea7e0;
  background: url("../img/main03_taisyou_bubble.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 558px auto;
}
.main03_cont .taisyou_inn .chiiki_bubble span {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
  font-size: 18px;
}
.main03_cont .taisyou_outbox .taisyou_out_taisyougai {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap; /* flexアイテムを折り返す（複数行に配置する） */

}
.main03_cont .taisyou_inn_taisyougai {
  width: calc(50% - 5px); /* 列の幅を均等に分配し、マージンを考慮して計算 */
  box-sizing: border-box; /* ボックスモデルを維持するために必要なスタイル */
}
.main03_cont .taisyou_inn_taisyougai span {
  color: #5affff;
  font-size: 26px;
	font-weight:500;
}
.main03_cont .taisyou_inn_taisyougai p {
  margin-bottom: 25px;
	font-weight:500;
}
.main03_cont .taisyou_inn_taisyougai p:nth-child(2) {
  line-height: 20px;
}
.main03_cont .taisyou_inn_taisyougai p:last-child {
  font-size: 12px;
  white-space: nowrap;
}
@media screen and (min-width: 769px) {
  .service_cont:before {
    content: "";
    display: inline-block;
    width: 508px;
    height: 421px;
/*    background-image: url('../img/main03_contbg1.png');*/
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0; /* 親要素の外側（左辺）から50%内側 */
    transform: translate(-20%, -30%); /* 要素の位置をX軸方向に-50%変える */
  }
  .service_cont:after {
    content: "";
    display: inline-block;
    width: 151px;
    height: 251px;
/*    background-image: url('../img/main03_contbg2.png');*/
    background-size: contain;
    position: absolute;
    top: 0;
    right: 0; /* 親要素の外側（左辺）から50%内側 */
    transform: translate(90%, 50%); /* 要素の位置をX軸方向に-50%変える */
  }
  .main03_cont:before {
    content: "";
    display: inline-block;
    width: 1760px;
    height: 679px;
/*    background-image: url('../img/main03_contbg3.png');*/
    background-size: contain;
    position: absolute;
    top: 18%;
    left: -50%; /* 親要素の外側（左辺）から50%内側 */
    transform: translate(0, 0); /* 要素の位置をX軸方向に-50%変える */
    z-index: -1;
  }
  .taisyou_cont:before {
    content: "";
    display: inline-block;
    width: 371px;
    height: 482px;
/*    background-image: url('../img/main03_contbg4.png');*/
    background-size: contain;
    position: absolute;
    top: 40%;
    right: -20%; /* 親要素の外側（左辺）から50%内側 */
    transform: translate(0, 0); /* 要素の位置をX軸方向に-50%変える */
  }
  .taisyou_cont:after {
    content: "";
    display: inline-block;
    width: 286px;
    height: 525px;
/*    background-image: url('../img/main03_contbg5.png');*/
    background-size: contain;
    position: absolute;
    bottom: 20%;
    left: -30%; /* 親要素の外側（左辺）から50%内側 */
    transform: translate(0, 0); /* 要素の位置をX軸方向に-50%変える */
  }
  .main03_bgcont:before {
    content: "";
    display: inline-block;
    width: 283px;
    height: 450px;
/*    background-image: url('../img/main03_contbg6.png');*/
    background-size: contain;
    position: absolute;
    bottom: 13%;
    right: -30%; /* 親要素の外側（左辺）から50%内側 */
    transform: translate(0, 0); /* 要素の位置をX軸方向に-50%変える */
  }
  .main03_bgcont:after {
    content: "";
    display: inline-block;
    width: 410px;
    height: 287px;
/*    background-image: url('../img/main03_contbg7.png');*/
    background-size: contain;
    position: absolute;
    bottom: -13%;
    left: -10%; /* 親要素の外側（左辺）から50%内側 */
    transform: translate(0, 0); /* 要素の位置をX軸方向に-50%変える */
  }
  .logo_inn_box {
    content: "";
    display: inline-block;
    width: 333px;
    height: 240px;
    background-image: url('../img/logo_inn.png');
    background-size: contain;
    position: absolute;
    bottom: 0;
    left: 50%; /* 親要素の外側（左辺）から50%内側 */
    transform: translate(-50%, 140%); /* 要素の位置をX軸方向に-50%変える */
  }
  .main03_bg2 {
    padding-bottom: 350px;
    background: url("../img/main03_bg2.png");
    background-repeat: no-repeat;
    background-position: -50% bottom;
  }
  .main03_bg1:before {
    right: 0; /* 親要素の外側（左辺）から50%内側 */
    transform: translateX(80%); /* 要素の位置をX軸方向に-50%変える */
    overflow: hidden !important;
  }
  .main03_bg1:after {
    left: 0; /* 親要素の外側（左辺）から50%内側 */
    transform: translateX(50%); /* 要素の位置をX軸方向に-50%変える */
  }
  .main03_imgbox {
    padding-bottom: 400px;
  }
  .main03_imgbox:before {
    content: "";
    display: inline-block;
    width: 500px;
    height: 100px;
    background-image: url('../img/top_img01.png');
    background-position: center;
    background-size: contain;
    z-index: 9999;
  }
  .main03_cont .project_title {
    margin-bottom: 60px;
    text-align: center;
    font-size: 25px;
    font-weight: bold;
    color: #fff;
  }
  .main03_cont .project_title span {
    color: #f0debd;
  }
  .main03_cont .project_title span:after {
    content: "▶︎";
    display: inline-block;
    color: #ff0000;
  }
  .fadebox2 {
    width: 100%; /* 横幅いっぱい */
    height: 180px;
    margin: 0 0 50px; /* 下方向に適度な余白 */
    opacity: 0; /* 初期値は透明にしておく */
    transition: .5s; /* 動くスピードを0.5秒に指定 */
    position: relative; /* 相対位置の設定 */
    top: 50px; /* 事前に下に50pxずらしておく */
  }
  .active {
    opacity: 1; /* 透明度を元に戻す */
    top: 0; /* ずらしていた位置を戻すことで上に上がっているようにみえる */
  }
  .link_pre.kiran, .btn_stamp.kiran a {
    opacity: 1;
    overflow: hidden;
    position: relative;
    cursor: pointer;
  }
  .link_pre.kiran::before, .btn_stamp.kiran a::before {
    background-color: #fff;
    content: "";
    display: block;
    position: absolute;
    top: -100px;
    left: 0;
    width: 30px;
    height: 100%;
    opacity: 0;
    transition: cubic-bezier(0.32, 0, 0.67, 0);
  }
}
@media screen and (max-width: 768px) {
  .service_cont:before {
    content: "";
    display: inline-block;
    width: 508px;
    height: 421px;
   /* background-image: url('../img/main03_contbg1.png');*/
    background-size: 50% auto;
    position: absolute;
    top: -1%;
    left: -5%; /* 親要素の外側（左辺）から50%内側 */
    transform: translate(0, 0); /* 要素の位置をX軸方向に-50%変える */
  }
  .service_cont:after {
    content: "";
    display: inline-block;
    width: 151px;
    height: 251px;
   /* background-image: url('../img/main03_contbg2.png');*/
    background-size: 50% auto;
    position: absolute;
    top: 0;
    right: -20%; /* 親要素の外側（左辺）から50%内側 */
    transform: translate(0, 0); /* 要素の位置をX軸方向に-50%変える */
  }
  .main03_cont:before {
    content: "";
    display: inline-block;
    width: 1760px;
    height: 679px;
    /*background-image: url('../img/main03_contbg3.png');*/
    background-size: 50% auto;
    position: absolute;
    top: 38%;
    left: -50%; /* 親要素の外側（左辺）から50%内側 */
    transform: translate(0, 0); /* 要素の位置をX軸方向に-50%変える */
    z-index: -1;
  }
  .taisyou_cont:before {
    content: "";
    display: inline-block;
    width: 371px;
    height: 482px;
    /*background-image: url('../img/main03_contbg4.png');*/
    background-size: 55% auto;
    position: absolute;
    top: 42%;
    right: -35%; /* 親要素の外側（左辺）から50%内側 */
    transform: translate(0, 0); /* 要素の位置をX軸方向に-50%変える */
  }
  .taisyou_cont:after {
    content: "";
    display: inline-block;
    width: 286px;
    height: 525px;
   /* background-image: url('../img/main03_contbg5.png');*/
    background-size: 70% auto;
    position: absolute;
    bottom: 20%;
    left: -15%; /* 親要素の外側（左辺）から50%内側 */
    transform: translate(0, 0); /* 要素の位置をX軸方向に-50%変える */
    z-index: -1;
  }
  .main03_bgcont:before {
    content: "";
    display: inline-block;
    width: 283px;
    height: 450px;
    /*background-image: url('../img/main03_contbg6.png');*/
    background-size: 70% auto;
    position: absolute;
    bottom: -7%;
    right: -35%; /* 親要素の外側（左辺）から50%内側 */
    transform: translate(0, 0); /* 要素の位置をX軸方向に-50%変える */
  }
  .main03_bgcont:after {
    content: "";
    display: inline-block;
    width: 410px;
    height: 287px;
    /*background-image: url('../img/main03_contbg7.png');*/
    background-size: 70% auto;
    position: absolute;
    bottom: -11%;
    left: -10%; /* 親要素の外側（左辺）から50%内側 */
    transform: translate(0, 0); /* 要素の位置をX軸方向に-50%変える */
    z-index: -1;
  }
  .service_cont, .taisyou_cont {
    margin-bottom: 100px;
    padding: 50px 15px 20px;
    border-radius: 30px;
    background: hsla(213, 49%, 57%, 0.60);
  }
  .service_title, .taisyou_title {
    margin-bottom: 30px;
    color: #5affff;
    font-size: 26px;
    text-align: center !important;
  }
  .main03_cont .service_out {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap; /* flexアイテムを折り返す（複数行に配置する） */
    color: #FFF;
  }
  .main03_cont .service_inn {
    width: 100%; /* 列の幅を均等に分配し、マージンを考慮して計算 */
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* ボックスモデルを維持するために必要なスタイル */
  }
  .main03_cont .service_inn dt {
    font-size: 20px;
    padding-left: 25px;
  }
  .main03_cont .service_inn dt:before {
    position: absolute;
    display: block;
    content: "●";
    color: #5affff;
    font-size: 20px;
    margin-top: 0px;
    margin-left: -28px;
  }
  .main03_cont .service_inn dd {
    height: auto;
    margin-bottom: 25px;
    padding-bottom: 25px;
  }
  .main03_cont .service_inn:first-child > dd:last-child {
    border-bottom: 0.5px solid #FFF;
  }
  /*---------------------------------------------*/
  .main03_cont .taisyou_out {
    width: 100%;
    margin: 0 auto;
  }
  .taisyou_outbox {
    margin-bottom: 50px;
  }
  .main03_cont .taisyou_inn dt, .main03_cont .taisyou_inn dd {
    color: #FFF;
  }
  .main03_cont .taisyou_inn dt {
    font-size: 20px;
    padding-left: 25px;
  }
  .main03_cont .taisyou_inn dt:before {
    position: absolute;
    display: block;
    content: "●";
    color: #5affff;
    font-size: 20px;
    margin-left: -25px;
  }
  .main03_cont .taisyou_inn dd {
    margin-bottom: 20px;
  }
  .main03_cont .taisyou_innbox {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap; /* flexアイテムを折り返す（複数行に配置する） */
    color: #FFF;
  }
  .main03_cont .taisyou_innbox dt {
    width: 100%; /* 列の幅を均等に分配し、マージンを考慮して計算 */
    box-sizing: border-box; /* ボックスモデルを維持するために必要なスタイル */
  }
  .main03_cont .taisyou_innbox dd {
    width: 100%; /* 列の幅を均等に分配し、マージンを考慮して計算 */
    box-sizing: border-box; /* ボックスモデルを維持するために必要なスタイル */
  }
  .main03_cont .taisyou_inn .taisyou_left {
    width: 100%;
    float: none;
    margin-bottom: 15px;
  }
  .main03_cont .taisyou_inn .taisyou_left2 {
    width: 100%;
    float: none;
  }
  .main03_cont .taisyou_inn .taisyou_left2 .text_indent {
    display: inline-block;
    padding-left: 1em;
    text-indent: -1em;
  }
  .main03_cont .taisyou_inn dd .chiiki_yellow, .main03_cont .taisyou_inn dd .chiiki_green {
    font-size: 16px;
  }
  .main03_cont .taisyou_inn dd .chiiki_yellow {
    margin-left: 5em;
    text-indent: -5em;
  }
  .main03_cont .taisyou_inn dd .br:after {
    content: "\A";
    white-space: pre;
  }
  .main03_cont .taisyou_inn .chiiki_bubble {
    width: calc(100% + 50px);
    margin-left: -25px;
    margin-right: -25px;
    height: auto;
    padding: 20px 0;
    background: url("../img/main03_taisyou_bubble.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
  .main03_cont .taisyou_inn .chiiki_bubble span {
    display: block;
    justify-content: space-between;
    text-align: center;
    height: auto;
    font-size: 16px;
    letter-spacing: -0.2em;
  }
  @media screen and (max-width: 390px) {
    .main03_cont .taisyou_inn .chiiki_bubble span {
      font-size: 14px;
    }
  }
  .main03_cont .taisyou_outbox .taisyou_out_taisyougai {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap; /* flexアイテムを折り返す（複数行に配置する） */
  }
  .main03_cont .taisyou_inn_taisyougai {
    width: 100%; /* 列の幅を均等に分配し、マージンを考慮して計算 */
    box-sizing: border-box; /* ボックスモデルを維持するために必要なスタイル */
  }
  .main03_cont .taisyou_inn_taisyougai p:last-child {
    font-size: 12px;
    white-space: normal;
    text-indent: -1em;
    margin-left: 1em;
  }
  .main03_cont .taisyou_inn_taisyougai:last-child span {
    display: block;
  }
  .main03_bg1 {
    background: url("../img/main03_bg1.png");
    background-repeat: no-repeat;
    background-position: 185% top;
    background-size: 90% auto;
  }
  .main03_bg2 {
    padding-bottom: 350px;
    background: url("../img/main03_bg2.png");
    background-repeat: no-repeat;
    background-position: -200% bottom;
    background-size: 90% auto;
  }
  .main03_bg1:before {
    right: 0; /* 親要素の外側（左辺）から50%内側 */
    transform: translateX(80%); /* 要素の位置をX軸方向に-50%変える */
    overflow: hidden !important;
  }
  .main03_bg1:after {
    left: 0; /* 親要素の外側（左辺）から50%内側 */
    transform: translateX(50%); /* 要素の位置をX軸方向に-50%変える */
  }
  .main03_imgbox {
    padding-bottom: 200px;
  }
  .main03_imgbox:before {
    content: "";
    display: inline-block;
    width: 300px;
    height: 100px;
    background-image: url('../img/top_img01.png');
    background-position: left top;
    background-size: contain;
    z-index: 9999;
  }
  .main03_cont .project_title {
    margin-bottom: 60px;
    text-align: center;
    font-size: 21px;
    font-weight: bold;
    color: #fff;
  }
  .main03_cont .project_title span {
    display: block;
    color: #f0debd;
  }
  .main03_cont .project_title span:after {
    content: "▶︎";
    display: inline-block;
    color: #ff0000;
  }
  .fadebox1 {
    width: 100%; /* 横幅いっぱい */
    height: 400px; /* 高さを300pxに指定 */
    margin: 0 0 50px; /* 下方向に適度な余白 */
    opacity: 0; /* 初期値は透明にしておく */
    transition: .5s; /* 動くスピードを0.5秒に指定 */
    position: relative; /* 相対位置の設定 */
    top: 50px; /* 事前に下に50pxずらしておく */
  }
  .fadebox2 {
    width: 100%; /* 横幅いっぱい */
    height: 180px;
    margin: 0 0 50px; /* 下方向に適度な余白 */
    opacity: 0; /* 初期値は透明にしておく */
    transition: .5s; /* 動くスピードを0.5秒に指定 */
    position: relative; /* 相対位置の設定 */
    top: 50px; /* 事前に下に50pxずらしておく */
  }
  .active {
    opacity: 1; /* 透明度を元に戻す */
    top: 0; /* ずらしていた位置を戻すことで上に上がっているようにみえる */
  }
  .logo_inn_box {
    width: 100%;
    margin: 0 auto;
  }
  .logo_inn_box:before {
    content: "";
    display: inline-block;
    width: 333px;
    height: 240px;
    background-image: url('../img/logo_inn.png');
    background-size: 50% auto;
    position: absolute;
    bottom: 0;
    left: 0%; /* 親要素の外側（左辺）から50%内側 */
    transform: translate(35%, 160%); /* 要素の位置をX軸方向に-50%変える */
    z-index: 10;
  }
}
/*main04
-------------------------------------*/
.main04 {
 /* padding: 120px 0;*/
	padding-bottom:360px;
  font-family: "zen-maru-gothic", fot-tsukubrdgothic-std, sans-serif;
  font-weight: 700;
  font-style: normal;
/*  background: hsla(211, 91%, 45%, 1.00);*/
}
.main04_cont {
  padding-bottom: 100px;
/*  position: relative;*/
  z-index: 10;
}
.goriyou {
  width: 620px;
  margin: 0 auto;
  padding: 60px 0;
}
.main04 .goriyou table th, .main04 .goriyou table td {
  border-collapse: collapse;
  border: none;
  vertical-align: middle;
}
.goriyou .goriyou_title {
  margin-bottom: 30px;
  color: #5affff;
  font-size: 26px;
  text-align: center !important;
}
.goriyou_title {
  margin-bottom: 30px;
  color: #5affff;
  font-size: 22px;
  text-align: center !important;
}
.main04 .goriyou table tr:nth-child(even) > td:first-child {
  background-image: url('../img/main04_goriyou_title1.png');
  background-size: 120px auto;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.main04 .goriyou table tr:nth-child(odd) > td:first-child {
  background-image: url('../img/main04_goriyou_title2.png');
  background-size: 120px auto;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.main04 .goriyou table td:first-child {
  width: 20%;
  padding: 55px 0;
  color: #172a88;
  font-size: 20px;
  text-align: center;
  line-height: 25px;
}
.main04 .goriyou table td:last-child {
  width: 55%;
  margin-bottom: 30px;
  padding: 35px 0;
  color: #FFF;
  font-weight: 400;
}
.main04 .goriyou table .triangle, .main04 .goriyou table .triangle-2 {
  position: relative;
}
.main04 .goriyou table .triangle:after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: 40%;
  border: 25px solid transparent;
  border-top: 30px solid #5affff; /* 好みで色を変えてください */
}
.main04 .goriyou table .triangle-2:after {
  content: "";
  position: absolute;
  bottom: -15%;
  left: 40%;
  border: 25px solid transparent;
  border-top: 30px solid #5affff; /* 好みで色を変えてください */
}
.goriyou_cont {
  width: 770px;
  margin: 0 auto 60px;
}
.goriyou_cont .title {
  margin-bottom: 40px;
  padding: 10px 0;
  color: #172a88;
  text-align: center;
  font-size: 25px;
  background: #5affff;
  border-radius: 30px;
}
.goriyou_cont .text {
  margin-bottom: 15px;
  padding: 0 20px;
  color: #FFF;
  font-weight: 400;
}
.goriyou_cont .tel_box {
  width: 380px;
  margin: 0 auto 30px;
  color: #FFF;
}
.goriyou_cont .tel_box span:nth-of-type(odd) {
  padding-right: 15px;
  font-size: 20px;
}
.goriyou_cont .tel_box span:nth-of-type(even) {
  font-size: 25px;
}
.goriyou_cont .tel_box span:nth-of-type(5) {
  letter-spacing: 0.5em;
  padding-right: 5px;
}
.goriyou_cont .tel_box_text {
  width: 700px;
  margin: 0 auto;
  padding: 20px 60px;
  color: #FFF;
  font-size: 15px;
  font-weight: 400;
  background: #036eb8;
}
.main04top_link {
  position: absolute;
  bottom: 0;
  left: 50%; /* 親要素の外側（左辺）から50%内側 */
}
.main04top_link img {
  width: 50%;
  height: auto;
}
.main04top_link:hover {
  bottom: 10px;
  transition: 0.5s;
}
@media screen and (min-width: 769px) {
  .main04_cont:before {
    content: "";
    display: inline-block;
    width: 769px;
    height: 458px;
    /*background-image: url('../img/main04_contbg1.png');*/
    background-size: contain;
    position: absolute;
    top: -21.1%;
    right: -60%; /* 親要素の外側（左辺）から50%内側 */
    transform: translate(0, 0); /* 要素の位置をX軸方向に-50%変える */
    z-index: -1;
  }
  .main04_cont:after {
    content: "";
    display: inline-block;
    width: 1609px;
    height: 1830px;
    /*background-image: url('../img/main04_contbg2.png');*/
    background-size: contain;
    position: absolute;
    top: 5%;
    right: -27%; /* 親要素の外側（左辺）から50%内側 */
    transform: translate(0, 0); /* 要素の位置をX軸方向に-50%変える */
    z-index: -1;
  }
  .goriyou:before {
    content: "";
    display: inline-block;
    width: 357px;
    height: 668px;
    /*background-image: url('../img/main04_contbg3.png');*/
    background-size: contain;
    position: absolute;
    top: 10%;
    left: -30%; /* 親要素の外側（左辺）から50%内側 */
    transform: translate(0, 0); /* 要素の位置をX軸方向に-50%変える */
  }
  .goriyou:after {
    content: "";
    display: inline-block;
    width: 253px;
    height: 210px;
    /*background-image: url('../img/main04_contbg4.png');*/
    background-size: contain;
    position: absolute;
    bottom: 20%;
    left: -20%; /* 親要素の外側（左辺）から50%内側 */
    transform: translate(0, 0); /* 要素の位置をX軸方向に-50%変える */
  }
  .goriyou_cont .tel_box:before {
    content: "";
    display: inline-block;
    width: 253px;
    height: 210px;
    /*background-image: url('../img/main04_contbg5.png');*/
    background-size: contain;
    position: absolute;
    bottom: 5%;
    right: -20%; /* 親要素の外側（左辺）から50%内側 */
    transform: translate(0, 0); /* 要素の位置をX軸方向に-50%変える */
  }
  .main04_bgcont:before {
    content: "";
    display: inline-block;
    width: 791px;
    height: 541px;
    /*background-image: url('../img/main04_contbg6.png');*/
    background-size: contain;
    position: absolute;
    bottom: -17%;
    left: -40%; /* 親要素の外側（左辺）から50%内側 */
    transform: translate(0, 0); /* 要素の位置をX軸方向に-50%変える */
    z-index: -1
  }
  .main04_bgcont:after {
    content: "";
    display: inline-block;
    width: 282px;
    height: 223px;
    /*background-image: url('../img/main04_contbg7.png');*/
    background-size: contain;
    position: absolute;
    bottom: -8%;
    right: -10%; /* 親要素の外側（左辺）から50%内側 */
    transform: translate(0, 0); /* 要素の位置をX軸方向に-50%変える */
    z-index: -1
  }
}
@media screen and (max-width: 768px) {
  .main04_cont:before {
    content: "";
    display: inline-block;
    width: 707px;
    height: 458px;
    /*background-image: url('../img/main04_contbg1.png');*/
    background-size: 50% auto;
    position: absolute;
    top: -11%;
    left: 63%; /* 親要素の外側（左辺）から50%内側 */
    transform: translate(0, 0); /* 要素の位置をX軸方向に-50%変える */
  }
  .main04_cont:after {
    content: "";
    display: inline-block;
    width: 965px;
    height: 1098px;
    /*background-image: url('../img/main04_contbg2-a.png');*/
    background-size: 60% auto;
    position: absolute;
    top: -1%;
    left: -40%; /* 親要素の外側（左辺）から50%内側 */
    transform: translate(0, 0); /* 要素の位置をX軸方向に-50%変える */
    z-index: -1;
  }
  .goriyou:before {
    content: "";
    display: inline-block;
    width: 357px;
    height: 668px;
    /*background-image: url('../img/main04_contbg3.png');*/
    background-size: 50% auto;
    position: absolute;
    bottom: 15%;
    left: -25%; /* 親要素の外側（左辺）から50%内側 */
    transform: translate(0, 0); /* 要素の位置をX軸方向に-50%変える */
    z-index: -1;
  }
  .goriyou:after {
    content: "";
    display: inline-block;
    width: 182px;
    height: 298px;
    /*background-image: url('../img/main04_contbg2-b.png');*/
    background-size: 80% auto;
    position: absolute;
    top: 4%;
    right: -15%;
    transform: translate(0, 0);
    z-index: -1;
  }
  .goriyou_cont .tel_box:before {
    content: "";
    display: inline-block;
    width: 253px;
    height: 210px;
    /*background-image: url('../img/main04_contbg5.png');*/
    background-size: 50% auto;
    position: absolute;
    bottom: -3%;
    right: -20%; /* 親要素の外側（左辺）から50%内側 */
    transform: translate(0, 0); /* 要素の位置をX軸方向に-50%変える */
  }
  .main04_bgcont:before {
    content: "";
    display: inline-block;
    width: 791px;
    height: 541px;
    /*background-image: url('../img/main04_contbg6.png');*/
    background-size: 40% auto;
    position: absolute;
    bottom: -25%;
    left: -10%; /* 親要素の外側（左辺）から50%内側 */
    transform: translate(0, 0); /* 要素の位置をX軸方向に-50%変える */
    z-index: -1
  }
  .main04_bgcont:after {
    content: "";
    display: inline-block;
    width: 282px;
    height: 223px;
    /*background-image: url('../img/main04_contbg7.png');*/
    background-size: 50% auto;
    position: absolute;
    bottom: -12%;
    right: -40%; /* 親要素の外側（左辺）から50%内側 */
    transform: translate(0, 0); /* 要素の位置をX軸方向に-50%変える */
    z-index: -1
  }
  .main04 {}
  .main04_cont {}
  .goriyou {
    width: 100%;
    margin: 0 auto 50px;
    padding: 70px 0;
  }
  .goriyou_title {
    margin-bottom: 30px;
    color: #5affff;
    font-size: 22px;
    text-align: center !important;
  }
  .main04 .goriyou table tr:nth-child(even) > td:first-child {
    background-image: url('../img/main04_goriyou_title1.png');
    background-size: 100% auto;
    background-position: 50% 50%;
    background-repeat: no-repeat;
  }
  .main04 .goriyou table tr:nth-child(odd) > td:first-child {
    background-image: url('../img/main04_goriyou_title2.png');
    background-size: 100% auto;
    background-position: 50% 50%;
    background-repeat: no-repeat;
  }
  .main04 .goriyou table td:first-child {
    width: 20%;
    padding: 55px 0;
    color: #172a88;
    font-size: 18px;
    text-align: center;
    line-height: 25px;
  }
  .main04 .goriyou table td:last-child {
    width: 55%;
    margin-bottom: 30px;
    padding: 35px 0 35px 10px;
    color: #FFF;
  }
  .main04 .goriyou table .triangle:after {
    content: "";
    position: absolute;
    bottom: -20%;
    left: 40%;
    border: 25px solid transparent;
    border-top: 30px solid #5affff; /* 好みで色を変えてください */
  }
  .main04 .goriyou table .triangle-2:after {
    content: "";
    position: absolute;
    bottom: -15%;
    left: 40%;
    border: 25px solid transparent;
    border-top: 30px solid #5affff; /* 好みで色を変えてください */
  }
  .goriyou_cont {
    width: 100%;
    margin: 0 auto 60px;
  }
  .goriyou_cont .title {
    margin-bottom: 40px;
    padding: 10px 0;
    color: #172a88;
    text-align: center;
    font-size: 25px;
    background: #5affff;
    border-radius: 30px;
  }
  .goriyou_title .br {
    content: "\A" !important;
    white-space: pre !important;
  }
  .goriyou_cont .text {
    margin-bottom: 15px;
    padding: 0 20px;
    color: #FFF;
  }
  .goriyou_cont .tel_box {
    width: 100%;
    margin: 0 auto 30px;
    color: #FFF;
  }
  .goriyou_cont .tel_box a {
    color: #FFF;
  }
  .goriyou_cont .tel_box span:nth-of-type(odd) {
    padding-right: 15px;
    font-size: 20px;
  }
  .goriyou_cont .tel_box span:nth-of-type(even) {
    font-size: 25px;
  }
  .goriyou_cont .tel_box span:nth-of-type(5) {
    letter-spacing: 0.5em;
    padding-right: 5px;
  }
  .goriyou_cont .tel_box_text {
    width: 100%;
    margin: 0 auto;
    padding: 20px 30px;
    color: #FFF;
    font-size: 15px;
    background: #036eb8;
  }
}
/*main05
-------------------------------------*/
@media screen and (min-width: 769px) {}
.mov_box_inn a:after {
  content: "▶︎"; /*好みの文章に変更してください。*/
  display: block;
  color: #fff;
  line-height: 48px;
  width: 20%;
  border: solid 1px #fff;
  border-radius: 5px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -1em;
  margin-left: -45px;
  opacity: 0;
  z-index: 3;
  transition: 0.3s;
  font-weight: bold;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .message_textbox .message_title .br:after {
    content: "\A";
    white-space: pre;
  }
}
/*footer
-------------------------------------*/
footer {
  padding-bottom: 120px;
  background: #FFF;
}
.foot_cont {
  padding: 120px 0 150px 0;
}
.foot_menu {
  margin-bottom: 60px;
}
.foot_menu ul {
  width: 100%;
  margin: 0 auto;
  list-style-type: none;
  display: flex;
  flex-wrap: nowrap; /* flexアイテムを折り返す（複数行に配置する） */
}
.foot_menu li {
  width: calc(14% - 0px); /* 列の幅を均等に分配し、マージンを考慮して計算 */
  text-align: center;
  font-size: 14px;
}
.foot_menu li + li {
  border-left: 1px solid #5d8dc9 !important;
}
.foot_menu li a {
  padding: 0 5px;
  color: #5d8dc9;
  letter-spacing: -0.1em;
}
.foot_menu li a:hover {
  text-decoration: underline;
}
.foot_logo {
  text-align: center;
  margin-bottom: 30px;
}
.foot_logo #foot_logo img {
  width: 240px;
  height: auto;
}
.foot_logo .text {
  padding-top: 20px;
  color: #55c3b3;
  font-size: 14px;
}
#foot_tel {
  width: 300px;
  margin: 0 auto 50px;
  font-family: bahnschrift, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #7a6a56;
}
#foot_tel .title {
  margin-bottom: 5px;
  padding: 3px 0;
  color: #FFF;
  font-size: 14px;
  text-align: center;
  background: #70c4bf;
}
#foot_tel .tel {
  margin: -10px 0 0 0;
  padding: 0;
  dispkay: inline-block;
  font-size: 30px;
  text-align: center;
}
#foot_tel .tel a {
  color: #7a6a56;
}
#foot_tel .time {
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}
.foot_address {
  width: 380px;
  margin: 0 auto;
  font-size: 14px;
}
.foot_address p {
  margin-bottom: 20px;
  color: #55c3b3;
  text-align: center;
}
.foot_address .address span {
  padding-left: 10px;
  font-size: 12px;
}
@media screen and (min-width: 769px) {
  .foot_cont > .top_link, .foot_cont > .foot_btn, .foot_cont > .foot_mainlogo {
    text-align: center;
  }
  .foot_cont > .top_link {
    position: absolute;
    top: 5%;
    left: 50%; /* 親要素の外側（左辺）から50%内側 */
  }
  .top_link:hover {
    top: -1px;
    transition: 0.5s;
  }
  .foot_btn.kiran {
    opacity: 1;
    overflow: hidden;
    position: relative;
    cursor: pointer;
  }
  .foot_btn.kiran::before {
    background-color: #fff;
    content: "";
    display: block;
    position: absolute;
    top: -100px;
    left: 0;
    width: 30px;
    height: 100%;
    opacity: 0;
    transition: cubic-bezier(0.32, 0, 0.67, 0);
  }
  .foot_btn.kiran:hover::before {
    animation: kiran 0.5s linear;
  }
  @keyframes kiran {
    0% {
      transform: scale(2) rotate(45deg);
      opacity: 0;
    }
    20% {
      transform: scale(20) rotate(45deg);
      opacity: 0.6;
    }
    40% {
      transform: scale(30) rotate(45deg);
      opacity: 0.4;
    }
    80% {
      transform: scale(45) rotate(45deg);
      opacity: 0.2;
    }
    100% {
      transform: scale(50) rotate(45deg);
      opacity: 0;
    }
  }
}
@media screen and (max-width: 768px) {
  .foot_cont {
    position: relative;
    padding: 120px 0 150px 0;
    z-index: 10;
  }
  .foot_menu {
    margin-bottom: 60px;
  }
  .foot_menu ul {
    width: 100%;
    margin: 0 auto;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap; /* flexアイテムを折り返す（複数行に配置する） */
  }
  .foot_menu li {
    width: auto; /* 列の幅を均等に分配し、マージンを考慮して計算 */
    text-align: center;
    font-size: 14px;
  }
  .foot_menu li + li {
    border-left: 1px solid #5d8dc9 !important;
  }
  .foot_menu li a {
    padding: 0 10px;
    color: #5d8dc9;
    letter-spacing: -0.1em;
  }
  .foot_menu li a:hover {
    text-decoration: underline;
  }
  .foot_logo {
    text-align: center;
    margin-bottom: 30px;
  }
  .foot_logo #foot_logo img {
    width: 240px;
    height: auto;
  }
  .foot_logo .text {
    padding-top: 20px;
    color: #55c3b3;
    font-size: 14px;
  }
  #foot_tel {
    width: 100%;
    margin: 0 auto 50px;
    max-width: 300px;
  }
  #foot_tel .title {
    margin-bottom: 5px;
    padding: 3px 0;
    color: #FFF;
    font-size: 14px;
    text-align: center;
    background: #70c4bf;
  }
  #foot_tel .tel {
    margin: -10px 0 0 0;
    padding: 0;
    dispkay: inline-block;
    font-size: 30px;
    text-align: center;
  }
  #foot_tel .time {
    font-size: 14px;
    font-weight: bold;
    text-align: center;
  }
  .foot_address {
    width: 350px;
    margin: 0 auto;
    font-size: 14px;
  }
  .foot_address p {
    margin-bottom: 20px;
    color: #55c3b3;
    text-align: center;
  }
  .foot_address .address a {
    color: #333;
  }
  .foot_address .address span {
    padding-left: 10px;
    font-size: 12px;
  }
}
.copyright {
  color: #55c3b3;
  text-align: center;
}
/*-------------------------------------



-------------------------------------*/
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}
.clearfix:before {
  content: "";
  display: block;
  clear: both;
}
.clearfix {
  display: block;
}
#menu-bg {
  width: 100%;
  background: hsla(171, 47%, 66%, 1.00);
}
#menu {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: nowrap; /* flexアイテムを折り返す（複数行に配置する） */
}
#menu li {
  width: 14.5%;
  margin: 10px auto;
  text-align: center;
}
#menu li a {
  padding: 10px 0;
  color: #FFF;
  text-align: center;
  text-decoration: none;
  font-size: 13px;
  font-family: "a-otf-ud-shin-go-pr6n", sans-serif;
  font-weight: bold;
  font-style: normal; /*
  justify-content: space-between;*/
  /* box-sizing: border-box; */ /* ボックスモデルを維持するために必要なスタイル */
}
#menu li + li {
  border-left: 1px solid #FFF !important;
}
/*#menu li:nth-child(even) > :before {
  content: "｜";
  display: block;
  position: absolute;
  left: -15%;
}
#menu li:nth-child(even) > :after {
  content: "｜";
  display: block;
  position: absolute;
  right: -15%;
  top: 30%;
}*/
#menu li a:hover {
  color: hsla(60, 100%, 86%, 1.00);
}
@media only screen and (min-width: 769px) {
  .header-boxout {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  /*  #toggle {
    display: flex;
    position: relative;
    margin-left: auto;
    top: -30px;
    right: 0;
  }
  #toggle a {
    display: block;
    padding: 12px 0 10px;
    color: hsla(171, 47%, 66%, 1.00);
    text-align: center;
    text-decoration: none;
  }
  #toggle:before {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    width: 30px;
    height: 20px;
    margin-top: -10px;
    background: hsla(171, 47%, 66%, 1.00);
  }
  #toggle a:before, #toggle a:after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    width: 30px;
    height: 4px;
    background: #fff;
  }
  #toggle a:before {
    margin-top: -6px;
  }
  #toggle a:after {
    margin-top: 2px;
  }*/
  #menu-box {
    display: none;
    position: absolute;
    top: 100%;
  }
  #menu {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    flex-wrap: wrap !important;
  }
  #menu li {
    width: 25%;
    height: 3.5em;
    padding: 1.5rem 0;
    margin: 0;
    line-height: 1em;
  }
/*  #menu li:nth-child(2) {
    padding-top: 0.5rem;
  }*/
  #menu li:nth-child(-n+4) {
    border-bottom: 1px solid #FFF !important;
  }
  #menu li:last-child {
    border-right: 1px solid #FFF !important;
  }
  #menu li a {
    font-size: 10px;
  }
  #menu .br:after {
    content: "\A";
    white-space: pre;
  }
  /*=============================
.btn-trigger
=============================*/
  .btn-trigger {
    display: block;
    position: fixed;
    top: 90px;
    right: 20px;
    width: 30px;
    height: 30px;
    cursor: pointer;
  }
  .btn-trigger span {
    position: absolute;
    right: 0;
    width: 100%;
    height: 4px;
    background: hsla(171, 47%, 66%, 1.00);
    border-radius: 4px;
  }
  .btn-trigger, .btn-trigger span {
    display: inline-block;
    transition: all .5s;
    box-sizing: border-box;
  }
  .btn-trigger span:nth-of-type(1) {
    top: 5px;
  }
  .btn-trigger span:nth-of-type(2) {
    top: 15px;
  }
  .btn-trigger span:nth-of-type(3) {
    bottom: 0;
  }
  /*=============================
#btn05
=============================*/
  #btn05.active span:nth-of-type(1) {
    -webkit-transform: translateY(10px) rotate(-45deg);
    transform: translateY(10px) rotate(-45deg);
  }
  #btn05.active span:nth-of-type(2) {
    left: 50%;
    opacity: 0;
    -webkit-animation: active-btn05-bar02 .8s forwards;
    animation: active-btn05-bar02 .8s forwards;
  }
  @-webkit-keyframes active-btn05-bar02 {
    100% {
      height: 0;
    }
  }
  @keyframes active-btn05-bar02 {
    100% {
      height: 0;
    }
  }
  #btn05.active span:nth-of-type(3) {
    -webkit-transform: translateY(-10px) rotate(45deg);
    transform: translateY(-10px) rotate(45deg);
  }
  /*  #menu li:nth-child(4) {
    border-left: none !important;
  }*/
  /*
  #menu li {
    display: block;
    float: left;
    width: 50%;
    margin: 0;
    padding: 0;
  }
  #menu li a {
    display: block;
    padding: 20px 0;
    color: #604C3F;
    text-align: center;
    text-decoration: none;
    font-family: "a-otf-ud-shin-go-pr6n", sans-serif;
    font-weight: bold;
    font-style: normal;
  }*/
}
/*#page-top {
	position: fixed;
	padding: 1em 2em;
	z-index: 9999;
	right: 0;
	bottom: 0;
}
#page-top a {
	color: hsl(0, 0%, 100%);
	text-align: center;
	text-decoration: none;
	width: 40px;
	background: hsl(7, 78%, 75%);
	border: 2px solid #fff;
	border-radius: 50%;
	aspect-ratio: 1 / 1;
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	transition: .3s all;
}
#page-top a:hover {
	background: hsl(7, 78%, 80%);
}
#page-top img {
	width: 15px;
}

@media screen and (max-width: 899px) {
	#page-top {
		padding: 1em;
	}
}*/
/*-------------------------------------

トップへ戻るボタン

-------------------------------------*/
#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}
#page-top a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fecb6e;
  display: block;
}
.yajirushi::before, .yajirushi::after {
  content: '';
  width: 20px;
  height: 6px;
  background-color: snow;
  position: absolute;
  border-radius: 3px;
}
.yajirushi::before {
  transform: translate(22px, 22px) rotate(45deg);
}
.yajirushi::after {
  transform: translate(10px, 22px) rotate(-45deg);
}