@charset "UTF-8";
@import url(https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css);
@import url(https://fonts.googleapis.com/css?family=Raleway:400,300,800);
@font-face {
	font-family: 'telfont';
	src: url('../asset/fonts/Helvetica-Neue-Interface.ttf.woff');
}


/*
※※※※※※※※※※※※※※※※

共通

※※※※※※※※※※※※※※※※
*/



/*
＊＊＊＊＊＊＊＊＊＊

要素をフワッと表示する。
classにfadeinを記述する

＊＊＊＊＊＊＊＊＊＊
*/
.fadein {
	opacity : 0;
	transform : translate(0, 50px);
	transition : all 500ms;
}
.fadein.scrollin {
	opacity : 1;
	transform : translate(0, 0);
}

@keyframes fadeIn {

  0% {opacity: 0} 

  100% {opacity: 1} 

}

.cf:after {
  content: "";
  display: block;
  clear: both;
}

* {
	box-sizing: border-box;
}

html {
  font-size:62.5%;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;

}

a {
  text-decoration: none;
  color: black;
}

body {
  font-size: 1.4rem;
  font-size: 14px;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

p {
  line-height: 2em;
}

@media (max-width: 768px){
p {
  line-height: 1.6em;
}
}

/*
※※※※※※※※※※※※※※※※

共通テキスト

※※※※※※※※※※※※※※※※
*/

.l_text {
  font-size: 4.2rem;
  line-height: 1.2em;
  font-weight: bold;
}

@media (max-width: 768px){
  .l_text {
    font-size: 5.46vw;
  }
}

/*
※※※※※※※※※※※※※※※※

パーツ

※※※※※※※※※※※※※※※※
*/
/* hover時に丸オレンジ→丸白に変更するアロー */
a .icon_arrow {
  fill: #fff;
  z-index: 2;
}

a:hover .icon_arrow {
  fill: #ec6f00;
}


/* STAFF */
figure.snip1141 {
  font-family: 'Raleway', Arial, sans-serif;
  position: relative;
  overflow: hidden;
  /*margin: 10px;*/
  margin: 1vw 10px;
  /*min-width: 220px;*/
  max-width: 310px;
  max-height: 330px;
  width: 100%;
  background: #000000;
  color: #ffffff;
  text-align: left;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  height: 23.5vw
}

figure.snip1141 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

figure.snip1141 img {
  max-width: 100%;
  position: relative;
  opacity: 0.9;
}

figure.snip1141 .circle {
  position: relative;
  height: 55px;
  width: 55px;
  top: 0%;
  left: 0%;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  text-align: center;
}

figure.snip1141 .circle:before,
figure.snip1141 .circle:after {
  border: 2px solid white;
  border-right-color: transparent;
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

figure.snip1141 .circle:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

figure.snip1141 .circle:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

figure.snip1141 figcaption {
  position: absolute;
  top: 5%;
  left: 5%;
  display: block;
  width: 100%;
  /*overflow: hidden;*/
}

figure.snip1141 h2 {
  position: absolute;
  margin: 0;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: -1px;
  line-height: 55px;
  top: 0%;
  left: 0%;
  width: 100%;
  padding: 0 20px;
  opacity: 0;
  -webkit-transform: translateX(-10%);
  transform: translateX(-10%);
  white-space: nowrap;
}

figure.snip1141 .icon {
  overflow: hidden;
  width: 100%;
  position: absolute;
}

figure.snip1141 i {
  color: white;
  font-size: 48px;
  line-height: 55px;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

figure.snip1141 a {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 1;
}

figure.snip1141:hover .circle,
figure.snip1141.hover .circle {
  background-color: rgba(0, 0, 0, 0);
}

figure.snip1141:hover .circle:before,
figure.snip1141.hover .circle:before,
figure.snip1141:hover .circle:after,
figure.snip1141.hover .circle:after {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

figure.snip1141:hover h2,
figure.snip1141.hover h2 {
  opacity: 1;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

figure.snip1141:hover img,
figure.snip1141.hover img {
  opacity: 0.35;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

figure.snip1141:hover i,
figure.snip1141.hover i {
  opacity: 0;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

/*
※※※※※※※※※※※※※※※※

下層共通

※※※※※※※※※※※※※※※※
*/
.content {
  margin-left: 190px;
  margin-right: 80px;
}

section {
  padding: 85px 0;
}

.under .sec_title {
  font-size: 4.2rem;
  font-weight: bold;
  margin-bottom: 60px;
}

.pagenavi {
  margin-top: 100px;
}

.pagenavi li {
  font-size: 1.6rem;
  display:inline-block;
  padding-right: 2.5em;
  background-image: url("../images/icon_pagenavi.svg");
  background-repeat: no-repeat;
  background-position: right 1.5em center;
  background-size: 8px auto;
  line-height: 1em;
  position: relative;
}

.pagenavi li::before {
  content:'';
  display: inline-block;
  width: 10px;
  height: 1.2em;
  background-image: url("../images/icon_pagenavi2.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 1.2em;
  position: absolute;
  right: 0;
}

.pagenavi li:last-child::before {
  content: none;
}

.bggray {
  position: relative;
}

.bggray::after {
  position: absolute;
  background-color: #f5f5f5;
  width: 100vw;
  height: 100%;
  content:'';
  top: 0;
  left: -190px;
  z-index: -1;
}

@media (max-width: 768px){
  .content {
    margin:0 auto;
    width: 90vw;
  }
  
  section {
    padding: 50px 0;
  }
  
  .under .sec_title {
    font-size: 3rem;
    margin-bottom: 40px;
  }

  .pagenavi {
    margin-top: 50px;
  }
  
  .pagenavi li {
  font-size: 1.2rem;
  background-size: 8px auto;
  letter-spacing: -0.01em;
}

  .bggray::after {
    left: -5%;
  }
}

/*
※※※※※※※※※※※※※※※※

共通コンテンツ（FOOTER）

※※※※※※※※※※※※※※※※
*/

footer {
  position: relative;
}


footer .bg_orange {
  background-color: #ec6f00;
  padding: 80px 0;
}

footer .fb {
  width: 93%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: row;
}

footer .fb_left {
  width: 49%;
}

footer .fb_left img {
  width: 93px;
  margin-bottom: 60px;
}

footer .company_name {
  color: #fff;
  font-size: 1.8rem;
}

footer .company_address {
  color: #fff;
  font-size: 1.4rem; 
}

footer .fb_right {
  width: 49%;
  display:flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  flex-direction: row;
}

footer .fb_right a{
  color: #fff;
}

footer .fb_right ul {
  width: 50%;
}

footer .fb_right ul li {
  font-size: 1.6rem;
  margin-bottom: 2em;
}

footer .fb_right ul a {
  position: relative;
}

footer .fb_right li a:after {
	position: absolute;
	border-bottom: 1px solid #fff;
	bottom:-3px;
	content: '';
	display:block;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	width:0;
}

footer .fb_right li a:hover:after {
	width: 100%;
}

footer .bg_white {
  padding:30px 3.5%;
  position: relative;
}

footer .copyright {
  font-size: 1.2rem;
}

@media (max-width: 768px){

  footer .bg_orange {
    background-color: #ec6f00;
    padding: 60px 0;
  }

  footer .fb {
    width: 80%;
    flex-direction: column;
  }

  footer .fb_left {
    width: 100%;
    margin-bottom: 50px;
    text-align: center;
  }

  footer .fb_left img {
    width: 93px;
    margin-bottom: 60px;
  }

  footer .company_name {
    color: #fff;
    font-size: 1.8rem;
  }

  footer .company_address {
    color: #fff;
    font-size: 1.4rem; 
  }

  footer .fb_right {
    width: 100%;
    display:flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    flex-direction: row;
  }

  footer .fb_right a{
    color: #fff;
  }

  footer .fb_right ul {
    width: 50%;
  }

  footer .fb_right ul li {
    font-size: 1.6rem;
    margin-bottom: 2em;
  }

  footer .fb_right ul a {
    position: relative;
  }

  footer .fb_right li a:hover:after {
    width: 100%;
  }

  footer .bg_white {
    padding:30px 3.5%;
    position: relative;
    margin-bottom: 20vw;
  }
}
/*
※※※※※※※※※※※※※※※※

共通コンテンツ（ページTOPリンク）

※※※※※※※※※※※※※※※※
*/

/* pagetop */
.page-top-btn {
  color: #3e3a39;
  position: absolute;
  bottom: 20px;
  right: 3.5%;
  display: inline-block;
  overflow: hidden;
  width: 140px;
  height: 40px;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  line-height: 40px;
  text-decoration: none;
  cursor: pointer;
}

.page-top-btn .text {
  position: absolute;
  width: 100%;
  left: 0;
  transition: transform 0.3s ease;
}

/* 初期状態 */
.page-top-btn .top {
  transform: translateY(0); /* 上に配置 */
}

.page-top-btn .bottom {
  transform: translateY(100%); /* 下に配置 */
}

/* アクティブ状態 */
.page-top-btn.active .top {
  transform: translateY(-100%); /* 上にスライドして消える */
}

.page-top-btn.active .bottom {
  transform: translateY(0); /* 下からスライドして表示される */
}

.page-top-btn span.arrow {
  display:inline-block;
  width: 15px;
  height: 15px;
  background-color: #f4f4f4;
  border-radius: 10px;
  position: absolute;
  text-align: center;
  right: 0;
  top: 10px;
  transform: rotate(270deg);
  line-height: 10px;
}

.page-top-btn span.arrow::before {
  background-color: #000;
  position: absolute;
  content:'';
  width:15px;
  height: 15px;
  border-radius: 10px;
  transform: scale(0);
  transition: 0.5s ease all;
  left:0;
}

.page-top-btn:hover span.arrow {
  z-index: -1;
}

.page-top-btn:hover span.arrow::before {
  transform: scale(1);
  z-index: -1;
}

.page-top-btn span .icon_arrow {
  fill: #fff;
}


/*
※※※※※※※※※※※※※※※※

共通コンテンツ（SP電話タップエリア）

※※※※※※※※※※※※※※※※
*/

.sm_tap {
	position: fixed;
	bottom: -25vw;
	left: 0;
	display:none;
	width:100%;
	z-index: 3;
  transition: .6s ease-in-out;
}

.sm_tap:hover {
	filter: alpha(opacity=100);
	-ms-filter: "alpha(opacity=100)"; 
	-moz-opacity:1; 
	-khtml-opacity: 1; 
	opacity:1;
	zoom:1;
}

.sm_tap.on {
	bottom: -2px;
}

.sm_tap img {
	width:100%;
	vertical-align: bottom;
}

@media screen and (max-width:767px) {
	.sm_tap {
		display:block;
	}
	.flex.between .dummy {
		display:none;
	}
}

/*=============================
.btn-trigger
=============================*/
.btn-trigger {
  display: none;
}

@media (max-width: 768px){
  .btn-trigger {
    position: fixed;
    right:5vw;
    top: 20px;
    width: 25px;
    height: 35px;
    cursor: pointer;
   z-index: 1000;
  }
  .btn-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: #000;

  }
  .btn-trigger, .btn-trigger span {
    display: inline-block;
    transition: all .5s;
    box-sizing: border-box;
  }
  .btn-trigger span:nth-of-type(1) {
    top: 0;
  }
  .btn-trigger span:nth-of-type(2) {
    top: 15px;
  }
  .btn-trigger span:nth-of-type(3) {
    bottom: 0;
  }

  .btn-trigger.active span:nth-of-type(1) {
    top: -5px;
    background-color: #fff;
  }
  .btn-trigger.active span:nth-of-type(2) {
    top: 15px;
    background-color: #fff;
  }
  .btn-trigger.active  span:nth-of-type(3) {
    bottom: -5px;
    background-color: #fff;
  }
}

/*=============================
#btn07
=============================*/
#btn07 span:nth-of-type(1) {
  -webkit-animation: btn07-bar01 .75s forwards;
  animation: btn07-bar01 .75s forwards;
}
@-webkit-keyframes btn07-bar01 {
  0% {
    -webkit-transform: translateY(20px) rotate(45deg);
	  transform: translateY(20px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(20px) rotate(0);
	  transform: translateY(20px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
	  transform: translateY(0) rotate(0);
  }
}
@keyframes btn07-bar01 {
  0% {
    transform: translateY(20px) rotate(45deg);
  }
  50% {
    transform: translateY(20px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
#btn07 span:nth-of-type(2) {
  transition: all .25s .25s;
  opacity: 1;
}
#btn07 span:nth-of-type(3) {
  -webkit-animation: btn07-bar03 .75s forwards;
  animation: btn07-bar03 .75s forwards;
}
@-webkit-keyframes btn07-bar03 {
  0% {
    -webkit-transform: translateY(-20px) rotate(-45deg);
	  transform: translateY(-20px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(-20px) rotate(0);
	  transform: translateY(-20px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
	  transform: translateY(0) rotate(0);
  }
}
@keyframes btn07-bar03 {
  0% {
    transform: translateY(-20px) rotate(-45deg);
  }
  50% {
    transform: translateY(-20px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
#btn07.active span:nth-of-type(1) {
  -webkit-animation: active-btn07-bar01 .75s forwards;
  animation: active-btn07-bar01 .75s forwards;
}
@-webkit-keyframes active-btn07-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
	  transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(20px) rotate(0);
	  transform: translateY(20px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(20px) rotate(45deg);
	  transform: translateY(20px) rotate(45deg);
  }
}
@keyframes active-btn07-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(20px) rotate(0);
  }
  100% {
    transform: translateY(20px) rotate(45deg);
  }
}
#btn07.active span:nth-of-type(2) {
  opacity: 0;
}
#btn07.active span:nth-of-type(3) {
  -webkit-animation: active-btn07-bar03 .75s forwards;
  animation: active-btn07-bar03 .75s forwards;
}
@-webkit-keyframes active-btn07-bar03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
	  transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-20px) rotate(0);
	  transform: translateY(-20px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-20px) rotate(-45deg);
	  transform: translateY(-20px) rotate(-45deg);
  }
}
@keyframes active-btn07-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-20px) rotate(0);
  }
  100% {
    transform: translateY(-20px) rotate(-45deg);
  }
}


/*
※※※※※※※※※※※※※※※※

spmenu

※※※※※※※※※※※※※※※※
*/

.spmenu {
  display: none;
}

@media (max-width: 768px){
.spmenu {
    display: block;
    opacity: 0;
    width:100vw;
    height: 100vh;
    background-color: #000;
    z-index: -1;
    transition: 1.0s;
    position:fixed;
    top:0;
  }

  .menu_open .spmenu {
    opacity: 1;
    z-index: 10;

  }

  .spmenu .menu_area {
    height: 100vh;
    padding:70px;
    width: 100%;
    background-image: url("../images/menu_bg_sp.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }


  .menu_area  li a {
    position: relative;
    color: #fff;
  }

  .menu_area  li a:after {
    position: absolute;
    border-bottom: 1px solid #fff;
    bottom:-0.2em;
    content: '';
    display:block;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    width:0;
  }

  .menu_area li a:hover:after {
    width: 100%;
  }

  .menu_area .list1{
    margin-bottom: 2em;
    font-size: 1.4rem;
  }

    .menu_area .list1 li {
      line-height: 1.5em;
      padding:0.5em 0;
    }

    .menu_area .list2 li {
      margin-bottom: 2em;
    }
  
  .menu_area .list2 li {
    background-repeat: no-repeat;
    background-position: left center;
    line-height: 1.5em;
    padding-left: 1.5em;
  }
  .menu_area .list2 li:first-child{
    background-image: url("../images/icon_info_spmenu.png");
    background-size: 17px;
    
  }
  
  .menu_area .list2 li:nth-child(2){
    background-image: url("../images/icon_faq_spmenu.png");
    background-size: 17px;
  }
  
  .menu_area .list2 li:nth-child(3){
    background-image: url("../images/icon_mail_spmenu.png");
    background-size: 17px;
  }
  
  .menu_area .list2 li:nth-child(4){
    background-image: url("../images/icon_doc_spmenu.png");
    background-size: 17px;
  }

}

/*
※※※※※※※※※※※※※※※※

メインビジュアル

※※※※※※※※※※※※※※※※
*/

.visual_area {
  display: flex;
  justify-content: space-around;
}

.visual .pc {
  display: block;
}

.visual .sp {
  display: none;
}

.visual_area .left_white {
  width:190px;
  position: relative;
}

.visual_area .left_white .logo {
  position: absolute;
  top: 60px;
  left: 48.5px;
  width: 93px;
  display:block;
}

.menu {
  position: absolute;
  top: 350px;
  left: 20px;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.01);
  height: 328px;
  backdrop-filter: blur(4px);
}

.move.menu {
  position: fixed;
  bottom: 75px;
  left: 15px;
  padding: 10px;
}

.menu .menu1 {
  font-size: 1.6rem;
  width: 130px;
  margin:0 auto 20px;
  padding:0.5em 0;
}

.menu .menu1 li {
  padding:0.5em 0 0.5em 0.2em;
  font-weight: bold;
  position: relative;
}

.menu .menu1 li a {
  display: block;
}

.menu .menu1 span {
  display:inline-block;
  width: 15px;
  height: 15px;
  background-color: #ec6f00;
  border-radius: 10px;
  position: absolute;
  text-align: center;
  right: 0;
  line-height: 10px;
}

.menu .menu1 a:hover span {
  z-index: -1;
}

.menu .menu1 span::before {
  position: absolute;
  background-color: #fff;
  display: block;
  content:'';
  width:15px;
  height: 15px;
  border-radius: 10px;
  transform: scale(0);
  transition: 0.5s ease all;
  left:0;
}

.menu .menu1 a:hover span::before {
  transform: scale(1);
  z-index: -1;
}

.menu .menu2 {
  font-size: 1.4rem;
  width: 130px;
  margin: 0 auto;
}

.menu .menu2 li {
  padding-left: 0.2em;
}

.menu .menu2 li a {
  display:block;
  padding: 0.5em 0 0.5em 25px;
}

.menu .menu2 li a {
  background-repeat: no-repeat;
  background-position: left center;
  transition:0.5s;
}

.menu .menu2 li a span {
  padding-bottom: 0.1em;
  width:0%;
  
  position: relative;
}

.menu .menu2 li a span::after {
  content:'';
  height: 1px;
  display: block;
  position: absolute;
  background-color: #000;
  transition:0.5s;
  bottom:-2px;
  width:0;
}

.menu .menu2 li a:hover span::after {
  width: 100%;
}

.menu .menu2 li:first-child a {
  background-image: url("../images/icon_info.png");
  background-size: 19px auto;
}

.menu .menu2 li:nth-child(2) a {
  background-image: url("../images/icon_faq.png");
  background-size: 18px auto;
}

.menu .menu2 li:nth-child(3) a {
  background-image: url("../images/icon_mail.png");
  background-size: 18px auto;
}

.menu .menu2 li:nth-child(4) a {
  background-image: url("../images/icon_doc.png");
  background-size: 18px auto;
}

.visual_area .visual {
  width: calc(100vw - 190px);
  position: relative;
}

.visual_area .visual img {
  width: 100%;
}

.visual_area .copy {
    position: absolute;
    top: 35%;
    right: 15%;
    display: flex;
    flex-direction: row-reverse;
    gap: 0 2em;
    transform: translateY(-50%);
    z-index: 10;
}

.visual_area .copy>* {
    overflow: hidden;
    clip-path: inset(0 0 100% 0);
    transform-origin: left;
    transform: translateY(-8px);
}

.visual_area .copy.show>*:nth-child(1) {
    clip-path: inset(0);
    transform: translateX(0);
    transition: all 1.2s .4s cubic-bezier(0.33, 1, 0.68, 1);
}

.visual_area .copy.show>*:nth-child(2) {
    clip-path: inset(0);
    transform: translateX(0);
    transition: all 1.2s 1.2s cubic-bezier(0.33, 1, 0.68, 1);
}

.visual_area .copy.show>*:nth-child(3) {
    clip-path: inset(0);
    transform: translateX(0);
    transition: all 1.5s 2s cubic-bezier(0.33, 1, 0.68, 1);
}

.visual_area .copy img {
    width: 4.5vw;
    height: auto;
}

.visual_area .visual .sp_logo {
  display: none;
}

.visual_area .title_area {
  background-color: #fff;
  border-radius: 0.92vw;
  width: 36vw;
  height: 10vw;
  position: absolute;
  bottom: -0.92vw;
  left: calc(50% - 18vw);
  padding-top: 0.92vw;
}

.title_area .jp {
  font-size: 4.82vw;
  font-weight: bold;
  text-align: center;
}

.title_area .en {
  font-size: 1.11vw;
  color: #ec6f00;
  text-align: center;
  margin-bottom: 0.5em;
  letter-spacing: 0.2em;
}

@media (max-width: 768px){
  .visual_area .left_white {
    display: none;
  }
  
  .menu {
    display: none!important;
  }
  
  .visual_area .visual {
    width: 100%;
  }
  
/*  .visual_area .visual::before {
    display:block;
    content:'';
    width: 94px;
    height: 40px;
    position: absolute;
    background-image: url('../images/logo_sp.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left top;
    left: 10%;
    top: 20px;
  }*/
  
  .visual_area .visual .pc {
    display: none;
  }

  .visual_area .visual .sp {
    display: block;
  }
  
  .visual_area .copy {
    top: calc(42vw + 20px);
    right: 12vw;
    display: flex;
    flex-direction: row-reverse;
    gap: 0 3vw;
    transform: translateY(-50%);
    z-index: 2;
  }

  .visual_area .copy>* {
      overflow: hidden;
      clip-path: inset(0 0 100% 0);
      transform-origin: left;
      transform: translateY(-8px);
  }

  .visual_area .copy.show>*:nth-child(1) {
      clip-path: inset(0);
      transform: translateX(0);
      transition: all 1.2s .4s cubic-bezier(0.33, 1, 0.68, 1);
  }

  .visual_area .copy.show>*:nth-child(2) {
      clip-path: inset(0);
      transform: translateX(0);
      transition: all 1.2s 1.2s cubic-bezier(0.33, 1, 0.68, 1);
  }

  .visual_area .copy.show>*:nth-child(3) {
      clip-path: inset(0);
      transform: translateX(0);
      transition: all 1.5s 2s cubic-bezier(0.33, 1, 0.68, 1);
  }

  .visual_area .copy img {
      width: 6.5vw;
      height: auto;
  }
  
  .visual_area .visual .sp_logo {
    display: block;
    width: 27vw;
    height: auto;
    position: absolute;
    top:23vw;
    left:15vw;
    opacity: 0;
    animation: fadeIn 2s ease-in-out 0.1s forwards;
  }
  
  .visual_area .title_area {
    background-color: #fff;
    border-radius: 0.92vw;
    width: 52vw;
    height: 15vw;
    position: absolute;
    bottom: -0.92vw;
    left: calc(50% - 27vw);
    padding-top: 0.92vw;
  }

  .title_area .jp {
    font-size: 6.93vw;
  }

  .title_area .en {
    font-size: 1.6vw;
    margin-bottom: 0.7em;
  }
}

/*
※※※※※※※※※※※※※※※※

TOPページ（SEC1)

※※※※※※※※※※※※※※※※
*/

.top .sec1 .flexbox {
  display:flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: start;
  padding-left: 190px;
  margin-top: 80px;
  position: relative;
}

.top .sec1 .flexbox:before {
  content:'';
  display: block;
  width: 92vw;
  height: 49vw;
  background-color: #F5F5F5;
  position: absolute;
  left:0;
  top: 4vw;
  z-index: -1;
}

.top .sec1 .flexbox .img1 {
  width: 30%;
  margin-bottom: 30px;
}

.top .sec1 .flexbox .img2 {
  width: 42%;
}

.top .sec1 .flexbox img {
  width: 100%;
}

.top .sec1 .flexbox .l_text {
  width: 70%;
  padding-left: 12%;
  align-self:end;
  margin-bottom: 30px;
}

.top .sec1 .flexbox .text {
  width: 58%;
  align-self: center;
  padding-right: 60px;
}

.top .sec1 .fb_img {
  display: none;
}

@media (max-width: 768px){
  .top .sec1 {
    background-color: #F5F5F5;
    padding-top: 60px;
  }
  
  .top .sec1 .flexbox {
    display:flex;
    flex-direction: column;
    padding-left: 0;
    margin-top: 0;
  }

  .top .sec1 .flexbox:before {
    content: none;
  }
  
  .top .sec1 .flexbox .img1 {
    display: none;
  }
  
  .top .sec1 .flexbox .img2 {
    display: none;
  }
  
  .top .sec1 .flexbox img {
    width: 100%;
  }

  .top .sec1 .flexbox .l_text {
    width: 100%;
    padding-left: 10%;
    padding-right: 10%;
    margin-bottom: 30px;
    
  }
  
  .top .sec1 .flexbox .text {
    width: 100%;
    padding:0 10%;
    margin-bottom: 80px;
  }
  
  .top .sec1 .fb_img {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row;
  }
  
  .top .sec1 .fb_img .img3 {
    width: 46%;
  }
  
  .top .sec1 .fb_img .img4 {
    width: 48%;
  }
}

/*
※※※※※※※※※※※※※※※※

TOPページ（SEC２)

※※※※※※※※※※※※※※※※
*/



.top .sec2 {
  background-color: #F5F5F5;
  margin-top: 130px;
  padding-top: 100px;
  position: relative;
  padding-bottom: 1px;
}

.top .sec2 .l_text {
  margin: 0 auto 50px;
  width:15em;
}

.top .sec2 .fb {
  display:flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width:92vw;
  margin-bottom: 80px;
}

.top .sec2 .fb1 {
  flex-direction: row; 
}

.top .sec2 .fb2 {
  flex-direction: row-reverse;
}

.top .sec2 .fb1 .text {
  padding-right: 50px;
}

.top .sec2 .fb2 .text {
  padding-left: 190px;
}

.top .sec2 .fb > div {
  width: 47%;
}

.top .sec2 .fb p {
  margin-bottom: 2em;
}

.top .sec2 .fb a {
  display:block;
  width: 12em;
  color: #000;
  font-size: 1.6rem;
  position: relative;
}

.top .sec2 .fb a .linktext {
  position: relative;
}

.top .sec2 .fb a .linktext::after {
  content:'';
  display:block;
  height: 1px;
  width: 0;
  transition: 0.5s;
  background-color: #000;
  position: absolute;
  bottom: -2px;
}

.top .sec2 .fb a:hover .linktext::after {
  width: 100%;
}

.top .sec2 .fb span.arrow {
  display:inline-block;
  width: 15px;
  height: 15px;
  background-color: #ec6f00;
  border-radius: 10px;
  position: absolute;
  text-align: center;
  right: 0;
  line-height: 10px;
}

.top .sec2 .fb span.arrow::before {
  text-align: center;
  
  
  position: absolute;
  background-color: #fff;
  display: block;
  content:'';
  width:15px;
  height: 15px;
  border-radius: 10px;
  transform: scale(0);
  transition: 0.5s ease all;
  left:0;
}

.top .sec2 .fb a:hover span.arrow {
  z-index: -1;
  
}

.top .sec2 .fb a:hover span.arrow::before {
  transform: scale(1);
  z-index: -1;
}


.top .sec2 .photo img {
  width: 100%;
}
.top .sec2 h3 {
  font-size: 2.4rem;
  margin-bottom: 1em;
  line-height: 1.2em;
}

.top .sec2 .sec2_nav {
	position: absolute;
	top: 10vh;
	right: 0;
	height: 80vh;
	width: 8vw;
}

.top .sec2 .sec2_nav .line {
	height: 100%;
	width: 3px;
	background-color: #fff;
	position: absolute;
	z-index: 7;
	top:0;
	left:0;
}

.top .sec2 .sec2_nav .colorline {
	position: absolute;
	width: 3px;
	height: 20%;
	max-height: 100%;
	top: 0;
	left: 0;
	background-color: #ec6f00;
	z-index: 8;
}

.top .sec2 .sec2_nav ul {
	height: 100%;
	padding-left:40px;
}

.top .sec2 .sec2_nav li {
  writing-mode: tb-rl;
  text-orientation: sideways-right;
	height:33%;
	text-align: center;
}

.top .sec2 .sec2_btn {
  display: none;
}

.top .sec2 .pconly {
  display: inline;
}

@media (max-width: 768px){
  .top .sec2 {
    background-color: #F5F5F5;
    margin-top: 75px;
    padding-top: 75px;
    position: relative;
    padding-bottom: 1px;
  }

  .top .sec2 .l_text {
    margin: 0 auto 50px;
  }

  .top .sec2 .fb {
    width:90%;
    margin-bottom: 5vw;
  }

  .top .sec2 .fb2 {
    flex-direction: row;
  }
  
  .top .sec2 .fb1 .text {
    padding-left: 0;
    padding-right: 0;
  }

  .top .sec2 .fb2 .text {
    padding-left: 0;
    padding-right: 0;
  }

  .top .sec2 .fb > div {
    width: 47%;
  }
  
  .top .sec2 h3 {
    font-size: 4.2vw;
    margin-bottom: 1em;
  }
  
  .top .sec2 .sec2_nav {
    display: none;
  }
  
  .top .sec2 .sec2_btn {
    display: block;
    text-align: center;
    color: #fff;
    background-color: #ec6f00;
    font-size: 2.3rem;
    letter-spacing: 0.1em;
    padding-left: 2em;
    line-height: 70px;
    margin: 0 auto;
    width:17em;
    border-radius: 35px;
    max-width: 90%;
    margin-bottom: 50px;
    position: relative;
    background-image: url("../images/icon_arrow2.svg");
    background-repeat: no-repeat;
    background-position: left 2em center;
    background-size: 20px;
  }
  
  .top .sec2 .pconly {
    display: none!important;
  }
  
  @media (max-width: 436px){
    .top .sec2 .sec2_btn {
      font-size: 4.5vw;
      background-position: left 2em center;
      background-size: 5vw;
    }
  }
  
  /*.top .sec2 .sec2_btn::before {
    content:' ';
    position: absolute;
    inset: 0;
    background-color: red;
    ;
    mask-image: url("../images/icon_arrow2.svg");
    -webkit-mask-image: url("/Users/kitaguchikatsuya/Desktop/hal_design/sorce/images/icon_arrow2.svg");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;

  }*/

}

/*
※※※※※※※※※※※※※※※※

TOPページ（SEC3)

※※※※※※※※※※※※※※※※
*/

.top .sec3 {
  padding:80px 0 100px;
}

.top .sec3 .fb {
  margin-left: 190px;
  width: 74.6vw;
  display:flex;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
  overflow: hidden;
}

.top .sec3 .fb_item:hover .bg_photo.pc{
  transform: scale(1.02);
}

.top .sec3 .fb > div {
  width: 48%;
}

.top .sec3 .fb .bg_photo {
  width: 100%;
  display: block;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.top .sec3 .fb .bg_photo.pc {
  display: block;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.top .sec3 .fb_item {
  position: relative;
  border-radius: 20px;
  padding:5px;
}

.top .sec3 .fb_item .text {
  position: absolute;
  font-size: 1.2rem;
  top:10%;
  left: 5%;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  white-space: pre;
}

.top .sec3 .fb_item .text span {
  background-color: #fff;
  display: inline-block;
  padding:0.5em 0.1em;
  
}

.top .sec3 .fb_item .en {
  position: absolute;
  bottom: 18%;
  left: 5%;
  font-size: 1.4rem;
  width: 100%;
}

.top .sec3 .fb_item .jp {
  position: absolute;
  bottom: 5%;
  left: 5%;
  font-size: 2.4rem;
  width: 100%;
}

.top .sec3 .fb_item a {
  position: relative;
  display:block;
}

.top .sec3 .fb_item span.arrow {
  display:inline-block;
  width: 40px;
  height: 40px;
  background-color: #ec6f00;
  border-radius: 20px;
  position: absolute;
  text-align: center;
  right: 20px;
  bottom:20px;
  line-height: 40px;
}

.top .sec3 .fb_item span.arrow::before {
  background-color: #fff;
  position: absolute;
  content:'';
  width:40px;
  height: 40px;
  border-radius: 20px;
  transform: scale(0);
  transition: 0.5s ease all;
  left:0;
}

.top .sec3 .fb_item span .icon_arrow {
  width: auto;
  height: 12px;
  z-index: 4;
}

.top .sec3 .fb_item a:hover span.arrow {
  z-index: 3;
}

.top .sec3 .fb_item a:hover span.arrow::before {
  transform: scale(1);
  z-index: -1;
}


@media (max-width: 768px){
  .top .sec3 {
    padding:75px 0 85px;
  }

  .top .sec3 .fb {
    margin: 0 auto;
    width: 80%;
    flex-direction: column;
  }

  .top .sec3 .fb > div {
    width: 100%;
  }
  
  .top .sec3 .fb .bg_photo {
    width: 100%;
  }
  
  .top .sec3 .fb_item:first-child {
    margin-bottom: 35px;
  }

  .top .sec3 .fb_item .text {
    font-size: 2.2vw;
  }

  .top .sec3 .fb_item .en {
    font-size: 2vw;
  }

  .top .sec3 .fb_item .jp {
    font-size: 4vw;
  }
}

/*
※※※※※※※※※※※※※※※※

TOPページ（SEC4)

※※※※※※※※※※※※※※※※
*/



.top .sec4 {
  background-color: #f5f5f5;
  padding: 40px 0 100px;
}

.top .sec4 h3 {
  font-size: 2.4rem;
  padding-left: 190px;
  margin-bottom: 30px; 
}

.top .sec4 .fb {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
  width: 74.6vw;
  margin-left: 190px;
}

.top .sec4 .fb_item {
  background-color: #fff;
  display: block;
  width: 44%;
  padding:1.5em;
  border:1px solid #fff;
  transition: 0.3s
}

.top .sec4 .info_title {
  font-size: 2.0rem;
  line-height: 1.4em;
  letter-spacing: 0.05em;
  margin-bottom: 0.5em;
}

.top .sec4 .info_date {
  font-size: 1.0rem;
  color: #7f7c7c;
  letter-spacing: 0.05em;
}

.top .sec4 .more_btn {
  width: 40px;
  text-align: center;
  padding-top: 1em;
}

.more_btn .circle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ec6f00;
    transition: all .2s cubic-bezier(0.33, 1, 0.68, 1);
  margin-bottom: 10px;
}


.more_btn .circle .dot {
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background-color: #ec6f00;
    transition: background-color .2s cubic-bezier(0.33, 1, 0.68, 1);
}

.more_btn .text {
  font-size: 1.0rem;
  color: #ec6f00;
  text-align: center;
  margin-top: 1em;
}

@media (max-width: 768px){
  .top .sec4 {
    background-color: #f5f5f5;
    padding: 80px 0;;
  }

  .top .sec4 h3 {
    font-size: 2.4rem;
    padding-left: 10%;
    margin-bottom: 50px; 
  }

  .top .sec4 .fb {
    flex-direction: column;
    width: 80%;
    margin:0 auto;
  }

  .top .sec4 .fb_item {
    background-color: #fff;
    display: block;
    width: 100%;
    padding:1.5em;
    border:1px solid #fff;
    transition: 0.3s;
    margin-bottom: 30px;
  }

  .top .sec4 .info_title {
    font-size: 2.0rem;
    line-height: 1.4em;
    letter-spacing: 0.05em;
    margin-bottom: 0.5em;
  }

  .top .sec4 .info_date {
    font-size: 1.0rem;
    color: #7f7c7c;
    letter-spacing: 0.05em;
  }

  .top .sec4 .more_btn {
    width: 170px;
    text-align: center;
    padding-top: 1em;
    margin:0 auto;
  }
  
  .more_btn .circle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ec6f00;
    transition: all .2s cubic-bezier(0.33, 1, 0.68, 1);
    margin-bottom: 10px;
    float: left;
  }


  .more_btn .circle .dot {
      width: 2px;
      height: 2px;
      border-radius: 50%;
      background-color: #ec6f00;
      transition: background-color .2s cubic-bezier(0.33, 1, 0.68, 1);
  }

  .more_btn .text {
    font-size: 1.4rem;
    color: #ec6f00;
    text-align: center;
    margin-top: 1em;
    float:left;
    margin-left: 1.5em;
  }
  
  .more_btn br {
    display:none;
  }
}


@media(hover: hover) {
    .more_btn>*:hover {
        opacity:1
    }

    .more_btn>*:hover .circle {
        transform: scale(1.1);
        background-color: #ec6f00
    }

    .more_btn>*:hover .circle .dot {
        background-color: #fff
    }
  
  .top .sec4 .fb_item:hover {
    border:1px solid #ec6f00;
  }
}

/*
※※※※※※※※※※※※※※※※

よくある質問

※※※※※※※※※※※※※※※※
*/
.faq .qa {
  border-top: 1px solid #e3e2e2;
  padding: 30px 0;
}

.faq .qa:last-child {
  border-bottom:  1px solid #e3e2e2;
}

.faq .qa > *{
  background-repeat: no-repeat;
  background-position: left 20px center;
  background-size: 37px auto;
  padding: 35px 80px;
  font-size: 1.6rem;
  line-height: 1.8em;
}

.faq .qa dt {
  background-image: url("../images/icon_q.svg");
  cursor: pointer; 
  position: relative;
}

.faq .qa dt::before {
  content:'';
  font-size: 29px;
  background-image: url("../images/icon_plus.svg");
  position: absolute;
  right: 30px;
  background-size: 25px;
  background-repeat: no-repeat;
  background-position: center;
  width:25px;
  height: 25px;
  top:calc(50% - 12.5px);
}

.faq .qa dt.active::before {
  background-image: url("../images/icon_minus.svg");
}

.faq .qa dd {
  background-image: url("../images/icon_a.svg");
  background-color: #f3faf0;
  color: #3e3a39;
}

.faq .qa dd ul {
  list-style: disc;
  margin-top: 1em;
  padding-left: 1em;
}

@media (max-width: 768px){
  .faq .qa {
    border-top: 1px solid #e3e2e2;
    padding: 10px 0;
  }
  
  .faq .qa > *{
    padding: 20px 80px;
    line-height: 1.6em;
  }
}

/*
※※※※※※※※※※※※※※※※

ご利用の流れ

※※※※※※※※※※※※※※※※
*/

.flow .flowlist .flowvisual {
  width: 100%;
}

.flow .flowlist li {
 position:relative;
  margin-bottom: 9.27vw;
}

.flow .flowlist li:last-child {
  margin-bottom: 0;
}

.flow .flowlist li::before {
  display: block;
  position: absolute;
  content:'';
  background-repeat: no-repeat;
  width: 13.07vw;
  height: 14vw;
  z-index: 2;
}

.flow .flowlist .flow1::before {
  background-image: url("../images/flow01_number.svg");
  background-size: calc(10.66vw * 0.8) auto;
  left: 2.78vw;
  
}

.flow .flowlist .flow2::before {
  background-image: url("../images/flow02_number.svg");
  right: 2vw;
  background-size: calc(12.24vw * 0.8) auto;
}

.flow .flowlist .flow3::before {
  background-image: url("../images/flow03_number.svg");
  left: 2.78vw;
  background-size: calc(12.24vw * 0.8) auto;
}

.flow .flowlist .flow4::before {
  background-image: url("../images/flow04_number.svg");
  right: 2vw;
  background-size: calc(13.07vw * 0.8) auto;
}


.flow .flowtext {
  display:grid;
  align-items: center; /* 縦の中央揃え */
  justify-items: start; /* 左寄せ */
  height: 9.27vw;
  line-height: 1.8em;
  text-align: left;
  font-size: 1.4rem;
}

.flow li:nth-child(odd) .flowtext{
  padding-left: 17.56vw;
}

.flow li:nth-child(even) .flowtext{
  padding-right: 17.56vw;
}

.flow .pricelist {
  position: relative;
}

.flow .pricelist li {
  font-size: 2.6rem;
  border-bottom: 1px solid #000;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.flow .pricelist li a {
  display:block;
  padding: 1.5em 1.5em;
  transition: 0.5s;
  position: relative;
}

.flow .pricelist li a::before {
  content:'→';
  display:block;
  position: absolute;
  font-family: "M PLUS Rounded 1c", serif;
  font-weight: 300;
  font-style: normal;
  right: 30px;
  color: #ec6f00;
  font-size: 3rem;
  transition: 0.5s;
}

.flow .pricelist li:first-child {
  border-top: 1px solid #000;
}

.flow .pricelist a:hover {
  background-color: #ec6f00;
  color: #fff;
}

.flow .pricelist a:hover::before {
  color: #fff; 
  right: 20px;
}

.modaal-content-container {
  font-size: 1.6rem;
}

@media (max-width: 768px){
  
  .flow .flowlist li::before {
    display: block;
    position: absolute;
    content:'';
    background-repeat: no-repeat;
    width: 13.07vw;
    height: 14vw;
    top: 25px;
  }
  
  .flow .flowtext {
    display:grid;
    align-items: center; /* 縦の中央揃え */
    justify-items: start; /* 左寄せ */
    height: 7em;
    line-height: 1.3em;
    text-align: left;
    font-size: 1.4rem;
  }
  
  .flow .pricelist li {
    font-size: 2rem;
    padding: 0 1.5em;
  }
  
  .flow .pricelist li a::before {
    right: 1vw;
    font-size: 2.5rem;
  }

  .flow .pricelist li:first-child {
    border-top: 1px solid #000;
  }

  .flow .pricelist li:hover {
    background-color: #ec6f00;
    color: #fff;
  }
  
  .flow .pricelist a:hover::before {
    right: 0;
  }
  
}

/*
※※※※※※※※※※※※※※※※

サービス

※※※※※※※※※※※※※※※※
*/

.service .servicelist {
  display:flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 90px;
}

.service .servicelist li {
  border: 1px solid #ec6f00;
  border-radius: 10px;
  width: 48.5%;
  height:11.13vw;
  margin-bottom: 3%;
  font-size: 2.22vw;
  color: #ec6f00;
  font-weight: bold;
  line-height: 1.5em;
  background-repeat: no-repeat;
  transition: .3s;
}

.service .servicelist a {
  display: flex;
  align-items: center;
  color: #ec6f00;
  padding-left: 11.59vw;
  width: 100%;
  height: 100%;
}

.service .servicelist li:hover {
  box-shadow: inset 0 0 0 4px #ec6f00;
}

.service .servicelist .service1 {
  background-image: url("../images/icon_service1.svg"),url("../images/icon_service_arrow.svg");
  background-size:4.74vw auto,2.04vw auto;
  background-position: center left 2.78vw,center right 2.31vw;
}

.service .servicelist .service2 {
  background-image: url("../images/icon_service2.svg"),url("../images/icon_service_arrow.svg");
  background-size:4.74vw auto,2.04vw auto;
  background-position: center left 2.78vw,center right 2.31vw;
}

.service .servicelist .service3 {
  background-image: url("../images/icon_service3.svg"),url("../images/icon_service_arrow.svg");
  background-size:4.74vw auto,2.04vw auto;
  background-position: center left 2.78vw,center right 2.31vw;
}

.service .servicelist .service4 {
  background-image: url("../images/icon_service4.svg"),url("../images/icon_service_arrow.svg");
  background-size:4.74vw auto,2.04vw auto;
  background-position: center left 2.78vw,center right 2.31vw;
}

.service .servicelist .service5 {
  background-image: url("../images/icon_service5.png"),url("../images/icon_service_arrow.svg");
  background-size:4.74vw auto,2.04vw auto;
  background-position: center left 2.78vw,center right 2.31vw;
}

.service .servicelist .service6 {
  background-image: url("../images/icon_service6.svg"),url("../images/icon_service_arrow.svg");
  background-size:4.74vw auto,2.04vw auto;
  background-position: center left 2.78vw,center right 2.31vw;
}

.service .sec1 .flexbox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 70px;
}

.service .sec1 .flexbox:last-child {
  margin-bottom: 0;
}

.service .sec1 .flexbox.odd {
  flex-direction: row;
}

.service .sec1 .flexbox.even {
  flex-direction: row-reverse
}

.service .sec1 .flexbox .imgarea {
  width: 37%;
}

.service .sec1 .flexbox .imgarea img {
  width: 100%;
}

.service .sec1 .flexbox .textarea {
  width: 56%;
}

.service .sec1 .flexbox .l_text {
  margin-bottom: 1em;
}

.service .sec1 .flexbox .text {
  
}

@media (max-width: 768px){
  .service .servicelist {
    margin-bottom: 50px;
  }
  
  .service .sec1 .flexbox .imgarea {
    width: 100%;
    margin-bottom: 20px;
  }

  .service .sec1 .flexbox .textarea {
    width: 100%;
  }
}

/*
※※※※※※※※※※※※※※※※

会社概要

※※※※※※※※※※※※※※※※
*/

.company .ceo {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: right;
  margin-top:1em;
}

.company .ceo span {
  font-size: 1.2rem;
  margin-right: 1em;
}

.company .t_info {
  width: 100%;
}

.company .t_info tr {
  border-bottom: 2px solid #f5f5f5;
}

.company .t_info tr:last-child {
  border-bottom: none;
}

.company .t_info th {
  background-color: #fff;
  font-weight: bold;
  text-align: left;
  height: 100px;
  vertical-align: middle;
  width: 150px;
  padding-left: 40px;
}

.company .t_info td {
  background-color: #fff;
  text-align: left;
  vertical-align: middle;
  padding:0 40px;
  line-height: 1.5em;
}

.company .sec3 .accessbox {
  display:flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  flex-direction: row;
}

.company .sec3 .infotext {
  width: 39%;
}

.company .sec3 .map {
  width: 54%;
  position: relative;
  height: 0;
  padding-top: 25%;
  
}

.company .sec3 .map iframe {
 position: absolute;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
}

.company .sec3 .name {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 1em;
}

.company .sec3 .address {
  margin-bottom: 1em;
}

.company .sec3 .maplink {
  color: #ec6f00;
  text-decoration: underline;
  background-image: url("../images/icon_map.svg");
  background-position: right;
  background-repeat: no-repeat;
  background-size: 10px auto;
  padding-right: 20px;
  transition: 0.3s;
}

.company .sec3 .maplink:hover {
  text-decoration: none;
}

@media (max-width: 768px){
  .company .t_info th {
    width: 27%;
    padding-left: 1em;
    height: 90px;
  }

  .company .t_info td {
    padding:0 1em;
  }
  
  .company .sec3 .infotext {
    width: 100%;
    margin-bottom: 50px;
  }

  .company .sec3 .map {
    width: 100%;
    padding-top: 75%;
  }
}

/*
※※※※※※※※※※※※※※※※

お知らせ

※※※※※※※※※※※※※※※※
*/

.news section {
  padding-bottom: 0;
}

.news section:last-child {
  padding-bottom: 80px;
}

.news .newslist li {
  border: 1px solid #f5f5f5;
  min-height: 120px;
  width: 100%;
  transition: 0.3s;
  margin-bottom: 30px;
}

.news .newslist li:hover {
  border: 1px solid #ec6f00;
}

.news .newslist li:last-child {
  margin-bottom: 0;
}

.news .newslist li a{
  display: flex;
  align-items: center;
  min-height: 120px;
  height: 100%;
  width: 100%;
  flex-wrap: wrap;
  padding:0 2em;
}

.news .newslist .newstitle {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}

.news .newslist .newstitle span {
  display:block;
  color: #7f7c7c;
  font-size: 1rem;
}

@media (max-width: 768px){
  .news .newslist li {
    min-height: 100px;
    margin-bottom: 20px;
  }
  
  .news .newslist li a{
  min-height: 100px;
}
}

/*
※※※※※※※※※※※※※※※※

お知らせ詳細

※※※※※※※※※※※※※※※※
*/
.news_detail .article time {
  font-size: 2.2rem;
  color: #ec6f00;
  margin-bottom: 1em;
  display: block;
}

.news_detail .article .sec_title {
  font-size: 2.4rem;
  line-height: 1.2em;
}

.news_detail .article img.full {
  width: 100%;
  margin-bottom: 50px;
}

.news_detail .article p {
  margin-bottom: 50px;
}

.news_detail .article a.tolist {
  position: relative;
  width: 8.5em;
  display:block;
  margin: 80px auto 0;
  font-size: 2.4rem;
}

.news_detail .article a.tolist .linktext {
  position: relative;
}

.news_detail .article a.tolist .linktext::after {
  content:'';
  display:block;
  height: 1px;
  width: 0;
  transition: 0.5s;
  background-color: #000;
  position: absolute;
  bottom: -2px;
}

.news_detail .article a.tolist:hover .linktext::after {
  width: 100%;
}

.news_detail .article span.arrow {
  display:inline-block;
  width: 25px;
  height: 25px;
  background-color: #ec6f00;
  border-radius: 20px;
  position: absolute;
  text-align: center;
  right: 0;
  line-height: 17px;
}

.news_detail .article span.arrow::before {
  background-color: #fff;
  position: absolute;
  content:'';
  width:25px;
  height: 25px;
  border-radius: 20px;
  transform: scale(0);
  transition: 0.5s ease all;
  left:0;
  
}

.news_detail .article a.tolist:hover span.arrow {
  z-index: -1
}

.news_detail .article a.tolist:hover span.arrow::before {
  transform: scale(1);
  z-index: -1;
}

.news_detail .article a.tolist .icon_arrow {
  width: auto;
  height: 10px;
}

@media (max-width: 768px){
  .news_detail .article time {
    font-size: 2rem;
  }

  .news_detail .article .sec_title {
    font-size: 2.2rem;
  }
  
  .news_detail .article a.tolist {
    position: relative;
    width: 10em;
    display:block;
    margin: 80px auto 0;
    font-size: 1.8rem;
  }

  .news_detail .article span.arrow {
    display:inline-block;
    width: 20px;
    height: 20px;
    background-color: #ec6f00;
    border-radius: 20px;
    position: absolute;
    color: #fff;
    font-size: 0.8em;
    text-align: center;
    right: -2em;
    font-family: "Rubik", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    line-height: 20px;
  }

  .news_detail .article span.arrow::before {
    width:20px;
    height: 20px;
  }

  .news_detail .article a.tolist:hover span.arrow {
    color:#ec6f00;
  }

  .news_detail .article a.tolist:hover span.arrow::before {
    transform: scale(1);
  }
}


/*
※※※※※※※※※※※※※※※※

スタッフ紹介

※※※※※※※※※※※※※※※※
*/

.staff section {
  margin: 0 auto;
  max-width: 1000px;
}

.staff .stafflist {
  display:flex;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
}

.staff .stafflist li {
  width: 31%;
}

.staff figure.snip1141 figcaption{
  pointer-events:none;
}

.staff figure.snip1141 .staff_text {
  opacity: 0;
  width: 90%;
  margin-top: 1em;
  line-height: 1.4em;
  font-size: 1.4rem;
  pointer-events: none;
}

.staff figure.snip1141:hover .staff_text {
  opacity: 1;
}

.staff .under_text {
  text-align: center;
  line-height: 1.3em;
  font-size: 1.4rem;
  padding-left: 0.5em;
  margin-bottom: 1em;
}

@media (max-width: 1100px){
  .staff figure.snip1141 .staff_text {
    font-size: 1.1rem;
    line-height: 1.3em;
  }
}

@media (max-width: 950px){
  
.staff .stafflist {
  display:flex;
  justify-content: space-around;
  flex-direction: column;
}
  
  .staff .stafflist li {
  width: 60%;
  max-width: 310px;
  margin: 0 auto;
}
  
  figure.snip1141 {
    height: 40vw;
  }
  
}

@media (max-width: 768px){
  .staff .stafflist:hover {
    display:flex;
  }
.staff section {
  max-width: 1000px;
  margin: 0 1vw 0 -4vw;
}
  
figure.snip1141 {
  height: 59vw;
}

.staff figure.snip1141 .staff_text {
  font-size: 11px;
  line-height: 1.4em;
}

}


/*
※※※※※※※※※※※※※※※※

お問い合わせ contact

※※※※※※※※※※※※※※※※
*/
.contact h4.sec_title {
  margin-top: 80px;
}

.contact .telwrap {
  background-image: url("../images/icon_tel.svg");
  background-position: left center;
  background-size: 50px auto;
  background-repeat: no-repeat;
  padding-left: 70px;
}

.contact .tel {
  font-family: 'telfont';
  font-size: 6.6rem;
  font-weight: bold;
  letter-spacing: -0.02em;
  line-height: 1em;
}

.contact form dl {
  margin:30px auto 50px;
}
.contact .form_txt {
	font-size: 1.4rem;
	margin-bottom: 40px;
	letter-spacing: 0.1em;
}

.contact .privacy_intro {
	font-size: 1.2rem;
	line-height: 1.5em;
	letter-spacing: 0.1em;
	margin-bottom:5em;
}

.contact .privacy_txt {
	border:1px solid #ccc;
	padding:30px 45px;
	font-size: 1.2rem;
	line-height: 1.3em;
	letter-spacing: 0.1em;
	margin:20px 0 60px;
	height:120px;
	overflow-y: scroll;
}

.contact .privacy_txt p.privacy_policy {
	color:#ec6f00;
	font-weight: bold;
	margin-bottom: 15px;
  font-size: 1.4rem;
}

.contact .privacy_txt p {
	margin-bottom: 15px;
}

.contact .privacy_txt dt {
	font-size: 2.0rem;
	margin-bottom: 15px;
	display:block;
  line-height: 1.3em;
}

.contact .privacy_txt span.optional {
	display:none;
}

.contact .privacy_txt dt:before {
	content:'・';
	font-size: 2.0rem;
}

.contact .privacy_txt dd {
	padding-left:20px;
}

.contact .privacy_txt .hyphen {
	margin-bottom: 15px;
}

.contact .privacy_txt .hyphen li {
	text-indent:-1em;
	margin-left:1em;
}

.contact .privacy_txt .hyphen li:before {
	content:'-';
	margin-right:0.5em;
}

.contact dt {
	display:none;
}



input[type="button"] {
	width:432px;
	float:left;
	margin-left:30px;
	cursor: pointer;
}

input[type="reset"] {
	width:432px;
	float:right;
	margin-right: 30px;
	cursor: pointer;
}

input[type="text"],input[type="email"] {
	font-size: 1.2rem;
	width:100%;
	padding:3em 4em;
	margin-top: 2px;
  border: none;
}

input[type="checkbox"]{
  width:20px;
  height: 20px;
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid #000;
  border-radius: 0;
  cursor: pointer;
  outline: none;
  display: inline-block;
  position: relative;
  vertical-align: middle;
}

input[type="checkbox"]:checked {
  background-color: #ec6f00;
}

input[type="checkbox"]:checked::after {
  content: "✓"; /* チェックマーク */
  font-size: 16px;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

textarea {
	font-size: 1.2rem;
	width:100%;
	height:270px;
  border:none;
	padding:2em 4em;
	margin-top:2px;
}

.error_blank,
.error_format,
.error_match{
	color:red;
	line-height:1.4em;
	font-size: 1.4rem;
	display:inline;
	padding-left:1em;
	padding-top:3px;
}

label.privacy {
	font-weight: bold;
	font-size: 1.4rem;
}

.contact .loading {
	text-align: center;
	display: none;
}

.contact .loading img {
	width:30px;
}

.contact .sent {
	text-align: center;
	font-size: 1.8rem;
	color :#ec6f00;
	margin-top:1em;
	display:none;
}

input[type="button"],input[type="reset"]{
	width:100%;
	line-height: 60px;
	color:#fff;
	text-align: center;
	display:block;
	background-color: #ec6f00;
	border:3px solid #ec6f00;
	font-size: 2rem;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	margin:0 auto;
  position: relative;
}

input[type="button"]::before {
  content:'→';
  display:block;
  position: absolute;
  font-family: "M PLUS Rounded 1c", serif;
  font-weight: 300;
  font-style: normal;
  right: 30px;
  color: #ec6f00;
  font-size: 3rem;
  transition: 0.5s;
}

input[type="button"]:hover,input[type="reset"]:hover{
	background-color:#fff;
	color: #ec6f00;
	border:3px solid #ec6f00;
	transform: scale(0.98);
	background-image: url(../images/btn_circle_icon_on.png);
}

.btnbox {
  max-width: 800px;
  margin: 0 auto;
  display:flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.btnbox > p {
  width: 48%;
  position: relative;
}

.btnbox > p::before {
  content:'→';
  display:block;
  position: absolute;
  font-family: "M PLUS Rounded 1c", serif;
  font-weight: 300;
  font-style: normal;
  right: 30px;
  top: 20px;
  color: #fff;
  font-size: 3rem;
  transition: 0.5s;
  z-index: 2;
  pointer-events: none;
}

.btnbox > p:hover::before {
  color: #ec6f00;
  right: 20px;
}


::placeholder {
  color: #b8b1ad;
}



@media screen and (max-width:767px) {
	.contact .telwrap {
    background-image: url("../images/icon_tel.svg");
    background-position: left center;
    background-size: 35px auto;
    background-repeat: no-repeat;
    padding-left: 45px;
  }

  .contact .tel {
    font-family: 'telfont';
    font-size: 4rem;
    font-weight: bold;
    letter-spacing: -0.02em;
    line-height: 1em;
  }
  
  .contact .reception {
    font-size: 1.2rem;
  }
  
	.contact .form_txt {
		padding:0 3%;
		margin-bottom: 10px;
	}
	
	.contact .privacy_intro {
		font-size: 1.4rem;
		line-height: 1.5em;
		letter-spacing: 0.1em;
		margin:0 auto 1.5em;
		width:94%;
	}
	
	.contact .privacy_txt {
		width:94%;
		padding:15px 20px;
		margin:20px auto 60px;
	}
	
	.contact dd {
		padding:0 3%;
	}
	
	input[type="button"] {
		width:100%;
		cursor: pointer;
    margin-bottom: 20px;
	}

	input[type="reset"] {
		width:100%;
		cursor: pointer;
	}
	
	input[type="text"],input[type="email"] {
		padding:2em 2em;
		margin-top: 2px;
	}
	
	textarea {
		width:100%;
		height:220px;
		padding:2em 2em;
		margin-top:2px;
	}
  
	input[type="button"],input[type="reset"]{
		width:100%;
		line-height: 50px;
    font-size: 1.6rem;
	}
  
  .cf.btnbox {
    width:80%;
  }
  
  .btnbox > p::before {
    right: 20px;
    top: 15px;
    font-size: 2rem;
  }

  .btnbox > p:hover::before {
    right: 15px;
  }
}

/*
※※※※※※※※※※※※※※※※

運営規定 document

※※※※※※※※※※※※※※※※
*/

.document .content {
  min-height: 600px;
}

.document .content .doc_list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 800px;
  margin:0 auto;
}
.document .content .doc_list li {
  margin-bottom: 2em;
  width: 48.5%;
}

.document .content .doc_list a {
  display: block;
  width: 100%;
  height: 76px;
  line-height: 76px;
  border:1px solid #c8c8c8;
  vertical-align: middle;
  padding-left: 2em;
  background-image: url('../images/icon_pdf.png');
  background-size: 25px 25px;
  background-repeat: no-repeat;
  background-position: right 1em center;
  transition: 0.5s;
}

.document .content .doc_list a:hover {
  opacity: 0.6;
}

@media screen and (max-width:767px) {
  .document .content .doc_list {
    flex-direction: column;
    width: 90%;
    max-width: 350px;
  }
  
  .document .content .doc_list li {
    margin-bottom: 2em;
    width: 100%;
  }
}

