/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol[class] {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}




body {
  color: #333;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, Verdana, Meiryo, "M+ 1p", sans-serif;
  font-size: 16px;
}

p {
  line-height: 1.75;
}

section {
}

header {
  width: 100%;
  height: 100px;
  padding: 1rem 1rem 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}

.logo {
  width: 300px;
  position: absolute;
  top: 1rem;
  left: 2rem;
  z-index: 99;
}

.logo02 {
  width: 200px;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  z-index: 99;
}

.menu {
  position: relative;
  z-index: 98;
  display: flex;
  justify-content: flex-end;
}

.menu > li {
  width: 160px;
  text-align: center;
}

.menu > li a {
  display: block;
  color: #333;
  font-weight: 700;
  text-decoration: none;
}

.menu > li a:hover {
  color: #333;
}

ul.menu__second-level {
  visibility: hidden;
  opacity: 0;
  z-index: 1;
}

.menu > li:hover {
  background: #fff;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.menu__second-level li {
  background: #fff;
  border-top: 1px solid #35e5c6;
  border-right: 1px solid #35e5c6;
  border-left: 1px solid #35e5c6;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu__second-level li:last-child {
  border-bottom: 1px solid #35e5c6;
}

.menu__second-level li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu__second-level li a:hover {
  color: #fff;
  background: #35e5c6;
}

.menu {
  *zoom: 1;
}

.menu > li.menu__single {
  position: relative;
}

li.menu__single ul.menu__second-level {
  position: absolute;
  top: 40px;
  width: 200px;
  margin-left: -20px;
  background: #fff;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

li.menu__single:hover ul.menu__second-level {
  top: 50px;
  visibility: visible;
  opacity: 1;
}

.arrow:after {
  color: #35e5c6;
  font-family: "Font Awesome 5 Free";
  content: '\f107';
  font-weight: 900;
}

#mainimg {
  margin-bottom: 3rem;
}

.mainvisual {
  background: url(img/mainvisual.jpg) no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 0;
  padding-top: calc(469 / 2000 * 100%);
  position: relative;
  z-index: 1;
}

.main_ttl {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
}

.main_ttl h2 {
  color: #fff;
  font-size: 52px;
  font-weight: 700;
  margin-left: 9%;
}

.main_ttl h2 span {
  background-color: #35e5c6;
  padding: 0.5rem;
}

.ser_area {
  margin-bottom: 3rem;
}

.service {
  width: 100%;
  display: flex;
}

.service li {
    position: relative;
    overflow: hidden;
    width: 33.333333%;
}

.banner_1:after,
.banner_2:after,
.banner_3:after {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    background-size: cover;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.banner_1:after {
    background: url(img/img01.jpg) no-repeat center center;
    background-size: cover;
}

.banner_2:after {
    background: url(img/img02.jpg) no-repeat center center;
    background-size: cover;
}

.banner_3:after {
    background: url(img/img03.jpg) no-repeat center center;
    background-size: cover;
}

.banner_1:hover:after,
.banner_2:hover:after,
.banner_3:hover:after {
    opacity: .8;
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

.banner_1 .inner,
.banner_2 .inner,
.banner_3 .inner {
    z-index: 1;
    position: relative;
    height: 100%;
}

.banner_1 .inner a,
.banner_2 .inner a,
.banner_3 .inner a {
  color: #fff;
  width: 100%;
  height: 100%;
  padding: 2rem;
  text-decoration: none;
  display: block;
}

.banner_1 h2,
.banner_2 h2,
.banner_3 h2 {
  font-size: 30px;
  margin: 3rem 0;
  text-align: center;
}

.ser_area02 {
  width: 1000px;
  margin: 0 auto 3rem;
}

.service02 {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.service02 li {
  width: 48%;
}

.service02 li a {
  width: 100%;
  height: 100%;
  padding: 1.5rem;
  border: 3px solid #35e5c6;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
}

.service02 li a:hover {
  border: 3px solid #fff100;
}

.ser02_img {
  background-color: #35e5c6;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
}

.ser_txt {
  width: 71%;
}

.ser_txt h2 {
  color: #35e5c6;
  font-size: 24px;
}

.ser_txt p {
  color: #333;
}

footer {
  background-color: #dcdcdc;
  margin-top: 3rem;
  padding-top: 1.5rem;
}

.foot_navi {
  width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.foot_navi ul {
  margin: 0;
  padding: 0;
}

.foot_navi ul li {
  padding: 0.25rem 0;
  list-style: none;
}

.foot_navi ul li:before {
  color: #35e5c6;
  font-family: "Font Awesome 5 Free";
  content: '\f105';
  font-weight: 900;
  margin-right: 0.3rem;
}

.foot_navi ul li a {
  color: #333;
  text-decoration: none;
}

.foot_navi ul li a:hover {
  text-decoration: underline;
}

.foot_logo {
/*  background-color: #fff;*/
  width: 190px;
  padding: 1.5rem;
  border-radius: 10px;
}

.foot_copy {
  background-color: #35e5c6;
  margin-top: 1.5rem;
  padding: 1rem 0 0.5rem;
  text-align: center;
}

.foot_copy img {
  display: inline!important;
}

#contents {
  width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.main_cont {
  width: 680px;
}

.main_cont .box_area {
  padding-bottom: 5rem;
}

.main_cont .box {
  margin-bottom: 3rem;
}

.main_cont h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.main_cont h3 img {
  background-color: #35e5c6;
  width: 50px;
  height: 50px;
  margin-right: 0.5rem;
  border-radius: 50%;
  overflow: hidden;
}

.main_cont h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 1rem;
}

.sidebar {
  width: 260px;
}

.side_ser {
  width: 100%;
  margin-bottom: 1.3rem;
}

.side_ser li {
  list-style: none;
  margin-bottom: 0.7rem;
}

.side_ser li:last-child {
  margin-bottom: 0;
}

.side_ser li a {
  color: #333;
  font-size: 19px;
  width: 100%;
  height: 100%;
  padding: 0.3rem;
  display: flex;
  align-items: center;
  text-decoration: none;
  border: 3px solid #35e5c6;
}

.side_ser li a:hover {
  border: 3px solid #fff100;
}

.side_icon {
  background-color: #35e5c6;
  width: 40px;
  height: 40px;
  margin-right: 0.5rem;
  border-radius: 50%;
  overflow: hidden;
}

.side_menu {
  background-color: #eee;
  width: 100%;
  padding: 1.5rem;
  border-radius: 5px;
}

.side_menu li {
  margin-bottom: 0.7rem;
  list-style: none;
}

.side_menu li:last-child {
  margin-bottom: 0;
}

.side_menu li:before {
  color: #35e5c6;
  font-family: "Font Awesome 5 Free";
  content: '\f105';
  font-weight: 900;
  margin-right: 0.3rem;
}

.side_menu li a {
  color: #333;
  font-weight: 700;
  text-decoration: none;
}

.side_menu li a:hover {
  text-decoration: underline;
}

.lang_list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.lang_list::after {
  content: "";
  display: block;
  width: 32%;
}

.lang_list li {
  font-size: 18px;
  width: 32%;
  margin-bottom: 1rem;
  padding: 1.5rem 0;
  border: 1px solid #35e5c6;
  text-align: center;
}

.lang_tbl {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

.lang_tbl tr {
  border-bottom: 1px solid #ccc;
}

.lang_tbl tr:first-child {
  border-top: 1px solid #ccc;
}

.lang_tbl tr:nth-child(odd) {
  background-color: #f6f6f6;
}

.lang_tbl th {
  color: #35e5c6;
  width: 25%;
  padding: 0.7rem;
  text-align: left;
  line-height: 1.5;
}

.lang_tbl td {
  padding: 0.7rem;
  line-height: 1.5;
}

.voice_area {
  margin: 2rem 0 4rem;
}

.voice_ttl {
  height: 100%;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  display: flex;
  align-items: center;
}

.voice_ttl dt {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  background-color: #35e5c6;
  padding: 0.5rem 1rem;
}

.voice_ttl dt:before {
  color: #fff;
  font-family: "Font Awesome 5 Free";
  content: '\f14b';
  font-weight: 900;
  margin-right: 0.5rem;
}

.voice_ttl dd {
  padding: 0.5rem 1rem;
}

.voice_ttl dd:before {
  color: #35e5c6;
  font-family: "Font Awesome 5 Free";
  font-size: 1.5em;
  content: '\f075';
  font-weight: 900;
  margin-right: 0.5rem;
}

.case_area {
  width: 100%;
  margin-bottom: 4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.case_area li {
  width: 48%;
  margin-bottom: 1.8rem;
  padding: 1.5rem;
  border: 1px solid #ccc;
}

.case_area li h3:before {
  color: #35e5c6;
  font-family: "Font Awesome 5 Free";
  content: '\f14b';
  font-weight: 900;
  margin-right: 0.5rem;
}

.faq {
}

.faq dt {
  height: 60px;
  border: 1px solid #ccc;
  display: flex;
  align-items: center;
}

.faq dt:before {
  color: #fff;
  background-color: #35e5c6;
  font-size: 30px;
  content: 'Q';
  font-weight: 700;
  width: 60px;
  height: 60px;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq dd {
  margin-bottom: 3rem;
  padding: 1rem;
}

.tos_box {
  width: 100%;
}

.tos_box li {
  margin-bottom: 2rem;
}

.pp_area {
}

.pp_area li {
  margin-bottom: 3rem;
}

.pp_area li p {
  margin-bottom: 1.5rem;
}

.pp_area li h3 {
  font-size: 24px;
  margin-bottom: 0.5rem;
}

.pp_area li h4 {
  font-size: 18px;
  margin-bottom: 0.5rem;
}

.top_case_area {
  width: 1000px;
  margin: 0 auto;
}

.top_case {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.top_case li {
  width: 32%;
  border: 1px solid #ccc;
  position: relative;
  z-index: 1;
}

.top_case_h {
  color: #fff;
  background-color: #35e5c6;
  font-size: 12px;
  font-weight: 700;
  padding: 0.5rem 0.5rem 0.3rem;
  text-align: center;
  position: absolute;
  top: 0.3rem;
  right: 0.3rem;
  line-height: 1.3;
  border-radius: 3px;
  z-index: 99;
}

.top_case_h_no {
  font-size: 30px;
  line-height: 1;
}

.top_case_txt {
  padding: 1rem;
}

.top_case_ttl {
  font-size: 24px;
  font-weight: 700;
}

.top_case_ttl:before {
  color: #35e5c6;
  font-family: "Font Awesome 5 Free";
  content: '\f14b';
  font-weight: 900;
  margin-right: 0.5rem;
}

.top_case_sub {
  color: #35e5c6;
  font-weight: 700;
}

.btn_more {
  width: 100%;
}

.btn_more a {
  color: #fff;
  background-color: #35e5c6;
  width: 100%;
  height: 100%;
  padding: 0.5rem 0;
  text-align: center;
  display: block;
  text-decoration: none;
}

.btn_more a:hover {
  background-color: #fff100;
}

.fee_tbl {
  width: 100%;
  border-collapse: collapse;
}

.fee_tbl th {
  color: #fff;
  background-color: #35e5c6;
  width: 16.666666%;
  padding: 0.5rem 0.3rem;
  border: 1px solid #ccc;
}

.fee_tbl td {
  padding: 0.5rem 0.3rem;
  text-align: center;
  border: 1px solid #ccc;
}

.fee_area {
  background-color: #eee;
  padding: 1.5rem;
  border-radius: 5px;
}

.fee_area_h {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.fee_area_h:before {
  color: #35e5c6;
  font-family: "Font Awesome 5 Free";
  content: '\f14a';
  font-weight: 900;
  margin-right: 0.5rem;
}

.txt_fee {
  width: 400px;
  height: 40px;
  border: 1px solid #bbb;
  border-radius: 5px;
}

.btn_fee {
  color: #fff;
  background-color: #35e5c6;
  font-weight: 700;
  width: 160px;
  height: 40px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}