@charset "utf-8";
/***********************
    common
***********************/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP&family=Noto+Serif+JP:wght@200..900&display=swap');
*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
	font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  color: #000;
  background: #fff;
  overflow-wrap: break-word;
  overflow-x: hidden;
  overflow-y: auto;
}
img {
	border: 0;
  max-width: 100%
}
p {
  margin: 0;
  line-height: 1.6;
}
/* Link */
a:link {
	color: #000;
	text-decoration: none;
}
a:visited {
	color: #000;
	text-decoration: none;
}
a:hover {
	color: #000;
	text-decoration: none;
  cursor: pointer;
}
a:active {
	color: #000;
	text-decoration: none;
}
/* other */
.mt30 {
  margin-top: 30px;
}
.mt60 {
  margin-top: 60px;
}
.mt120 {
  margin-top: 120px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb60 {
  margin-bottom: 60px;
}
.mb120 {
  margin-bottom: 120px;
}
.font_larger {
  font-size: 1.125em;  
}
.font_xlarger {
  font-size: 1.5em;  
}
.font_xxlarger {
  font-size: 2em;  
}
.font_bold {
  font-weight: 700;
}
.font_black {
  font-weight: 900;
}
.font_serif {
  font-family: "Noto Serif JP", serif;
}
.al_center {
  text-align: center;
  padding: 2.5% 0%;
}
.clear {
	clear: both;
}
/***********************
    header
***********************/
.header_wrap {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(3, 1fr);    
  grid-template-rows: 1fr max-content max-content;  
  gap: 10px;
}
h1 {
  margin: 0;
}
.header_title p {
  font-size: clamp(19px, 5.75vw ,40px);
}
.header_lead {
  background: #fbfaf2;
  padding: 1em 1em 1em calc(1em + 10px);
  grid-column-start: 1;
  grid-row-start: 3;
  width: 90%;
  margin-left: 5%;
  z-index: 10;
}
.header_img {
  grid-column-start: 1;
  grid-row-start: 2;
}
/***********************
    main
***********************/
main section {
  padding: 0 10px;
}
main section h2 {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  margin-bottom: 30px;
}
main section h3 {
  font-size: 1em;
}
section.works {
  margin-top: 60px;
}
.works_box dt h3 {
  display: block;
  text-align: center;
  position: relative;
}
.works_box dt h3::before {
  content: " ";
  display: block;
  background: #4bd99e;
  width: 3em;
  height: 1em;
  position: absolute;
  top: 0;
  left: -10px;
}
.works_box dd {
  margin-top: 10px;
}
section.future {
  background: #fbfaf2;
  margin-top: 60px;
  padding: 60px 10px;
}
.future_box h3 {
  text-align: center;
  padding: 20px 0;
}
span.green_txt {
  color: #4bd99e;
  font-weight: 700;
}
section.flow {
  background: #f2f0e3;
  padding: 60px 10px;
}
.flow_box {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-template-rows: 0px max-content max-content;  
  gap: 0px;
  position: relative;
}
.flow_box dt {
  content: " ";
  display: flex;
  justify-content: center;
  align-items: center;
  background: #4bd99e;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  z-index: 10;
  position: absolute;
}
.flow_txt {
  grid-column-start: 1;
  grid-row-start: 3;
  margin-top: 10px;
}
.flow_img {
  grid-column-start: 1;
  grid-row-start: 2;
}
.flow_box dt h3 {
  color: #fff;
  text-align: center;
  line-height: 1.6;
  font-size: 0.8em;
}
section.flow dl:nth-child(even) .flow_img {
  text-align: right;
  margin-right: -10px;
}
section.flow dl:nth-child(odd) .flow_img {
  text-align: left;
  margin-left: -10px;
}
section.slider {
  margin-top: 60px;
}
/***********************
    LINE_icon
***********************/
.IconArea {
	position: fixed;   /* 画面上に固定 */
	bottom: 20px;      /* 画面の下から20px（フッターと重ならないように） */
	right: 20px;       /* 画面の右から20px */
	width: 60px;       /* ボタンの幅 */
	height: 60px;      /* ボタンの高さ */
	display: flex;     /* 中央寄せ */
	align-items: center; /* 縦方向の中央寄せ */
	justify-content: center; /* 横方向の中央寄せ */
	cursor: pointer;   /* クリックできるように */
	box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3); /* 影を追加 */
	transition: 0.3s;  /* ホバー時のアニメーション */
	z-index: 9999;     /* 最前面に固定 */
}
/***********************
    footer
***********************/
footer {
  margin-top: 60px;
}
.footer_img {
  width: 100%;
  height: 300px;
  background: url("../img/img_footer.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
section.footer_info {
  padding: 10px;
  background: #6ead93;
  color: #fff;
  margin-top: -1px;
}
section.footer_info h3 {
  margin-top: 10px;
  margin-bottom: 20px;
  line-height: 1.6; 
}
section.footer_info .tel {
  font-weight: 700;
  font-size: 1.25em;
}
section.footer_info .tel a {
  color: #fff;
}
section.footer_info .home_link {
  display: block;
  margin: 20px auto;
  background: #e2b34d;
  color: #fff;
  padding: 10px;
  text-align: center;
  border-radius: 3px;
  font-weight: 700;
  transition: all 0.3s;
}
section.footer_info .home_link:hover {
  background: #fff;
  color: #e2b34d;
}
footer .map {
  width: 100%;
  height: 90vh;
}
@media screen and (max-width: 480px) { 
/*　画面サイズが480px以下はここを読み込む　*/
  /***********************
    common
  ***********************/
  .show_pc {
    display: none;
  }
  /***********************
    header
  ***********************/
  header {
    padding: 10px 10px 0;
  }
  h1 {
    width: 200px;
  }
  /***********************
    main
  ***********************/
  main section h2 {
    font-size: 1.25em;
  }
  section dl + dl {
    margin-top: 60px;
  }
  .flow_img img {
    width: 80%;
  }
  section.flow dl:nth-child(odd) dt {
    position: absolute;
    top: 0;
    right: 0;
  }
  .slider_wrap {
    position: relative;
  }
  .swipe_wrap {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.5);
    z-index: 10;
  }
  @keyframes return {
    50% {
      left: calc(100% - 96px);
    }
    100% {
      left: 0%;
    }
  }
  .swipe {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(0, -50%);
    
    animation-name: return;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
  }
  /***********************
      footer
  ***********************/
}
@media screen and (min-width: 481px) { 
/*　画面サイズが481pxからはここを読み込む　*/
  /***********************
    common
  ***********************/
  .show_sp {
    display: none;
  }
  a[href^="tel:"] {
    pointer-events: none;
    text-decoration: none;
   }
  /***********************
    header
  ***********************/
  header {
    padding: 10px 10px 0;
  }
  .header_img {
    text-align: right
  }
  .header_img img {
    width: 100%;
    max-width: 600px;
  }
  /***********************
    main
  ***********************/ 
  main section h2 {
    font-size: 1.5em;
    text-align: center;
  }
  .works_wrap {
    display: flex;
    flex-wrap: wrap;
  }
  .works_wrap dl:nth-child(odd) {
    margin-right: 20px;
  }
  .works_wrap dl:nth-of-type(3),
  .works_wrap dl:nth-of-type(4) {
    margin-top: 60px;
  }
  .works_box {
    width: calc(50% - 10px);      
  }
  .works_box dt h3::before {
    left: 0;
  }
  .future_box {
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }
  .future_wrap dl+dl {
    margin-top: 60px;
  }
  .flow_box {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);  
  }
  section.flow dl+dl {
    margin-top: 60px;
  }
  .flow_box dt {
    position: relative;
    margin: 10px 20px 0 10px;
  }
  .flow_txt {
    grid-column-start: 1;
    grid-row-start: 2;
    
  }
  .flow_img {
    grid-row: span 2 / span 2;
    grid-column-start: 2;
    grid-row-start: 1;
  }
  .flow_box.evenbox dt {
    grid-column-start: 2;
    grid-row-start: 1;
    margin: 10px 10px 0 20px;
  }
  .flow_box.evenbox .flow_txt {
    grid-column-start: 2;
    grid-row-start: 2;
    padding: 0 10px 0 20px;
  }
  .flow_box.evenbox .flow_img {
    grid-row: span 2 / span 2;
    grid-column-start: 1;
    grid-row-start: 1;
  }
  /***********************
    footer
  ***********************/
  footer {
    margin-top: 120px;
  }
}
@media screen and (min-width: 768px) { 
/*　画面サイズが768pxからはここを読み込む　*/
  /***********************
    common
  ***********************/
  /***********************
    header
  ***********************/
  .header_wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 10px;
  }
  .header_title {
    grid-column-start: 1;
    grid-row-start: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding-bottom: 20px;
  }
  .header_title p {
    font-size: clamp(19px, 2.75vw ,32px);
  }
  .header_lead {
    grid-column-start: 1;
    grid-row-start: 2;
    padding: 10px;
    margin-left: 2%;
    text-align: right;
    width: 100%;
    background: transparent;
  }
  .header_lead p {
    display: inline-block;
    width: 44vw;
    text-align: left;
  }
  .header_img {
    grid-row: span 2 / span 2;
    grid-column-start: 2;
    grid-row-start: 1;
  }
  .header_img img {
    max-width: 800px;
  }
  /***********************
    main
  ***********************/ 
  main section h2 + p {
    text-align: center;
  }
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .flow .container {
    max-width: 960px;
  }
  /***********************
    footer
  ***********************/
  .footer_info_wrap {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    /*要素に合わせて高さを可変させたいものにmax-content、残りの幅に合わせて高さを調整させたいものに1frを指定*/      
    grid-template-rows: auto max-content max-content max-content 1fr ;
    gap: 10px;
  }
  .footer_info_wrap p:last-child {
    grid-column-start: 2;
  }
  section.footer_info .home_link {
    width: 300px;
    margin: 0;
  }
  .footer_info_wrap p.tel {
    display: flex;
    align-items: center;
  }
}
@media screen and (min-width: 961px) { 
/*　画面サイズが961pxからはここを読み込む　*/
  /***********************
    common
  ***********************/
  .mt30.responsive {
    margin-top: 60px;
  }
  .mt60.responsive {
    margin-top: 120px;
  }
  .mt120.responsive {
    margin-top: 240px;
  }
  /***********************
    header
  ***********************/
  .header_wrap {
    max-width: 1600px;
    margin: 0 auto;
  }
  /***********************
    main
  ***********************/ 
  .header_lead p {
    max-width: 32em;
  }
  .works_wrap dl:nth-child(odd) {
    margin-right: 60px;
  }
  .works_box {
    width: calc(50% - 30px);      
  }
  .future_wrap {
    display: flex;
  }
  .future_box {
    width: calc(33.3% - 10px);
    margin: 0;
  }
  .future_wrap dl + dl {
    margin-top: 0;
  }
  .future_wrap dl:nth-of-type(3n-1) {
    margin: 0 30px;
  }
  .flow_box dt {
    width: 130px;
    height: 130px;
  }
  .flow_box dt h3 {
    font-size: 1em;
  }
  section.flow dl+dl {
    margin-top: 120px;
  }
  /***********************
    footer
  ***********************/
}
@media screen and (min-width: 1201px) {
  /***********************
    common
  ***********************/
  /***********************
    header
  ***********************/
  .header_lead {
    padding-top: 30px;
  }
  .header_lead p {
    line-height: 2;
  }
  /***********************
    main
  ***********************/
  section.works {
    margin-top: 120px;
  }
  .works_box img {
    width: 100%;
  }
  .works_wrap dl:nth-of-type(3), 
  .works_wrap dl:nth-of-type(4) {
    margin-top: 120px;
  }
  section.future {
    margin-top: 120px;
    padding: 120px 10px;
  }
  section.flow {
    padding: 120px 10px;
  }
  section.slider {
    margin-top: 120px;
  }
  /***********************
    footer
  ***********************/
  .footer_img {
    height: 505px;
  }
  section.footer_info {
    padding: 60px 10px;
  }
}
@media screen and (min-width: 1601px) { 
/*　画面サイズが1601pxからはここを読み込む　*/
  /***********************
    common
  ***********************/
  /***********************
    header
  ***********************/
  /***********************
    main
  ***********************/  
  /***********************
    footer
  ***********************/
}