@charset "UTF-8";
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

:root {
  --txt-color: #000;
  --g-color: #03a9ab;
  --b-color: #0073b1;
}

/*---------------
	BASE
---------------*/
html {
  overflow-y: scroll;
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 100%;
  background-color: #fff;
  color: #000;
  line-height: 1.6;
}
@media screen and (max-width: 1000px) {
  body {
    font-size: 80%;
    overflow: hidden;
  }
}

a:link, a:visited {
  text-decoration: none;
  transition: 0.5s;
  color: #000;
}

li {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.inner {
  max-width: 1000px;
  margin: auto;
}
@media screen and (max-width: 1000px) {
  .inner {
    max-width: 90%;
  }
}

.lower-ttl {
  padding: 45px 3vw;
  border-top: 1px solid #ababab;
  border-bottom: 1px solid #ababab;
  margin: 130px 0 60px 0;
}
@media screen and (max-width: 1000px) {
  .lower-ttl {
    padding: 30px 0;
    margin: 100px 0 60px;
  }
}
.lower-ttl h2 {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .lower-ttl h2 {
    text-align: center;
  }
}
.lower-ttl h2 span {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0;
  margin-left: 40px;
}

* {
  box-sizing: border-box;
}

/*レスポンシブ*/
*.pc {
  display: block;
}
@media screen and (max-width: 1000px) {
  *.pc {
    display: none;
  }
}

*.sp {
  display: none;
}
@media screen and (max-width: 1000px) {
  *.sp {
    display: block;
  }
}

/* CSS Document */
/*---------------
	FOOTER
---------------*/
#global-footer .contact {
  background: url("../img/common/contact_bg.webp") no-repeat center center/cover;
  padding: 40px 0;
}
@media screen and (max-width: 1000px) {
  #global-footer .contact {
    padding: 60px 0 30px;
    margin-bottom: 35px;
  }
}
#global-footer .contact h2 img {
  margin: 0 auto 40px;
}
@media screen and (max-width: 1000px) {
  #global-footer .contact h2 img {
    width: 80%;
    max-width: 412px;
    margin: 0 auto 45px;
  }
}
#global-footer .contact ul {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
}
#global-footer .footer-nav .inner {
  border-bottom: 1px solid #ccc;
  padding: 2rem 0 2rem 0;
  max-width: 90%;
}
#global-footer .footer-nav .inner ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
}
#global-footer .footer-nav .inner ul li {
  position: relative;
  padding-left: 20px;
}
#global-footer .footer-nav .inner ul li::before {
  content: ">";
  position: absolute;
  top: 5px;
  left: 0;
  display: block;
  font-size: 0.6rem;
  background-color: #999;
  color: #fff;
  border-radius: 100px;
  width: 13px;
  height: 13px;
  text-align: center;
  line-height: 13px;
}
#global-footer .footer-bottom {
  display: flex;
  justify-content: flex-start;
  width: 90%;
  margin: 0 auto;
  padding: 2rem 0;
}
@media screen and (max-width: 1000px) {
  #global-footer .footer-bottom {
    display: block;
  }
}
#global-footer .footer-bottom .footer-logo {
  margin-right: 50px;
}
@media screen and (max-width: 1000px) {
  #global-footer .footer-bottom .footer-logo {
    margin: 0 0 15px 0;
  }
}
#global-footer .footer-bottom .copy {
  margin-left: auto;
  color: #646464;
}
@media screen and (max-width: 1000px) {
  #global-footer .footer-bottom .copy {
    margin: 70px 0 0 0;
  }
}
#global-footer .footer-bottom .copy p {
  padding-top: 1.5rem;
  font-size: 0.8rem;
}
@media screen and (max-width: 1000px) {
  #global-footer .footer-bottom .copy p {
    text-align: center;
  }
}

.pagetop {
  width: 50px;
  height: 50px;
  content: "▲";
  display: block;
  color: #fff;
  background-image: url(../img/common/pagetop_bg.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: fixed;
  bottom: 4rem;
  right: 2rem;
  cursor: pointer;
}

/* CSS Document */
/*---------------
	HEADER
---------------*/
#global-header {
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 9;
}
#global-header .header-logo {
  width: 40%;
  max-width: 260px;
  position: absolute;
  top: 35px;
  left: 3vw;
}
@media screen and (max-width: 1000px) {
  #global-header .header-logo {
    top: 30px;
  }
}
#global-header .header-logo span {
  color: #0073b1;
  font-size: 0.6rem;
}
@media screen and (max-width: 767px) {
  #global-header .header-logo span {
    font-size: 4px;
  }
}
#global-header {
  /*---------------
  	NAVIGATION
  ---------------*/
}
#global-header .check {
  display: none;
}
#global-header .check:checked ~ .drawer-menu {
  transition-delay: 0.3s;
  transform: none;
  opacity: 1;
  z-index: 99;
}
#global-header .check:checked ~ .menu-btn .bar.top {
  width: 46px;
  transform: rotate(45deg);
}
#global-header .check:checked ~ .menu-btn .bar.middle {
  opacity: 0;
}
#global-header .check:checked ~ .menu-btn .bar.bottom {
  width: 46px;
  top: 32px;
  transform: rotate(-45deg);
}
#global-header .check:checked ~ .close-menu {
  transition-duration: 1s;
  transition-delay: 0.3s;
  background: rgb(255, 255, 255);
  visibility: visible;
  opacity: 1;
  z-index: 99;
}
#global-header .menu-btn {
  display: none;
}
@media only screen and (max-width: 1000px) {
  #global-header .menu-btn {
    position: absolute;
    display: block;
    top: 30px;
    right: 3vw;
    width: 45px;
    height: 35px;
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    z-index: 9;
  }
}
#global-header .menu-btn .bar {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 45px;
  height: 2px;
  background: #03a9ab;
  transition: all 0.5s;
  transform-origin: left top;
}
#global-header .menu-btn .middle {
  top: 17px;
  opacity: 1;
}
#global-header .menu-btn .bottom {
  top: 34px;
  transform-origin: left bottom;
}
#global-header .close-menu {
  position: absolute;
  top: 95px;
  left: 0;
  width: 100%;
  height: 200px;
  background: rgba(0, 0, 0, 0);
  transition-property: all;
  transition-duration: 0.3s;
  transition-delay: 0s;
  visibility: hidden;
  opacity: 0;
}
@media only screen and (max-width: 1000px) {
  #global-header .drawer-menu {
    width: 100%;
    transition-property: all;
    transition-duration: 0.5s;
    transition-delay: 0s;
    transform-origin: right center;
    transform: perspective(500px) rotateY(90deg);
    opacity: 0;
  }
}
#global-header .drawer-menu ul {
  position: absolute;
  top: 50px;
  right: calc(3vw + 200px);
  display: flex;
}
@media only screen and (max-width: 1000px) {
  #global-header .drawer-menu ul {
    position: relative;
    top: 100px;
    right: auto;
    display: block;
    z-index: 99;
  }
}
#global-header .drawer-menu ul li {
  text-shadow: 1px 1px 1px #fff;
  margin: 0 1em;
}
@media only screen and (max-width: 1000px) {
  #global-header .drawer-menu ul li {
    text-shadow: none;
    text-align: center;
    border-bottom: 1px dotted #03a9ab;
  }
}
@media only screen and (max-width: 1000px) {
  #global-header .drawer-menu ul li:last-child {
    border: none;
  }
}
@media only screen and (max-width: 1000px) {
  #global-header .drawer-menu ul li a {
    display: block;
    color: #03a9ab;
    padding: 1em 0;
  }
}
#global-header .contact-btn {
  position: absolute;
  top: 40px;
  right: 3vw;
}
@media screen and (max-width: 1000px) {
  #global-header .contact-btn {
    top: 30px;
    right: calc(3vw + 55px);
  }
}

/* CSS Document */
/*---------------
	TOP
---------------*/
.mv {
  width: 100%;
  height: 100vh;
  max-height: 658px;
  background: url("../img/top/main_pc.webp") no-repeat center center/cover;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .mv {
    background-image: url("../img/top/main_sp.webp");
  }
}
.mv .catch {
  position: absolute;
  bottom: 115px;
  left: 10%;
}
@media screen and (max-width: 1000px) {
  .mv .catch {
    width: 90%;
    max-width: 450px;
    position: static;
    padding-top: 150px;
    margin: auto;
  }
}
.mv .catch img {
  margin-bottom: 1.5rem;
}
.mv .catch ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  justify-items: flex-start;
  align-items: stretch;
}
.mv .catch ul li {
  width: 100%;
  background-color: #fff;
  color: #0073b1;
  padding: 1rem;
  border-radius: 5px;
  line-height: 1;
  letter-spacing: 2px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 767px) {
  .mv .catch ul li {
    font-size: 1rem;
    letter-spacing: 0;
    padding: 1rem 0.3rem;
  }
}

.news {
  margin-top: 4rem;
  margin-bottom: 4rem;
}
.news .inner {
  display: grid;
  grid-template-columns: 250px 1fr;
}
@media screen and (max-width: 1000px) {
  .news .inner {
    display: block;
  }
}
@media screen and (max-width: 1000px) {
  .news .inner .list {
    margin-top: 45px;
  }
}
.news .inner .list dl {
  display: flex;
  padding: 0 50px 20px 0;
  border-bottom: 1px solid #ababab;
  margin-bottom: 25px;
  position: relative;
  transition: 0.1s;
  -webkit-transition: 0.1s;
}
@media screen and (max-width: 1000px) {
  .news .inner .list dl {
    display: block;
    padding: 0 20px 15px 0;
    margin-bottom: 15px;
  }
}
.news .inner .list dl:hover {
  background-color: #eee;
}
.news .inner .list dl dt {
  margin-right: 30px;
}
@media screen and (max-width: 1000px) {
  .news .inner .list dl dt {
    margin: 0 0 10px 0;
  }
}
.news .inner .list dl dd a:hover {
  text-decoration: underline;
}
.news .inner .list dl dd i {
  text-align: right;
  color: #ababab;
  position: absolute;
  bottom: 50%;
  right: 20px;
}
@media screen and (max-width: 1000px) {
  .news .inner .list dl dd i {
    right: 0;
    bottom: calc(50% - 15px);
  }
}
.news .inner .list dl a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.introduction {
  padding-top: 3rem;
  position: relative;
  z-index: 1;
}
.introduction__menu ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
@media screen and (max-width: 1000px) {
  .introduction__menu ul {
    max-width: 488px;
    margin: 0 auto;
    grid-template-columns: 1fr;
    grid-row-gap: 10px;
  }
}
.introduction__menu ul li {
  display: block;
}
.introduction__menu ul li a {
  display: block;
  padding: 1.25rem;
}
.introduction__menu ul li a:hover {
  transition: 0.1s;
  -webkit-transition: 0.1s;
}
.introduction__menu ul li a:hover:hover {
  transform: scale(1.02);
}
.introduction__menu ul li a.btn_blue {
  background-color: #0073b1;
}
.introduction__menu ul li a.btn_blue:hover {
  background-color: #2d95cd;
}
.introduction__menu ul li a.btn_green {
  background-color: #03a9ab;
}
.introduction__menu ul li a.btn_green:hover {
  background-color: #21b2b5;
}
.introduction__news {
  border: 1px solid #ababab;
  margin-top: 55px;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .introduction__news {
    display: none;
  }
}
.introduction__news a {
  display: block;
  padding: 25px 40px;
}
.introduction__news a:hover p i {
  opacity: 0.8;
}
.introduction__news a h2 {
  position: absolute;
  top: 25px;
  left: 40px;
}
.introduction__news a p {
  margin: -3px 0 0 200px;
}
.introduction__news a p span {
  margin-right: 25px;
}
.introduction__news a p i {
  color: #ababab;
  font-size: 1.5em;
  position: absolute;
  top: 25px;
  right: 40px;
}

.about {
  padding-top: 100px;
  background: url("../img/top/block01.webp") no-repeat left top/auto;
}
@media screen and (max-width: 1000px) {
  .about {
    background: none;
  }
}
.about h2 {
  position: relative;
}
@media screen and (max-width: 1000px) {
  .about h2 {
    margin-bottom: 70px;
  }
}
.about h2:after {
  content: "";
  display: block;
  width: 680px;
  border-bottom: 4px dotted #ababab;
  position: absolute;
  top: 7px;
  right: 0;
}
@media screen and (max-width: 1000px) {
  .about h2:after {
    width: 100%;
    top: auto;
    bottom: -30px;
  }
}
.about h3 {
  font-size: 2em;
  margin: 80px 0 50px;
}
@media screen and (max-width: 1000px) {
  .about h3 {
    margin: 0;
  }
}
.about p {
  line-height: 2;
}
@media screen and (max-width: 1000px) {
  .about p {
    margin-top: 20px;
  }
}
.about .block {
  display: none;
}
@media screen and (max-width: 1000px) {
  .about .block {
    display: block;
    margin: 40px auto 0;
  }
}
.about__outline {
  margin-top: 3rem;
}
.about__outline h2 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: normal;
}
.about__outline h2::after {
  display: none;
}
.about__outline dl > div {
  display: grid;
  grid-template-columns: 30% 1fr;
  border-bottom: 1px solid #ccc;
}
.about__outline dl > div:first-child {
  border-top: 1px solid #ccc;
}
.about__outline dl > div dt {
  background-color: #0073b1;
  color: #fff;
  padding: 1rem;
}
.about__outline dl > div dd {
  padding: 1rem;
}

.greeting {
  background: url("../img/top/block02.webp") no-repeat right bottom/auto;
  padding: 120px 0 250px;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .greeting {
    background: none;
    padding: 30px 0 0;
  }
}
.greeting .block {
  position: absolute;
  top: 235px;
  right: calc(50% + 100px);
}
@media screen and (max-width: 1000px) {
  .greeting .block {
    display: none;
  }
}
.greeting h2 {
  position: relative;
}
@media screen and (max-width: 1000px) {
  .greeting h2 {
    margin-bottom: 70px;
  }
}
.greeting h2:after {
  content: "";
  display: block;
  width: 800px;
  border-bottom: 4px dotted #ababab;
  position: absolute;
  top: 7px;
  right: 0;
}
@media screen and (max-width: 1000px) {
  .greeting h2:after {
    width: 100%;
    top: auto;
    bottom: -30px;
  }
}
.greeting h3 {
  font-size: 2em;
  margin: 80px 0 40px 440px;
}
@media screen and (max-width: 1000px) {
  .greeting h3 {
    margin: 0;
  }
}
.greeting p {
  line-height: 2;
  margin-left: 440px;
}
@media screen and (max-width: 1000px) {
  .greeting p {
    margin: 20px 0 0 0;
  }
}

.mss {
  background: #03a9ab;
  padding: 90px 0 100px;
  margin: 90px 0 0 0;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .mss {
    padding: 60px 0 90px;
    margin: 110px 0 0 0;
  }
}
.mss .blocks {
  position: absolute;
  top: -50px;
  left: 5vw;
}
@media screen and (max-width: 1000px) {
  .mss .blocks {
    display: none;
  }
}
.mss h2 img {
  width: 50%;
  max-width: 272px;
  margin: 0 auto 50px;
}
.mss p {
  color: #fff;
  line-height: 2;
}
.mss .block {
  position: absolute;
  right: 5vw;
  bottom: -40px;
}
@media screen and (max-width: 1000px) {
  .mss .block {
    display: none;
  }
}

.voices {
  background-color: #fffaea;
}
.voices .inner {
  padding-top: 4rem;
}
@media screen and (max-width: 767px) {
  .voices .inner {
    padding-top: 2rem;
  }
}
.voices .inner h2 {
  font-size: 1.6rem;
  font-weight: normal;
  margin-bottom: 1rem;
  text-align: center;
  letter-spacing: 2px;
}
@media screen and (max-width: 767px) {
  .voices .inner h2 {
    font-size: 1.1rem;
  }
}
.voices .inner h2 img {
  margin: auto;
}
.voices .inner .img {
  padding: 2rem 0 0 0;
  text-align: center;
}
.voices .inner .img img {
  margin: auto;
}
.voices .inner .txt {
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.voices .btn {
  padding: 2rem 0;
  background-color: #fff;
}
.voices .btn a {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: auto;
  text-decoration: underline;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  background-color: #03a9ab;
  color: #fff;
  line-height: 1;
  padding: 0.8rem 1rem;
  text-decoration: none;
  border-radius: 100px;
  font-size: 1rem;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  text-align: center;
}
.voices .btn a:hover {
  background-color: #1fd5d8;
  transform: scale(1.025);
}

/* CSS Document */
/*---------------
	ABOPUT
---------------*/
#about.bp {
  padding-bottom: 4rem;
}
#about .explain h1 {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 100px;
}
@media screen and (max-width: 1000px) {
  #about .explain h1 {
    font-size: 2em;
    margin-bottom: 50px;
  }
}
#about .explain h1 span {
  color: #0073b1;
}
#about .explain .cont__box dl {
  display: grid;
  grid-template-columns: 165px 1fr;
  line-height: 2;
  margin-bottom: 30px;
}
@media screen and (max-width: 1000px) {
  #about .explain .cont__box dl {
    display: block;
  }
}
@media screen and (max-width: 1000px) {
  #about .explain .cont__box dl dt {
    margin-bottom: 10px;
  }
}
#about .explain .cont__box dl dd {
  padding-bottom: 20px;
  border-bottom: 1px solid #ababab;
}
#about .explain .cont__box dl:last-child {
  margin: 0;
}
#about .explain .cont__box dl:last-child dd {
  padding: 0;
  border: none;
}
#about .dwnld {
  margin: 100px 0 50px;
}
@media screen and (max-width: 1000px) {
  #about .dwnld {
    margin: 50px 0 25px;
  }
}
#about .dwnld h3 {
  font-size: 2em;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}
@media screen and (max-width: 1000px) {
  #about .dwnld h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
  }
}
#about .dwnld ul li {
  line-height: 36px;
  border: 1px solid #ababab;
  margin-bottom: 10px;
  transition: 0.2s;
  -webkit-transition: 0.2s;
}
#about .dwnld ul li:hover {
  transform: scale(1.02);
  background-color: #eee;
}
#about .dwnld ul li a {
  display: flex;
  padding: 25px 30px;
  position: relative;
}
@media screen and (max-width: 1000px) {
  #about .dwnld ul li a {
    padding: 20px;
  }
}
#about .dwnld ul li a img {
  margin-right: 50px;
}
@media screen and (max-width: 761000px7px) {
  #about .dwnld ul li a img {
    margin-right: 30px;
  }
}
#about .dwnld ul li a i {
  color: #ababab;
  position: absolute;
  top: 35px;
  right: 30px;
}
@media screen and (max-width: 1000px) {
  #about .dwnld ul li a i {
    top: 30px;
    right: 20px;
  }
}
#about .note p {
  color: #f00;
  margin-bottom: 10px;
}
#about .note ul {
  padding-left: 2em;
}
#about .note ul li {
  text-indent: -2.5em;
  line-height: 2;
}
#about .note .btn {
  display: block;
  max-width: 474px;
  margin: 70px auto 0;
}
@media screen and (max-width: 1000px) {
  #about .note .btn {
    margin: 30px auto 0;
  }
}
#about .note .btn img {
  transition: 0.2s;
  -webkit-transition: 0.2s;
}
#about .note .btn img:hover {
  transform: scale(1.02);
}

/* CSS Document */
/*---------------
	CONTACT
---------------*/
#contact {
  padding-bottom: 4rem;
}
#contact .form h3 {
  text-align: center;
  font-size: 2.4em;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 100px;
}
@media screen and (max-width: 1000px) {
  #contact .form h3 {
    font-size: 2em;
    margin-bottom: 50px;
  }
}
#contact .form .form__box dl {
  display: grid;
  grid-template-columns: 250px 1fr;
  margin-bottom: 30px;
}
@media screen and (max-width: 1000px) {
  #contact .form .form__box dl {
    display: block;
  }
}
#contact .form .form__box dl dt {
  padding: 0.5em 0;
  position: relative;
}
#contact .form .form__box dl dt .required {
  text-align: right;
  background: #d96565;
  color: #fff;
  padding: 2px 10px;
  position: absolute;
  top: 9px;
  right: 20px;
  font-size: 0.6rem;
}
@media screen and (max-width: 1000px) {
  #contact .form .form__box dl dt .required {
    font-size: 80%;
    right: 5px;
  }
}
#contact .form .form__box dl dt .note {
  color: #8b8b8b;
  font-size: 80%;
}
#contact .form .form__box dl dd .txt {
  width: 100%;
  background: #f7f7f7;
  padding: 1em;
  border: 2px solid #ababab;
  box-sizing: border-box;
}
#contact .form .form__box dl dd .att {
  margin: 21px 0;
}
@media screen and (max-width: 1000px) {
  #contact .form .form__box dl dd .att {
    margin: 0;
  }
}
#contact .form .form__box dl.upload {
  border-bottom: 1px dotted #ccc;
  display: block;
}
#contact .form .form__box dl.upload dt p span {
  display: block;
}
#contact .form .form__box h4 {
  background: #03a9ab;
  color: #fff;
  font-size: 120%;
  font-weight: normal;
  padding: 10px 20px;
  margin: 50px 0 25px;
}
#contact .check {
  margin-bottom: 3rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #contact .check {
    text-align: left;
  }
}
#contact .check a {
  color: #03a9ab;
  text-decoration: underline;
}
#contact .btn {
  display: block;
  text-align: center;
}
#contact .btn input[type=submit] {
  background: #03a9ab;
  color: #fff;
  width: 100%;
  padding: 1rem;
  max-width: 300px;
  margin: auto;
  border: none;
  font-size: 1.2rem;
}

/* CSS Document */
/*---------------
	NEWS
---------------*/
#news .news__txt {
  line-height: 2;
}
#news .news__txt h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}
#news .news__txt .date {
  margin-bottom: 1rem;
}
#news .news__btn {
  text-align: center;
  border-top: 1px solid #ccc;
  padding-top: 1.5rem;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

#voices .title_img {
  text-align: center;
}
#voices .title_img img {
  margin: auto;
  max-width: 80%;
}
@media screen and (max-width: 767px) {
  #voices .title_img img {
    max-width: 100%;
  }
}
#voices .list {
  text-align: left;
}
#voices .list .inner {
  padding-bottom: 3rem;
}
#voices .list .inner .col {
  position: relative;
  background-color: #f7f0dc;
  border-radius: 5px;
  padding: 1.5rem 2rem;
  margin-bottom: 1.5rem;
}
#voices .list .inner .col h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
#voices .list .inner .col p {
  margin-bottom: 1rem;
}
#voices .list .inner .col span {
  display: block;
  text-align: right;
  text-decoration: underline;
}
#voices .list .inner .col a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
#voices .list .inner .pager {
  margin-bottom: 3rem;
}
#voices .list .inner .bnr {
  background-color: #333;
  max-width: 300px;
  position: relative;
  text-align: center;
  margin-left: auto;
  padding: 1rem 1.5rem;
}
#voices .list .inner .bnr::after {
  content: ">";
  color: #fff;
  position: absolute;
  top: 30%;
  right: 20px;
}
#voices .list .inner .bnr span {
  color: #fff;
}
#voices .list .inner .bnr a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
#voices .list .inner .bottom_btn {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  padding-top: 2rem;
}
#voices .list .inner .bottom_btn a {
  border: 1px solid #ccc;
  border-radius: 100px;
  line-height: 1;
  padding: 15px 25px;
}
#voices .list .inner .bottom_btn a:hover {
  background-color: #333;
  color: #fff;
}
#voices.detail .inner {
  padding-bottom: 3rem;
}
#voices.detail .inner h1 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
#voices.detail .inner > span {
  display: block;
  margin-bottom: 2rem;
}
#voices.detail .inner .txt {
  line-height: 2;
}
@media screen and (max-width: 767px) {
  #voices.detail .inner .txt {
    line-height: 1.5;
  }
}
#voices.detail .inner .txt img {
  margin: 1rem 0;
}
#voices.detail .inner .btn {
  border-top: 1px solid #ccc;
  padding: 1.5rem 0;
  margin-top: 2rem;
  text-align: center;
}

#privacy {
  padding-bottom: 4rem;
}
#privacy .inner h2 {
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #ccc;
}
#privacy .inner p {
  margin-bottom: 2rem;
}
#privacy .inner ul {
  margin-bottom: 2rem;
}
#privacy .inner ul ol {
  list-style-type: decimal !important;
  margin-left: 1.5rem;
}
#privacy .inner ul ol li {
  list-style-type: decimal !important;
}