@charset "UTF-8";
/* CSS Document */


html, body{
  padding: 0;
  margin: 0;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  color: #2A2A2A;
}



.br{
  display: none;
}

/*オープニングアニメーション*/
.loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  opacity: 1;
  visibility: visible;
}

.loading.is-active {
  opacity: 0;
  visibility: hidden;
}

.loading-animation {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #FFFFFF;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}

.loading-animation.is-active {
  opacity: 1;
  visibility: visible;
}
  
.loading img {
　width: 100px;
  height: auto;
　position: absolute;
　top: 50%;
　left: 45%;
　margin-top: -20px;
　margin-left: -20px;
}




/*ここからヘッダー*/
header{
  display: block;
  position: fixed;
  width: 100%;
  height: auto;
  background-color: #FFFFFF;
  box-shadow: 0 0 5px gray;
  z-index: 999990;
}

.header_nk{
  display: flex;
  justify-content: space-between;
  width: 95%;
  height: 50px;
  margin: auto;
}
.header_left a{
  display: block;
  width: 150px;
  padding: 15px 0 0 0;
}
.header_right{
  display: block;
}







/*ハンバーガーメニュー*/
.hamburger-menu {
  width: 50px;
  height: 50px;
  position: relative;
  border: none;
  background: transparent;
  appearance: none;
  padding: 0;
  cursor: pointer;
}
.hamburger-menu__bar {
  display: inline-block;
  width: 44%;
  height: 2px;
  background-color: #67BE9F;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: .5s;
}
.hamburger-menu__bar:first-child {
  top: 16px;
}
.hamburger-menu__bar:nth-child(2) {
  top: 24px;
}
.hamburger-menu__bar:last-child {
  top: 32px;
}
.hamburger-menu--open .hamburger-menu__bar {
  top: 50%;
}
.hamburger-menu--open .hamburger-menu__bar:first-child {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.hamburger-menu--open .hamburger-menu__bar:last-child {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.hamburger-menu--open .hamburger-menu__bar:nth-child(2) {
  display: none;
}
.navigation {
  display: none;
  background-color: #DCECE8;
  position: absolute;
  top: 50px;
  right: 0;
  width: 100%;
  z-index: 9999;
}
.navigation__list {
  text-align: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.navigation__list-item {
  border-bottom: solid 1px #67BE9F;
}
.navigation__list-item:first-child {
  border-top: solid 1px #67BE9F;
}
.navigation__link {
  color: #67BE9F;
  font-weight: 700;
  text-decoration: none;
  display: block;
  padding: 24px 0;
  transition: .5s;
}
@media (hover: hover) and (pointer: fine) {
  .navigation__link:hover {
    background: #FFFFFF;
  }
}




/*ここからメイン*/
main{
  padding-top: 50px;
  overflow: hidden;
}
.main_view{
  display: block;
  position: relative;
  width: 100%;
  height: 50vw;
  background-color: #67BE9F;
  overflow: hidden;
  background-image: url("../img/main_img.png");
  background-size: cover;
  background-position: top center;
}
.main_view_w{
  display: block;
  position: absolute;
  bottom: -7vw;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  height: 10vw;
  background-color: #FFFFFF;
  border-radius: 100%;
}


.content1{
  display: block;
  width: 100%;
  height: auto;
  padding: 50px 0 100px 0;
}
.content1_nk{
  display: block;
  width: 800px;
  margin: auto;
}
.content1_nk h1{
  text-align: center;
}
.h1_hr{
  display: block;
  width: 100px;
  border: 1px solid #36C19D;
}
.st{
  display: block;
  text-align: center;
  margin: 20px auto 0;
}

.content1_flex{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  height: auto;
  margin-top: 50px;
}
.phot_fre{
  display: block;
  width: 300px;
  height: 200px;
  margin-top: 20px;
  border: solid 10px #FFFFFF;
  box-shadow: 3px 3px 5px gray;
  transform: rotate(-5deg);
}
.content1_flex p{
  display: block;
  width: 400px;
}
.content1_flex_p img{
  display: block;
  width: 400px;
  margin-top: 30px;
}
.aka{
  color: red;
  font-weight: bold;
}

.pick_up_st{
  display: block;
  position: relative;
  width: 100%;
  height: 80px;
  background-color: #E5E5E5;
  background-image: url("../img/24161654_s.jpg");
  background-size: cover;
  background-position: bottom center;
}
.pick_up_hr{
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  height: 75%;
  border: solid 2px #36C19D;
  background-color: rgb(255 255 255 / 0.8);
}
.pick_up_st p{
  position: relative;
  text-align: center;
  line-height: 80px;
  font-weight: bold;
}
.pick_up_st p span{
  text-decoration: line-through;
  margin-left: 10px;
}
.pick_up_st p i{
  font-size: 20px;
  color: red;
}



.content2{
  display: flex;
  width: 100%;
  height: 30vw;
  background-color: #E8E8E8;
  overflow: hidden;
}
.content2_left{
  display: block;
  position: relative;
  width: 10%;
  height: 30vw;
  background-color: #67BE9F;
}
.content2_left p{
  display: block;
  position: absolute;
  width: 0%;
  height: 30vw;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-writing-mode: vertical-rl;
  -moz-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -ms-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  text-align: center;
  color: #FFFFFF;
  font-size: 2vw;
}
.content2_right{
  display: block;
  position: relative;
  width: 90%;
  height: 30vw;
  background-image: url("../img/4059596_m.jpg");
  background-size: cover;
  background-position: center center;
}
.content2_right p{
  display: block;
  position: absolute;
  top: 3vw;
  left: -4vw;
  transform: rotate(-20deg);
  font-size: 10vw;
  font-family: "WindSong", cursive;
  font-weight: 500;
  font-style: normal;
  color: #F6BF00;
}


.phot_fre2{
  display: block;
  width: 300px;
  height: 200px;
  margin-top: 20px;
  border: solid 10px #FFFFFF;
  box-shadow: 3px 3px 5px gray;
  transform: rotate(5deg);
}



.content3{
  display: flex;
  width: 100%;
  height: 30vw;
  background-color: #E8E8E8;
  overflow: hidden;
}
.content3_right{
  display: block;
  position: relative;
  width: 10%;
  height: 30vw;
  background-color: #67BE9F;
}
.content3_right p{
  display: block;
  position: absolute;
  width: 0%;
  height: 30vw;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-writing-mode: vertical-rl;
  -moz-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -ms-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  text-align: center;
  color: #FFFFFF;
  font-size: 2vw;
}
.content3_left{
  display: block;
  position: relative;
  width: 90%;
  height: 30vw;
  background-image: url("../img/32578557_m.jpg");
  background-size: cover;
  background-position: bottom center;
}
.content3_left p{
  display: block;
  position: absolute;
  top: 3vw;
  right: -2vw;
  transform: rotate(-20deg);
  font-size: 10vw;
  font-family: "WindSong", cursive;
  font-weight: 500;
  font-style: normal;
  color: #F6BF00;
  z-index: 100;
}

.content1 h2{
  text-align: center;
  margin-top: 50px;
  margin-bottom: -20px;
  color: #FFFFFF;
  background-color: #36C19D;
  border-radius: 10px;
}
.jisseki{
  display: block;
  width: 160px;
}

.content_flex_box{
  display: block;
  position: relative;
  top: 0;
  left: 0;
  width: 240px;
  height: auto;
  margin: auto;
}
.flex_box_phot{
  display: block;
  position: relative;
  width: 100%;
  height: 300px;
  background-color: #EFEFEF;
  margin: auto;
}
.phot1{
  background-image: url("../img/4450789_s.jpg");
  background-size: cover;
  background-position: center center;
}
.phot2{
  background-image: url("../img/32341538_s.jpg");
  background-size: cover;
  background-position: center center;
}
.phot3{
  background-image: url("../img/31974028_s.jpg");
  background-size: cover;
  background-position: center center;
}
.phot_hr{
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  border: solid 2px #36C19D;
  background-color: rgb(255 255 255 / 0.5);
}
.flex_box_phot h2{
  display: block;
  position: absolute;
  top: -20%;
  left: 50%;
  width: 40px;
  height: 40px;
  transform: translateX(-50%);
  background-color: #36C19D;
  color: #FFFFFF;
  text-align: center;
  line-height: 40px;
  border-radius: 100px;
}
.flex_box_phot span{
  display: block;
  position: absolute;
  top: 45%;
  left: 50%;
  width: 80%;
  height: auto;
  transform: translate(-50%, -50%);
  background-color: #FFFFFF;
  padding: 3%;
  color: #222222;
  text-align: center;
}

.content_flex_box p{
  display: block;
  width: 100%;
  font-size: 13px;
  text-align: justify;
}




.contact{
  display: block;
  width: 800px;
  height: auto;
  border-top: 2px dotted #36C19D;
  border-bottom: 2px dotted #36C19D;
  margin: 0 auto 0px;
}

.contact_tel{
  text-align: center;
  width: 600px;
  margin: 30px auto;
  background-color: #36C19D;
  border-radius: 10px;
  padding: 30px 0;
}
.contact img{
  display: block;
  width: 300px;
  margin: 30px auto;
}
.contact_tel a{
  display: block;
  text-align: center;
  font-weight: 800;
  font-size: 30px;
  line-height: 30px;
  color: #FFECC9;
  text-decoration: none!important;
  text-shadow: 0 0 5px gray;
}
.contact_uktk{
  display: block;
  text-align: center;
  width: 80%;
  margin: 20px auto 0;
  background-color: #FFFFFF;
  font-size: 15px;
}
.contact_tel span{
  display: block;
  color: red;
}





footer{
  display: block;
  position: relative;
  width: 100%;
  height: 270px;
  background-color: #36C19D;
  overflow: hidden;
}
.footer_up{
  display: block;
  width: 100%;
  height: 20px;
  background-color: #E1E1E1;
}
.footer_under{
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background-color: #8DD9C9;
  color: #FFFFFF;
  text-align: center;
  line-height: 30px;
  font-size: 10px;
}
.footer_nk{
  display: block;
  width: 800px;
  height: auto;
  margin: auto;
}
.footer_nk img{
  display: block;
  width: 300px;
  margin: 40px auto 0;
}
.footer_nk_flex{
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.footer_nk_flex a{
  display: block;
  padding: 0 10px;
  text-decoration: none;
  color: #FFECC9;
  border-right: solid 1px #FFECC9;
  font-size: 14px;
}
.footer_nk_flex a:nth-child(5){
  border-right: none;
}








.content_main_view{
  display: block;
  position: relative;
  width: 100%;
  height: 20vw;
  background-color: #67BE9F;
  overflow: hidden;
  background-image: url("../img/content_main_img.png");
  background-size: cover;
  background-position: top center;
}


/*個人情報取扱について*/
.main_view_sub{
  display: block;
  position: relative;
  width: 100%;
  height: 230px;
  margin: auto;
  background-color: #D9E2D9;
}
.main_view_sub h1{
  text-align: center;
  line-height: 320px;
  font-size: 2.5rem;
  font-weight: 500;
  color: #002B00;
}
.main_view_sub_content{
  display: block;
  width: 95%;
  max-width: 800px;
  margin: 80px auto 0;
  padding-bottom: 50px;
}
.main_view_sub_content h3{
  display: block;
  text-align: center;
  background-color: #36C19D;
  color: #FFFFFF;
  padding: 10px 0;
  border-radius: 10px;
}
.main_view_sub_content h5{
  color: #00C49C;
}

.list span{
  display: block;
  font-size: 0.8rem;
}





.company{
  display: block;
  width: 100%;
  height: auto;
  padding: 50px 0 50px 0;
}
.company{
  display: block;
  width: 800px;
  margin: auto;
}
.company h1{
  text-align: center;
}
.h1_hr{
  display: block;
  width: 100px;
  border: 1px solid #36C19D;
}
.company span{
  display: block;
  text-align: center;
  margin: 20px auto 0;
}
.company_nk{
  display: block;
  position: relative;
  width: 95%;
  max-width: 1000px;
  height: auto;
  padding: 80px 0 50px 0;
  margin: auto;
}

.company_nk table{
  display: block;
  width: 100%;
  max-width: 1000px;
  margin: auto;
  background-color: #EEFAF8;
  border: dotted 1px #36C19D;
  padding: 20px;
}
.company_nk table tr{
  width: 100%;
  display: block;
  border-bottom: dotted 1px #36C19D;
  padding: 5px 0;
}
.company_nk table tr th{
  width: 200px;
  text-align: center;
  padding-left: 20px;
  height: 60px;
  background-color: #FFFFFF;
  color: #36C19D;
  font-weight: 500;
}
.company_nk table tr td{
  width: 700px;
  text-align: start;
  padding-left: 20px;
  height: 60px;
  background-color: #FFFFFF;
  color: #2D2D2D;
  font-weight: 500;
  text-decoration: none!important;
}
.company_nk table tr td a{
  color: #2D2D2D;
  text-decoration: none!important;
}


.space{
  display: block;
  height: 100px;
}





@media screen and (max-width: 600px) {
	/* 600px以下に適用されるCSS（スマホ用） */
  
  
  
.br{
  display: block;
}
  
  /*オープニングアニメーション*/
.loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  opacity: 1;
  visibility: visible;
}

.loading.is-active {
  opacity: 0;
  visibility: hidden;
}

.loading-animation {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #FFFFFF;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}

.loading-animation.is-active {
  opacity: 1;
  visibility: visible;
}
  
.loading img {
　width: 100px;
  height: auto;
　position: absolute;
　top: 50%;
　left: 45%;
　margin-top: -20px;
　margin-left: -20px;
}




/*ここからヘッダー*/
header{
  display: block;
  position: fixed;
  width: 100%;
  height: auto;
  background-color: #FFFFFF;
  box-shadow: 0 0 5px gray;
  z-index: 999990;
}

.header_nk{
  display: flex;
  justify-content: space-between;
  width: 95%;
  height: 50px;
  margin: auto;
}
.header_left a{
  display: block;
  width: 150px;
  padding: 15px 0 0 0;
}
.header_right{
  display: block;
}







/*ハンバーガーメニュー*/
.hamburger-menu {
  width: 50px;
  height: 50px;
  position: relative;
  border: none;
  background: transparent;
  appearance: none;
  padding: 0;
  cursor: pointer;
}
.hamburger-menu__bar {
  display: inline-block;
  width: 44%;
  height: 2px;
  background-color: #67BE9F;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: .5s;
}
.hamburger-menu__bar:first-child {
  top: 16px;
}
.hamburger-menu__bar:nth-child(2) {
  top: 24px;
}
.hamburger-menu__bar:last-child {
  top: 32px;
}
.hamburger-menu--open .hamburger-menu__bar {
  top: 50%;
}
.hamburger-menu--open .hamburger-menu__bar:first-child {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.hamburger-menu--open .hamburger-menu__bar:last-child {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.hamburger-menu--open .hamburger-menu__bar:nth-child(2) {
  display: none;
}
.navigation {
  display: none;
  background-color: #DCECE8;
  position: absolute;
  top: 50px;
  right: 0;
  width: 100%;
  z-index: 9999;
}
.navigation__list {
  text-align: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.navigation__list-item {
  border-bottom: solid 1px #67BE9F;
}
.navigation__list-item:first-child {
  border-top: solid 1px #67BE9F;
}
.navigation__link {
  color: #67BE9F;
  font-weight: 700;
  text-decoration: none;
  display: block;
  padding: 24px 0;
  transition: .5s;
}
@media (hover: hover) and (pointer: fine) {
  .navigation__link:hover {
    background: #FFFFFF;
  }
}




/*ここからメイン*/
main{
  padding-top: 50px;
  overflow: hidden;
}
.main_view{
  display: block;
  position: relative;
  width: 100%;
  height: 115vw;
  background-color: #67BE9F;
  overflow: hidden;
  background-image: url("../img/main_img_sp.png");
  background-size: cover;
  background-position: top center;
}
.main_view_w{
  display: block;
  position: absolute;
  bottom: -6vw;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 10vw;
  background-color: #FFFFFF;
  border-radius: 100%;
}


.content1{
  display: block;
  width: 100%;
  height: auto;
  padding: 5vw 0 10vw 0;
}
.content1_nk{
  display: block;
  width: 95%;
  margin: auto;
}
.content1_nk h1{
  text-align: center;
  font-size: 8vw
}
.h1_hr{
  display: block;
  width: 100px;
  border: 1px solid #36C19D;
  margin-top: -2vw;
}
.st{
  display: block;
  text-align: center;
  margin: 4vw auto 0;
}

.content1_flex{
  display: block;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  height: auto;
  margin: 5vw auto 0;
}
.phot_fre{
  display: block;
  width: 90%;
  height: auto;
  margin: 4vw auto;
  border: solid 10px #FFFFFF;
  box-shadow: 3px 3px 5px gray;
  transform: rotate(-0deg);
}
.phot_fre2{
  display: block;
  width: 90%!important;
  height: auto!important;
  margin: 4vw auto;
  border: solid 10px #FFFFFF;
  box-shadow: 3px 3px 5px gray;
  transform: rotate(0deg)!important;
}
.content1_flex p{
  display: block;
  width: 100%;
}
.content1_flex_p img{
  display: block;
  width: 100%;
  margin-top: 5vw;
}
.aka{
  color: red;
  font-weight: bold;
}

.pick_up_st{
  display: block;
  position: relative;
  width: 100%;
  height: 20vw;
  background-color: #E5E5E5;
  background-image: url("../img/24161654_s.jpg");
  background-size: cover;
  background-position: bottom center;
}
.pick_up_hr{
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  height: 75%;
  border: solid 2px #36C19D;
  background-color: rgb(255 255 255 / 0.8);
}
.pick_up_st p{
  position: relative;
  text-align: center;
  line-height: 20vw;
  font-weight: bold;
}
.pick_up_st p span{
  text-decoration: line-through;
  margin-left: 10px;
}
.pick_up_st p i{
  font-size: 7vw;
  color: red;
}



.content2{
  display: flex;
  width: 100%;
  height: 50vw;
  background-color: #E8E8E8;
  overflow: hidden;
}
.content2_left{
  display: block;
  position: relative;
  width: 20%;
  height: 50vw;
  background-color: #67BE9F;
}
.content2_left p{
  display: block;
  position: absolute;
  width: 0%;
  height: 50vw;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-writing-mode: vertical-rl;
  -moz-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -ms-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  text-align: center;
  color: #FFFFFF;
  font-size: 3.5vw;
}
.content2_right{
  display: block;
  position: relative;
  width: 80%;
  height: 50vw;
  background-image: url("../img/4059596_m.jpg");
  background-size: cover;
  background-position: center center;
}
.content2_right p{
  display: block;
  position: absolute;
  top: 5vw;
  left: -4vw;
  transform: rotate(-20deg);
  font-size: 15vw;
  font-family: "WindSong", cursive;
  font-weight: 500;
  font-style: normal;
  color: #F6BF00;
}






.content3{
  display: flex;
  width: 100%;
  height: 50vw;
  background-color: #E8E8E8;
  overflow: hidden;
}
.content3_right{
  display: block;
  position: relative;
  width: 20%;
  height: 50vw;
  background-color: #67BE9F;
}
.content3_right p{
  display: block;
  position: absolute;
  width: 0%;
  height: 50vw;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-writing-mode: vertical-rl;
  -moz-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -ms-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  text-align: center;
  color: #FFFFFF;
  font-size: 3.5vw;
}
.content3_left{
  display: block;
  position: relative;
  width: 80%;
  height: 50vw;
  background-image: url("../img/32578557_m.jpg");
  background-size: cover;
  background-position: bottom center;
}
.content3_left p{
  display: block;
  position: absolute;
  top: 5vw;
  right: -2vw;
  transform: rotate(-20deg);
  font-size: 15vw;
  font-family: "WindSong", cursive;
  font-weight: 500;
  font-style: normal;
  color: #F6BF00;
  z-index: 100;
}

.content1 h2{
  text-align: center;
  margin-top: 5vw;
  margin-bottom: 3vw;
  color: #FFFFFF;
  background-color: #36C19D;
  border-radius: 10px;
  padding: 3vw 0;
}
.jisseki{
  display: block;
  width: 100%;
}

.content_flex_box{
  display: block;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  margin: 10vw auto;
}
.flex_box_phot{
  display: block;
  position: relative;
  width: 100%;
  height: 80vw;
  background-color: #EFEFEF;
  margin: auto;
}
.phot1{
  background-image: url("../img/4450789_s.jpg");
  background-size: cover;
  background-position: center center;
}
.phot2{
  background-image: url("../img/32341538_s.jpg");
  background-size: cover;
  background-position: center center;
}
.phot3{
  background-image: url("../img/31974028_s.jpg");
  background-size: cover;
  background-position: center center;
}
.phot_hr{
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 91%;
  height: 90%;
  border: solid 2px #36C19D;
  background-color: rgb(255 255 255 / 0.5);
}
.flex_box_phot h2{
  display: block;
  position: absolute;
  top: -10%;
  left: 50%;
  width: 15vw;
  height: 9vw;
  transform: translateX(-50%);
  background-color: #36C19D;
  color: #FFFFFF;
  text-align: center;
  line-height: 9vw;
  border-radius: 100vw;
}
.flex_box_phot span{
  display: block;
  position: absolute;
  top: 45%;
  left: 50%;
  width: 80%;
  height: auto;
  transform: translate(-50%, -50%);
  background-color: #FFFFFF;
  padding: 3%;
  color: #222222;
  text-align: center;
}

.content_flex_box p{
  display: block;
  width: 100%;
  font-size: 13px;
  text-align: justify;
}




.contact{
  display: block;
  width: 90%;
  height: auto;
  border-top: 2px dotted #36C19D;
  border-bottom: 2px dotted #36C19D;
  margin: 0 auto 0px;
}

.contact_tel{
  text-align: center;
  width: 100%;
  margin: 30px auto;
  background-color: #36C19D;
  border-radius: 10px;
  padding: 30px 0;
}
.contact img{
  display: block;
  width: 80%;
  margin: 30px auto;
}
.contact_tel a{
  display: block;
  text-align: center;
  font-weight: 800;
  font-size: 7vw;
  line-height: 5vw;
  color: #FFECC9;
  text-decoration: none!important;
  text-shadow: 0 0 5px gray;
}
.contact_uktk{
  display: block;
  text-align: center;
  width: 90%;
  margin: 4vw auto 0;
  background-color: #FFFFFF;
  font-size: 3vw;
}
.contact_tel span{
  display: block;
  color: red;
}





footer{
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  background-color: #36C19D;
  overflow: hidden;
  padding-bottom: 15vw;
}
.footer_up{
  display: block;
  width: 100%;
  height: 10vw;
  background-color: #E1E1E1;
}
.footer_under{
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background-color: #8DD9C9;
  color: #FFFFFF;
  text-align: center;
  line-height: 30px;
  font-size: 10px;
}
.footer_nk{
  display: block;
  width: 100%;
  height: auto;
  margin: auto;
}
.footer_nk img{
  display: block;
  width: 300px;
  margin: 40px auto 0;
}
.footer_nk_flex{
  display: block;
  justify-content: center;
  margin-top: 5vw;
}
.footer_nk_flex a{
  display: block;
  padding: 0 10px;
  text-decoration: none;
  color: #FFECC9;
  border-right: solid 1px #FFECC9;
  font-size: 14px;
  text-align: center;
}
.footer_nk_flex a:nth-child(5){
  border-right: none;
}








.content_main_view{
  display: block;
  position: relative;
  width: 100%;
  height: 35vw;
  background-color: #67BE9F;
  overflow: hidden;
  background-image: url("../img/content_main_img.png");
  background-size: cover;
  background-position: top center;
}


/*個人情報取扱について*/
.main_view_sub{
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  margin: auto;
  background-color: #D9E2D9;
}
.main_view_sub h1{
  text-align: center;
  line-height: 320px;
  font-size: 2.5rem;
  font-weight: 500;
  color: #002B00;
}
.main_view_sub_content{
  display: block;
  width: 95%;
  max-width: 800px;
  margin: 80px auto 0;
  padding-bottom: 50px;
}
.main_view_sub_content h3{
  display: block;
  text-align: center;
  background-color: #36C19D;
  color: #FFFFFF;
  padding: 10px 0;
  border-radius: 10px;
}
.main_view_sub_content h5{
  color: #00C49C;
}

.list span{
  display: block;
  font-size: 0.8rem;
}





.company{
  display: block;
  width: 100%;
  height: auto;
  padding: 5vw 0 5vw 0;
}
.company{
  display: block;
  width: 100%;
  margin: auto;
}
.company h1{
  text-align: center;
}
.h1_hr{
  display: block;
  width: 100px;
  border: 1px solid #36C19D;
}
.company span{
  display: block;
  text-align: center;
  margin: 4vw auto 0;
}
.company_nk{
  display: block;
  position: relative;
  width: 95%;
  max-width: 1000px;
  height: auto;
  padding:5vw 0 5vw 0;
  margin: auto;
}

.company_nk table{
  display: block;
  width: 100%;
  max-width: 1000px;
  margin: auto;
  background-color: #EEFAF8;
  border: dotted 1px #36C19D;
  padding: 2vw;
}
.company_nk table tr{
  width: 100%;
  display: block;
  border-bottom: dotted 1px #36C19D;
  padding: 5px 0;
}
.company_nk table tr th{
  display: block;
  width: 100%;
  text-align: center;
  padding-left: 0px;
  height: 60px;
  background-color: #FFFFFF;
  color: #36C19D;
  font-weight: 500;
  line-height: 60px;
}
.company_nk table tr td{
  display: block;
  width: 90%;
  text-align: start;
  padding: 2vw 5%;
  height: auto;
  background-color: #FFFFFF;
  color: #2D2D2D;
  font-weight: 500;
  text-decoration: none!important;
  margin-top: 2vw;
}
.company_nk table tr td a{
  color: #2D2D2D;
  text-decoration: none!important;
}


.space{
  display: block;
  height: 100px;
}
  
  
  
}













































