/* CSS RESET */
html {
  font-size: 62.5%;
  /* overflow: hidden; */

}

*,
*::before,
*::after {
  box-sizing: border-box
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0
}

ul[role="list"],
ol[role="list"] {
  list-style: none
}

html:focus-within {
  scroll-behavior: smooth
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  overscroll-behavior-y: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto
}

img,
picture {
  max-width: 100%;
  display: block
}

input,
button,
textarea,
select {
  font: inherit
}

@media(prefers-reduced-motion:reduce) {
  html:focus-within {
    scroll-behavior: auto
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    /* transition-duration: .01ms !important; */
    scroll-behavior: auto !important
  }
}


body {
  font-family: system-ui, "Hiragino Sans", "YuGothic", "Arial", sans-serif;
  width: 100%;
  margin: 0;
  line-height: 1.25;
  background-color: #fff;
  overflow-x: hidden;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  /*Chrome,Safari*/
  -ms-text-size-adjust: 100%;
  /*EgdeMobile*/
  -moz-text-size-adjust: 100%;
  /*firefox*/
  font-size: 1.6rem;
  /* 16px*/
}

a {
  font-family: system-ui, "Hiragino Sans", "YuGothic", "Arial", sans-serif;
  text-decoration: none;
  cursor: pointer;
  font-weight: 400;
  letter-spacing: 0.2rem;
  font-size: 1.6rem;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -ms-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
  opacity: 1;
  color: #000;
}

img {
  margin: 0;
  padding: 0;
  -webkit-transition: opacity 1s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -ms-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

a img {
  -webkit-transition: opacity 1s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -ms-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

a:hover img {
  opacity: 0.7;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  font-family: system-ui, "Hiragino Sans", "YuGothic", "Arial", sans-serif;
  letter-spacing: 0.2rem;
  list-style: none;
  vertical-align: top;


}

p {
  font-family: system-ui, "Hiragino Sans", "YuGothic", "Arial", sans-serif;
  font-weight: 400;
  margin: 0;
  letter-spacing: 0.2rem;
  line-height: 1.5;

  text-align: left;
}

body {
  font-size: 1.6rem;
}

p {
  font-size: 1.6rem;
}

li {
  font-size: 1.6rem;
}

li p {
  font-size: 1.6rem;
}

input,
textarea,
button {
  font-family: system-ui, "Hiragino Sans", "YuGothic", "Arial", sans-serif;
  border: none;
  color: #000;
  max-width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 1.6rem;
  vertical-align: text-top;
}

select,
option {
  font-family: system-ui, "Hiragino Sans", "YuGothic", "Arial", sans-serif;
  font-weight: 400;
  background: none transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  width: auto;
  /* appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none; */
}

button,
input[type="submit"] {
  background: transparent;
  padding: 0;
  outline: none;
  cursor: pointer;
}

section {
  position: relative;
  width: 100%;
  height: auto;
}

table {
  border-collapse: collapse;
}

tr {
  padding: 0;
  margin: 0;
}

th,
td {
  font-family: system-ui, "Hiragino Sans", "YuGothic", "Arial", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.2rem;
  text-align: left;

}

dl {
  margin: 0;
}

dd,
dt {
  font-family: system-ui, "Hiragino Sans", "YuGothic", "Arial", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.2rem;
  margin: 0;

}

h1,
h2,
h3,
h4 {
  font-family: system-ui, "Hiragino Sans", "YuGothic", "Arial", sans-serif;

  letter-spacing: 0.2rem;
  font-weight: 400;
  text-align: left;
  margin: 0;
  padding: 0;
  font-size: 2.4rem;
}

h1 {
  font-size: 4.8rem;
}

h2 {
  font-size: 3.6rem;
}

h3 {
  font-size: 2.4rem;
}

h4 {
  font-size: 1.8rem;
}

/* Common */

.clearfix {
  display: block;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  font-size: 0.1em;
  line-height: 0;
  visibility: hidden;
  overflow: hidden;
}

.sp_only {
  display: none;
}

.pc_only {
  display: block;
}

@media only screen and (max-width: 768px) {
  .sp_only {
    display: block;
  }

  .pc_only {
    display: none;
  }
}

/* resposive header */
.responsive_header {
  display: none;
}

.pc_header {
  display: block;
}

@media only screen and (max-width: 1080px) {
  .pc_header.pc_only {
    display: none;
  }

  .responsive_header {
    display: block;
  }

  .sp_header.sp_only {
    display: block;
  }
}

.fix-header {

  /* line-height: 6rem; */
  height: 8rem;
  left: 0;
  text-align: left;
  width: 100%;
  margin: 0 auto;
  background: #fff;
  position: sticky;
  top: 0;
  opacity: 1;
  z-index: 1000;
  /* border-bottom: 1px solid #000; */
}

.fix-header-contents {
  width: 100%;
  height: 8rem;
  margin: 0 auto;
}

.fix-header ul {
  list-style-type: none;
}

.fix-header li a,
.fix-header li a:visited {
  text-decoration: none;
}

.fix-header li:last-child {
  margin-right: 0;
}

#fix-header-logo {
  position: relative;
  left: 0%;
  top: 0;
  height: 100%;
  box-sizing: border-box;
}

#fix-header-logo a {
  position: relative;
  width: auto;
  display: inline-block;
  height: 100%;
}

#fix-header-logo a img {
  width: 75%;
  position: relative;
  top: 1.5rem;
  margin: 0 auto;
}

#fix-header-menus {
  position: absolute;
  top: 0rem;
  right: 0rem;
  text-align: right;
  height: 100%;
}

#fix-header-menus ul {
  position: relative;
  right: 0;
}

#fix-header-menus li {
  height: auto;
}

#fix-header-menus li a {
  position: relative;
  font-size: 1.6rem;
  text-shadow: none;
  padding: 0 2rem;
  font-weight: 400;

}

nav {
  position: relative;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  transition: all 0.3s;

}

nav.open {
  background: rgba(0, 0, 0, .4);
  position: fixed;
}

#fix-header-menus .sp_header ul.open {
  transform: translateX(0);
}

#fix-header-menus .sp_header ul {
  margin: 0;
  list-style-type: none;
  width: 70%;
  height: 100%;
  position: fixed;
  background-color: #04ace4;
  right: 0;
  transform: translateX(100%);
  transition: all 0.3s;
  border-top: 1px solid #fff;
}

#fix-header-menus .sp_header nav ul li {
  /* padding: 1.5rem 0; */
  border-bottom: 1px solid #fff;
  display: block;
  text-align: center;
}

.fix-header #fix-header-menus .sp_header nav ul li a {
  display: block;
  text-align: center;
  text-decoration: none;
  line-height: 1.5;
  padding: 1.5rem 0;
  color: #fff;
}

#fix-header-menus .sp_header nav ul li img {
  display: inline-block;
  height: auto;
  vertical-align: middle;
  margin-right: 1rem;
}

#p-btn {
  display: inline-block;
  position: relative;
  width: 5rem;
  height: -moz-available;
  /* WebKit-based browsers will ignore this. */
  height: 8rem;
  /* Mozilla-based browsers will ignore this. */
  height: fill-available;
}

#p-icon {
  display: block;
  position: relative;
  top: 4rem;
  right: 0;
  width: 3rem;
  height: 3px;
  background: #04ace4;
  transition: 0.2s;
}

#p-icon:before,
#p-icon:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 3rem;
  height: 3px;
  background: #04ace4;
  transition: 0.3s;
}

#p-icon:before {
  margin-top: -1.3rem;
}

#p-icon:after {
  margin-top: 1.0rem;
}

#p-btn .close {
  background: transparent;
}

#p-btn .close:before,
#p-btn .close:after {
  margin-top: 0;
}

#p-btn .close:before {
  transform: rotate(45deg);
}

#p-btn .close:after {
  transform: rotate(-45deg);
}

html.close {
  height: 100%;
  overflow: hidden;
}

.close header {
  position: fixed;
}

#icon_fixed {
  display: block;
  border: 0;
  top: 0;
  position: relative;
  height: -moz-available;
  /* WebKit-based browsers will ignore this. */
  height: -webkit-fill-available;
  /* Mozilla-based browsers will ignore this. */
  height: fill-available;
  height: 100%;
}

.sp_header.sp_only {
  height: -moz-available;
  /* WebKit-based browsers will ignore this. */
  height: -webkit-fill-available;
  /* Mozilla-based browsers will ignore this. */
  height: fill-available;
}

.fix-header-contact {
  position: absolute;
  top: 50%;
  right: 8rem;
  text-align: right;
  transform: translateY(-50%);
  background: #fc9404;
  padding: 1.5rem 1.25rem;
  border-radius: 50%;
}




.container {
  position: relative;
  width: 100%;
}

@media only screen and (max-width: 1024px) {
  .container {
    position: relative;
    width: 100%;
  }

  .close .container {
    margin-top: 8rem;
  }
}

.w100 {
  width: 100%;
}

.w80 {
  width: 80%;
  margin: 0 auto;
}

.w90 {
  width: 90%;
  margin: 0 auto;
}

.index_content {
  width: 1180px;
  padding: 90px 30px 0;
  margin: 0 auto 0px;
}

@media only screen and (max-width: 1280px) {
  .index_content {
    width: auto;
    padding: 40px 20px 0;
    margin: 0 auto;
  }

  header .right {
    display: none;
  }
}

.text-center {
  text-align: center;
}

/*header*/

header {
  position: sticky;
  width: 100%;
  background-color: transparent;
  z-index: 20;
  top: 0;
  left: 0;
  box-sizing: border-box;
  background: #fff;
}

header .pc_only {
  display: flex;
  justify-content: space-between;
  width: 90%;
  margin: auto;
  padding: 3rem 0;
  flex-wrap: wrap;
  align-items: center;
}

header .center>ul {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

header .center>ul>li>a {
  position: relative;
  font-size: 1.6rem;

  display: block;
  margin: 1rem;
}

header .center>ul>li>a::after {
  position: relative;
  bottom: -1rem;
  content: "";
  display: block;
  width: 0;
  height: 1px;
  transition: all 0.5s ease;
  box-sizing: border-box;
}

header .center>ul>li>a:hover::after {
  position: relative;
  bottom: -1rem;
  display: block;
  width: 100%;
  height: 1px;

  background-color: #fff;
  transition: all 0.5s ease;
  box-sizing: border-box;
  box-shadow: 0.05rem 0.05rem 0.1rem #fff;
}

header .center>ul>.last>a {
  background: #fff;
  color: #000;
  font-weight: 600;
  padding: 1rem 2.5rem;
}


header .right>ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .right>ul>li>a {
  position: relative;
  font-size: 1.6rem;

  display: block;
  margin: 1rem;
}

header .right>ul>li>a::after {
  position: relative;
  bottom: -1rem;
  content: "";
  display: block;
  width: 0;
  height: 1px;
  transition: all 0.5s ease;
  box-sizing: border-box;
}

header .right>ul>li>a:hover::after {
  position: relative;
  bottom: -1rem;
  display: block;
  width: 100%;
  height: 1px;

  background-color: #fff;
  transition: all 0.5s ease;
  box-sizing: border-box;
  box-shadow: 0.05rem 0.05rem 0.1rem #fff;
}

header .right>ul>.last>a {
  background: #fff;
  color: #000;
  font-weight: 600;
  padding: 1rem 2.5rem;
}

header .left {
  align-self: center;
}


.fix {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}


/*top*/

.top_area {
  display: block;
  position: relative;
}

.top_area img {
  width: 100%;
  max-width: 100%;
}


/* footer */
.footer_inner {
  padding: 3rem 0;
}

.footer_left a {
  float: left;
  margin-right: 6rem;
}

.footer_left p {
  float: left;
}

.footer_right a {
  float: right;
}

footer small {
  text-align: center;
  display: block;
  margin-bottom: 1.5rem;
}

@media only screen and (max-width: 1280px) {
  .footer_sp ul {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .footer_sp li {
    margin: 3rem 1.5rem;
  }

  .footer_sp {
    text-align: center;
  }

  .footer_sp a img {
    margin: 1.5rem auto;
  }
}


.contact_inst a {
  background: #fff;
  color: #000;
  font-weight: 600;
  padding: 1rem 2.5rem;
}

/* topics */
section>div>h2 {
  font-weight: 600;
  color: #04ace4;
}

.index_news_list {
  display: flex;
  margin: 3rem 0;
}

.post_content {
  float: left;
  background: #f8fcfc;
  width: 380px;
  height: 150px;
  margin: 0 20px 0 0;
  overflow: hidden;
  border: 1px solid #f5f5f5;
}

.post_content:nth-child(3n) {
  margin: 0;
}

.post_content .image {
  width: 150px;
  height: 150px;
  display: block;
  float: left;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.post_content .image img {
  width: 100%;
  height: 150px;
  max-width: 100%;
  backface-visibility: hidden;
  display: block;
  object-fit: cover;
}

.post_content .title_area {
  float: left;
  position: relative;
  height: 150px;
  width: -webkit-calc(100% - 150px);
  width: -moz-calc(100% - 150px);
  width: calc(100% - 150px);
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.title_area_inner {
  position: absolute;
  left: 40px;
  right: 40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.title_area_inner .title {
  font-weight: normal;
  line-height: 1.2;
  font-size: 1.4rem;
}

.title_area_inner .date {
  font-size: 12px;
  color: #999;
  margin-top: 7px;
}

.button {
  text-align: center;
}

.button a {
  background: #04ace4;
  display: inline-block;
  height: 55px;
  line-height: 55px;
  min-width: 220px;
  padding: 0 20px;
  color: #fff;
  text-align: center;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

@media only screen and (max-width: 1280px) {
  .index_news_list {
    flex-wrap: wrap;
  }

  .post_content {
    width: 100%;
    float: none;
    margin: 0 0 5px 0;
  }
}

@media only screen and (max-width: 650px) {
  .post_content {
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }

  .post_content .image {
    width: 40%;
    height: auto;
  }

  .post_content .title_area {
    height: auto;
    width: 60%;
  }

  .title_area_inner {
    left: 20px;
    right: 20px;
  }

  .title_area_inner .title {
    max-height: 100px;
    overflow: hidden;
  }


}


/*about*/


.about_box {
  margin: 3rem 0;
  text-align: center;
}

.about_box p {
  font-size: 1.8rem;
}

.text-left {
  text-align: left;
}

.img_slider {
  margin: 3rem 0;
}

.slick-slide img {
  display: block;
  width: 100%;
}



/*join*/
.join_are {
  padding: 6rem 0;
}

.join_box {
  margin: 3rem 0;
  text-align: center;
}

.join_box p {
  text-align: center;
}

.join_box p span {
  color: #04ace4;
}


/*municipality_area*/

.municipality_area {
  background: url(../resources/img/mask.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  margin-top: 6rem;
  padding: 8rem 0;
}

.municipality_box {
  padding: 0;
  text-align: center;
}

@media only screen and (max-width: 1280px) {
  .municipality_box {
    padding: 40px 20px 0;
  }
}

.municipality_box h3 {
  text-align: center;
  display: inline-block;
  padding: 1rem 5rem;
  background: #fff;
  border: 0.3rem solid #04ace4;
  color: #04ace4;
  margin-bottom: 3rem;
}

.municipality_box h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 3rem;
}

.municipality_box h2 span {
  font-size: 1.6rem;
}

.municipality_box p {
  text-align: center;
  color: #fff;
  margin-bottom: 3rem;
}

.button.orange_button a {
  background: #fc9404;
}

.outside_area {
  padding: 3rem 0;
}



.outside_title {
  display: inline-block;
  width: 33%;
  vertical-align: middle;
}

.outside_title h4 {
  text-align: center;
  display: inline-block;
  padding: 1rem 5rem;
  background: #fff;
  border: 0.3rem solid #04ace4;
  color: #04ace4;
}

.outside_attr {
  display: inline-block;
  width: 66%;
  vertical-align: middle;
}

@media only screen and (max-width: 1280px) {
  .outside_area {
    padding: 40px 20px;
  }

  .outside_title {
    display: block;
    width: 100%;
    margin-bottom: 3rem;
  }

  .outside_title h4 {
    display: block;
  }

  .outside_attr {
    display: block;
    width: 100%;
  }


}

/* contact */
.contact_area {
  background: #f5f5f5;
  padding: 6rem 3rem;
}

.contact_inner {
  background: #fff;
  border: 1px solid #dfdfdf;
  padding: 3rem;
  display: flex;
  justify-content: space-between;
}

.tel_area {
  width: 45%;
  position: relative;
}

.form_area {
  width: 45%;
  position: relative;
}

.contact_inner .contact_title {
  line-height: 2;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.contact_inner .contact_attr {
  float: right;
}

@media only screen and (max-width: 1280px) {
  .contact_inner {
    display: block;
  }

  .tel_area {
    width: 100%;
    margin-bottom: 3rem;
  }

  .form_area {
    width: 100%;
  }

  .contact_area {
    margin-top: 3rem;
  }
}

@media only screen and (max-width: 640px) {
  .contact_inner .contact_title {
    position: relative;
    text-align: center;
  }

  .contact_inner .contact_title h4 {
    text-align: center;
  }

  .contact_inner .contact_attr {
    float: none;
  }

  .contact_inner .contact_attr a img {
    margin: 0 auto;
  }

  .contact_inner .contact_attr p {
    text-align: center;
  }

}

/* page link */
.inpage_link {
  display: flex;
  justify-content: space-between;
  padding: 6rem 0;
}

.inpage_link a img {
  margin-bottom: 0.5rem;
  width: 300px;
  height: 200px;
}

.inpage_link a {
  color: #04ace4;
}

@media only screen and (max-width: 1280px) {
  .inpage_link {
    display: block;
  }

  .inpage_link_content {
    text-align: center;
    margin-bottom: 3rem;
  }

  .inpage_link a {
    text-align: center;
  }

  .inpage_link a img {
    margin: 0 auto;
  }
}


/* 外部リンク */
.external_link {
  background: #C9E4F1;
}

.link_inner {
  display: flex;
  justify-content: space-evenly;
  padding: 6rem 0;
}

@media only screen and (max-width: 768px) {
  .link_inner a {
    margin: 1.5rem;
  }

  .link_inner {
    display: flex;
    justify-content: space-evenly;
    padding: 1.5rem 0;
  }
}

/* about page */
.page_content h2 {
  font-size: 2.4rem;
  position: relative;
  margin-left: 6rem;
}

.page_content h2::before {
  position: absolute;
  top: 50%;
  left: -6rem;
  transform: translateY(-50%);
  width: 4rem;
  height: 0.1rem;
  background: #04ace4;
  content: '';
}

.page_container {
  padding: 3rem 0;
}

.page_title {
  padding: 3rem 0;
  position: relative;
}

.page_title h3 {
  font-size: 1.8rem;
  margin: 1.5rem 0;
}

.use_device {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 30px 0;
  align-items: normal;
}

.device_img {
  width: 35%;
  text-align: left;
}

.device_img img {
  width: auto;
  max-width: 100%;
  height: auto;
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

.device_text {
  width: 60%;
  margin: 2.5%;
  text-align: left;
}

.device_text table {
  width: 100%;
}

.device_text tr {
  border: 1px solid #dfdfdf;
}

.device_text th {
  vertical-align: middle;
  width: 30%;
  line-height: 2;
  text-align: center;
  background: #fffbf5;
}

.device_text td {
  text-align: left;
  line-height: 2;
  width: 70%;
  border-left: 1px solid #dfdfdf;
  padding: 5px 15px;
}

.device_text.w100 {
  width: 100%;
  margin: 2.5% 0;
}

.device_text h3 {
  margin-bottom: 3rem;
}



@media only screen and (max-width: 1280px) {
  .page_title {
    padding: 40px 20px 0;
  }

  .page_container {
    padding: 40px 20px 0;
  }

  .device_img {
    width: 100%;
    margin-bottom: 3rem;
  }

  .device_img img {
    margin: 0 auto;
  }

  .device_text {
    width: 100%;
    margin: 0;
  }
}

/* outline */
.outline_content h2 {
  margin-bottom: 3rem;
}

.outline_text table {
  width: 100%;
}

.outline_text tr {
  border: 1px solid #dfdfdf;
}

.outline_text th {
  vertical-align: middle;
  width: 30%;
  line-height: 2;
  text-align: center;
  background: #fffbf5;
  padding: 5px 15px;
}

.outline_text td {
  text-align: left;
  line-height: 2;
  width: 70%;
  border-left: 1px solid #dfdfdf;
  padding: 5px 15px;
}

.outline_text li {
  margin: 1rem 0;
}

.outline_text h5 {
  font-size: 1.8rem;
}

.outline_content iframe{
width: 100%;
aspect-ratio: 16/9;
}

.portrait {
  /* float: right; */
  margin-bottom: 3rem;
}

.section_end {
  padding: 3rem 0;
}

/* contact */

/* Contactform - お問い合わせフォーム */
.wpcf7 {
  background: #fafafa;
  border: 1px solid #ddd;
  font-size: 14px;
  margin: 0 0 2.5em !important;
  padding: 0;
  width: 100%;
}

.wpcf7 form {
  margin: 1.5em 1.5em 0;
}

.wpcf7 p {
  margin-bottom: 1em;
  font-size: 16px;
}

.wpcf7 input,
.wpcf7 textarea {
  border: 1px solid #ccc;
  box-sizing: border-box;
  line-height: 1.2;
  padding: 8px;
  width: 100%;
}

.wpcf7 select,
.wpcf7 input[type=checkbox],
.wpcf7 input[type=radio] {
  border: 1px solid #ccc;
  max-width: 97%;
  padding: 8px;
  width: auto;
}

.wpcf7 select,
.wpcf7 .wpcf7-list-item-label {
  font-size: 14px;
  line-height: 1.2;
}

.wpcf7 .wpcf7-list-item {
  display: block;
}

.wpcf7 textarea {
  height: 300px;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus {
  border: 1px solid #bbb;
  outline: none;
}

.wpcf7 .wpcf7-submit,
.wpcf7 .wpcf7-previous {
  box-sizing: border-box;
  position: relative;
  display: block;
  width: 225px;
  height: 48px;
  margin: 30px auto 0;
  background-color: #333333;
  cursor: pointer;
  border: none !important;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.5;
  outline: none;
  transition: all .3s;
}

.wpcf7 .wpcf7-submit:before,
.wpcf7 .wpcf7-submit:after {
  box-sizing: border-box;
}

.wpcf7 .wpcf7-submit:hover,
.wpcf7 .wpcf7-previous:hover {
  background-color: #666666;
}

.wpcf7 .wpcf7-submit .wpcf7-not-valid {
  background: pink;
}

.wpcf7 .wpcf7-submit .wpcf7-response-output {
  margin: 10px 0 0;
  padding: 8px 35px 8px 14px;
  border-radius: 4px;
}

.wpcf7 .wpcf7-submit .wpcf7-validation-errors {
  color: #B94A48;
  background-color: #F2DEDE;
  border: 1px solid #EED3D7;
}

.wpcf7 .wpcf7-submit .wpcf7-mail-sent-ok {
  color: #3A87AD;
  background-color: #D9EDF7;
  border: 1px solid #BCE8F1;
}

.wpcf7 .wpcf7-previous+br {
  display: none;
}

.wpcf7 form .wpcf7-response-output {
  margin: 2em 0.5em 2em;
  padding: 0;
  border: none;
  text-align: center;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  color: #dc3232;
  font-size: 1em;
}

.contact_content .wpcf7 {
  border: none;
  background: #fff;
}

.contact_content .wpcf7 form {
  margin: 0;
}

.contact_content .wpcf7 h3 {
  text-align: center;
  color: #3db5a4;
  font-size: 160%;
}

.contact_content .wpcf7 p {
  margin-bottom: 0;
  line-height: 1.5;
  display: inline-block;
  vertical-align: middle;
}

.contact_content ul {
  list-style: none;
  margin-left: 0;
  margin-top: 20px;
}

.contact_content li {
  padding: 20px 20px;
  border-top: 1px solid #dfdfdf;
}

.contact_content ul li p {
  font-size: 100%;
  width: 49%;
  font-weight: bold;
}

.hissu {
  float: right;
  margin-right: 5%;
  background-color: #a43649;
  color: #fff;
  padding: 1px 5px;
  border-radius: 8px;
  font-size: 90%;
}

.wpcf7 textarea {
  vertical-align: middle;
}

.contact_content .wpcf7 .form_title p {
  display: block;
  font-size: 14px;
}

.contact_content .wpcf7 .form_title p:first-of-type {
  margin-top: 25px;
}

.contact_content .wpcf7 .form_title p:last-of-type {
  margin-bottom: 25px;
}

.wpcf7 input,
.wpcf7 textarea {
  background-color: #dfdfdf;
}

.contact_content .wpcf7 select {
  width: 100%;
  background-color: #dfdfdf;
  max-width: 100%;
}

.contact_content .wpcf7 .doui_box {
  text-align: center;
  margin-bottom: 40px;
}

.contact_content .wpcf7 .doui_box li {
  padding: 0;
  border: none;
  display: inline-block;
  font-size: 14px;
  color: #666666;
  margin-right: 30px;
  margin-left: 30px;
  font-weight: bold;
}

.contact_content .wpcf7 .doui_box a {
  color: #1283ad;
}

.contact_content .wpcf7 .submit {
  margin: 0 auto;
  width: 50%;
}

.contact_content .wpcf7 .cancel_back {
  margin: 0 auto;
  width: 50%;
  box-sizing: border-box;
  border: 1px solid #ccc;
  line-height: 1.2;
  padding: 10px;
  text-align: center;
  margin-top: 15px;
}

.contact_content .wpcf7 .cancel_back a {
  display: block;
  color: #333333;
  text-decoration: none;
}

.contact_content .wpcf7 input.wpcf7-submit {
  width: 100%;
}

.contact_content .wpcf7 input[type="submit"] {
  padding: 15px;
  background-color: #04ace4;
  color: #ffffff;
}

.contact_content .wpcf7 input[type="submit"][disabled] {
  background-color: #cfcfcf;
}

.wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}

@media screen and (max-width: 767px) {
  .contact_content .wpcf7 form {
    margin: 0;
  }

  .text_area {
    margin-bottom: 40px;
  }

  .text_area h2 {
    font-size: 100%;
  }

  .contact_content .wpcf7 h3 {
    font-size: 140%;
  }

  .contact_content .wpcf7 .form_title p {
    font-size: 12px;
  }

  .contact_content .wpcf7 ul li p {
    font-size: 100%;
    width: 100%;
    font-weight: bold;
    margin-bottom: 1.5rem;
    margin-bottom: 1rem;
  }

  .contact_content ul li label {
    display: block;
    width: 100%;
  }

  .contact_content .wpcf7 .submit {
    width: 80%;
  }

  .contact_content .wpcf7 .cancel_back {
    width: 80%;
    margin-top: 0;
  }
}

/* effect */
.use_effect {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 30px 0;
  align-items: center;
}

.effect_img {
  width: 35%;
  text-align: left;
}

.effect_img img {
  width: auto;
  max-width: 100%;
  height: auto;
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

.effect_text {
  width: 60%;
  margin: 2.5%;
  text-align: left;
}

.effect_text table {
  width: 100%;
}

.effect_text tr {
  border: 1px solid #dfdfdf;
}

.effect_text th {
  vertical-align: middle;
  width: 30%;
  line-height: 2;
  text-align: center;
  background: #fffbf5;
}

.effect_text td {
  text-align: left;
  line-height: 2;
  width: 70%;
  border-left: 1px solid #dfdfdf;
  padding: 5px 15px;
}

.effect_text.w100 {
  width: 100%;
  margin: 2.5% 0;
}

.effect_text h3 {
  margin-bottom: 3rem;
}

.tramp_evidence h4 {
  color: #04ace4;
  margin-bottom: 1.5rem;
}



@media only screen and (max-width: 1280px) {
  .page_title {
    padding: 40px 20px 0;
  }

  .page_container {
    padding: 40px 20px 0;
  }

  .effect_img {
    width: 100%;
    margin-bottom: 3rem;
  }

  .effect_img img {
    margin: 0 auto;
  }

  .effect_text {
    width: 100%;
    margin: 0;
  }
}

/* studio */
.studio_content ul {
  margin: 1.5rem 0 1.5rem 2rem;
}

.studio_content li {
  list-style: circle;
  margin-bottom: 1.5rem;
}

.studio_content p a {
  color: #04ace4;
}

.studio_purpose {
  margin-bottom: 3rem;
}

.studio_purpose h5 {
  font-size: 2.2rem;
}

.studio_purpose h4 {
  font-size: 2.8rem;
  color: #04ace4;
}

.align_center {
  text-align: center;
}

.experience_content h4 {
  color: #04ace4;
  margin: 1.5rem 0;
}

.experience_content p a {
  color: #04ace4;
}

/* faq */
.question {
  border: 1px solid #dfdfdf;
  margin-top: 3rem;
}

.question p {
  /* cursor: pointer; */
  border-radius: 0.5rem;
  letter-spacing: 0.15rem;
  position: relative;
  display: flex;
  line-height: 2.2;
  font-size: 1.6rem;
  padding: 1rem;
}

.question p::before {
  display: flex;
  align-items: center;

  text-align: center;
  content: "Q.";
  padding: 1rem 1.2rem;
  margin-right: 2.5rem;
  line-height: 1;
  font-size: 1.8rem;
  height: 3.4rem;
  font-weight: bold;
  border-radius: 0.8rem;
  font-family: sans-serif;
  letter-spacing: 0;
  color: #04ace4;
}

/* .question p::after {
  content: "\f078";
  display: inline-block;

  text-align: center;
  padding: 1rem;
  width: 1.8rem;
  height: 1.8rem;
  font-family: "Font Awesome 5 Free";
  line-height: 1;
  font-weight: bold;
  position: absolute;
  right: 2rem;
  font-size: 1.4rem;
} */

.question_after p::after {
  content: "\f077";
}

.answer {
  /* display: none; */
  padding: 1rem;
  letter-spacing: 0.2rem;
  border: 1px solid #dfdfdf;
  margin-top: -1px;
}

.answer p {
  display: flex;
  line-height: 2.2;
  font-size: 1.6rem;
  text-align: left;
}

.answer p::before {
  display: flex;
  align-items: center;

  text-align: center;
  content: "A.";
  padding: 1rem 1.2rem;
  margin-right: 2.5rem;
  line-height: 1;
  font-size: 1.8rem;
  height: 3.4rem;
  font-weight: bold;
  border-radius: 0.8rem;
  font-family: sans-serif;
  letter-spacing: 0;
  color: #c9d0d2;
}

.answer p a {
  display: contents;
}

.faq_category {
  padding: 3rem 0;
}

@media screen and (max-width: 1280px) {
  .faq_terms {
    padding: 40px 20px 0;
  }

  .faq_category {
    padding: 40px 20px 0;
  }
}


.terms-group .terms {
  margin: 1.5rem 0;
}


.tab-group {
  display: flex;
  justify-content: center;
}

.tab {
  cursor: pointer;
  font-weight: bold;
  text-align: center;
  font-size: 16px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
  margin: 0 20px;
  cursor: pointer;
}


.tab:hover {
  color: #04ace4;
}

.tab:last-child {
  margin-right: 0;
}

.panel {
  display: none;
}

.panel-group {
  margin-bottom: 30px;
}

.tab.is-active {
  color: #04ace4;
  border-bottom: 2px solid #04ace4;
}

.tab.is-active a {
  color: #04ace4;
}


.panel.is-show {
  display: block;
}

@media screen and (max-width: 768px) {
  .tab-group {
    padding: 0 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 0;
  }

  .tab {
    margin: 0 0 15px;
    width: 47%;
  }
}

/* topics */
.archive_news_list {
  position: relative;
  border: 1px solid #ddd;
  overflow: hidden;
}

.archive_news_list .post_content {
  float: left;
  width: 50%;
  height: 200px;
  border: 0.5px solid #ddd;
  /* border-top: none;
  border-left: none; */
  margin: 0;
  padding: 18px;
  position: relative;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
}

/* .archive_news_list .post_content:nth-child(2n) {
  border-right: none;
} */

.archive_news_list .image {
  width: 260px;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
  overflow: hidden;
  float: none;
}

.archive_news_list .title_area {
  padding: 0px 40px 0 300px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  float: none;
  height: auto;
  width: auto;
}

.archive_news_list .title {
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.7;
  margin: 0 0 9px 0;
}

.archive_news_list .date {
  font-size: 1.2rem;
  color: #999;
}

.pagination {
  padding: 3rem 0;
  text-align: center;
}

.page-numbers {
  font-size: 2.4rem;
  margin: 0 1.5rem;
}

.page-numbers.current {
  color: #04ace4;
  border-bottom: 1px solid #04ace4;
}

.news_area {
  padding: 3rem 0;
  position: relative;
}

.topic_area h3 {
  margin: 1.5rem 0;
}

.topic_content {
  margin: 3rem 0;
}

.topic_content p {
  margin-bottom: 1.5rem;
}

.detail_link {
  text-align: center;
}

.detail_link a {
  background: #04ace4;
  padding: 2rem 4rem;
  display: block;
  width: 310px;
  margin: 0 auto;
  color: #fff;
  border-radius: 5px;
  margin-top: 3rem;
}

.topic_link_list {
  display: flex;
  justify-content: space-around;
  flex-wrap: nowrap;
}

@media screen and (max-width: 1280px) {
  .archive_news_list .post_content {
    float: none;
    width: 100%;
    height: auto;
    border: none;
    border-bottom: 1px solid #ddd;
    margin: 0;
    padding: 20px;
    display: block;
  }

  .archive_news_list .image {
    width: 150px;
    float: left;
    margin: 0 20px 0 0;
  }

  .archive_news_list .title_area {
    padding: 0;
    position: relative;
    top: 0;
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
  }


  .archive_news_list .title {
    font-size: 1.4rem;
    line-height: 1.7;
    margin: 0 0 5px 0;
  }

  .archive_news_list .date {
    font-size: 1rem;
  }

  .archive_news_list .post_content:last-child {
    border-bottom: none;
  }

  .news_area {
    padding: 40px 20px 0;
  }

  .topic_link_list {
    justify-content: space-between;
  }
}

@media screen and (max-width: 480px) {
  .detail_link a {
    width: 90%;
  }
}

/* Terms , Policy */
.content_area {
  padding: 6rem 0;
}

.content {
  margin: 3rem 0;
}

.content h3 {
  border-bottom: 0.5rem solid #dfdfdf;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
}

@media only screen and (max-width: 1280px) {
  .page_title {
    padding: 40px 20px 0;
  }

  .page_container {
    padding: 40px 20px 0;
  }

  .effect_img {
    width: 100%;
    margin-bottom: 3rem;
  }

  .effect_img img {
    margin: 0 auto;
  }

  .effect_text {
    width: 100%;
    margin: 0;
  }
}