@charset "UTF-8";
/*! HTML5 Boilerplate v6.0.1 | MIT License | https://html5boilerplate.com/ */
/* * What follows is the result of much research on cross-browser styling.
 * * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * * Kroc Camen, and the H5BP dev community and team. */
/* ==========================================================================
 * * Base styles: opinionated defaults
 * * ========================================================================== */
html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}

/* * Remove text-shadow in selection highlight:
 * * https://twitter.com/miketaylr/status/12228805301
 * *
 * * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * * https://stackoverflow.com/a/16982510/7133471
 * *
 * * Customize the background color to match your design. */
::-moz-selection, ::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/* * A better looking default horizontal rule */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/* * Remove the gap between audio, canvas, iframes,
 * * images, videos and the bottom of their containers:
 * * https://github.com/h5bp/html5-boilerplate/issues/440 */
audio, canvas, iframe, img, svg, video {
  vertical-align: middle;
}

/* * Remove default fieldset styles. */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/* * Allow only vertical resizing of textareas. */
textarea {
  resize: vertical;
}

/* ==========================================================================
 * * Browser Upgrade Prompt
 * * ========================================================================== */
.browserupgrade {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}

/* ==========================================================================
 * * Author's custom styles
 * * ========================================================================== */
html {
  font-size: 62.5%;
}

body {
  -webkit-text-size-adjust: 100%;
  padding: 0 !important;
  color: #231815;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.6;
}
body * {
  box-sizing: border-box;
}
body *::before, body *::after {
  box-sizing: border-box;
}
a {
  color: #007d66;
  text-decoration: none;
  opacity: 1;
  transition: all 300ms ease-in;
}
a:hover {
  text-decoration: underline;
  opacity: 0.8;
}

input[type=submit], input[type=reset], input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  font-family: "Noto Sans JP", sans-serif;
  transition: all 300ms ease-in;
  color: #000 !important;
}
input[type=submit]:hover, input[type=reset]:hover, input[type=button]:hover {
  opacity: 0.7;
}

button {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 300ms ease-in;
}
button:hover {
  opacity: 0.7;
}
button::-webkit-search-decoration {
  display: none;
}
button::focus {
  outline-offset: -2px;
}

input[type=submit]::-webkit-search-decoration, input[type=reset]::-webkit-search-decoration, input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus, input[type=reset]::focus, input[type=button]::focus {
  outline-offset: -2px;
}

img {
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

p:empty {
  margin: 0;
}

:focus {
  outline: none;
}

.m {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}

.content {
  width: 1280px;
  max-width: 100%;
  margin: 0 auto;
}
.content.short {
  width: 1080px;
}
.content.sshort {
  width: 760px;
}

.content.sshort.fiduciary02{
  padding: 150px 0 0
}

.content.long {
  width: 1600px;
}

.btn {
  margin: 0;
}
.btn > a {
  position: relative;
  display: block;
  width: 240px;
  height: 56px;
  padding-right: 10px;
  background: #54b59c;
  color: #fff;
  font-weight: 500;
  line-height: 56px;
  text-align: center;
}
.btn > a::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 10px;
  height: 10px;
  margin-top: 2px;
  border-style: solid;
  border-width: 1px 1px 0 0;
  border-color: #fff #fff transparent transparent;
  transform: translate(0, -50%) rotate(45deg);
}
.btn > a:hover {
  text-decoration: none;
}

.btn-b {
  position: relative;
  display: block;
  width: 176px;
  height: 42px;
  margin: 0;
  padding-right: 10px;
  border: solid 1px #fff;
  border-radius: 21px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 40px;
  text-align: center;
}
.btn-b::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: 1px;
  border-style: solid;
  border-width: 1px 1px 0 0;
  border-color: #fff #fff transparent transparent;
  transform: translate(0, -50%) rotate(45deg);
}
.btn-b:hover {
  text-decoration: none;
}

.col2 {
  display: flex;
}
.col2 > div:nth-of-type(1) {
  width: 50%;
}
.col2 > div:nth-of-type(2) {
  flex: 1;
}

.col3 {
  display: flex;
}
.col3 > div:nth-of-type(1) {
  width: 33%;
}
.col3 > div:nth-of-type(2) {
  width: 34%;
}
.col3 > div:nth-of-type(3) {
  width: 33%;
}

.logo {
  margin: 0;
  line-height: 1;
}
.logo img {
  display: block;
  width: 60px;
}
.logo > a {
  display: flex;
  align-items: flex-end;
}
.logo > a > span {
  flex-shrink: 0;
  padding-left: 20px;
}
.logo > a > span > span {
  display: block;
}
.logo > a > span > span:nth-of-type(1) {
  padding-bottom: 8px;
  color: #231815;
  font-size: 1.2rem;
  font-weight: 500;
}
.logo > a > span > span:nth-of-type(2) {
  padding-bottom: 4px;
  color: #54b59c;
  font-size: 2.4rem;
}
.logo > a:hover {
  text-decoration: none;
}

#wrapper {
  padding-top: 90px;
}

#header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: 90px;
  border-bottom: solid 1px #c7e3d8;
  background: #fff;
}
#header h1 {
  position: relative;
  z-index: 11;
  flex-shrink: 0;
  padding: 0 0 0 3.125vw;
}
#header #nav > ul {
  list-style: none;
  display: flex;
  align-items: flex-end;
  margin: 0;
  padding: 0;
}
#header #nav > ul > li {
  position: relative;
}
#header #nav > ul > li > a {
  display: block;
  height: 70px;
  padding: 0 1vw;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 70px;
}
#header #nav > ul > li > a:hover {
  text-decoration: none;
}
#header #nav > ul > li > ul {
  list-style: none;
  display: none;
  position: absolute;
  left: 50%;
  top: 100%;
  margin: 0;
  padding: 22px 0;
  background: #54b59c;
  white-space: nowrap;
  transform: translate(-50%, 0);
}
#header #nav > ul > li > ul > li > a {
  display: block;
  width: 300px;
  height: 60px;
  padding: 0 20px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 60px;
}
#header #nav > ul > li > ul > li > a:hover {
  text-decoration: none;
  opacity: 1;
  background: #007d66;
}
#header #nav > ul > li.haschild > a::after {
  content: url(../img/header-nav-haschild.png);
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
}
#header #nav > ul > li.haschild > a:hover {
  opacity: 1;
}
#header #nav > ul > li.haschild.active > ul {
  display: block;
}
#header #nav > ul > li.contact a {
  position: relative;
  width: 160px;
  height: 90px;
  padding: 60px 0 0;
  background: #54b59c;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
#header #nav > ul > li.contact a::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 20px;
  width: 40px;
  height: 32px;
  background: url(../img/header-nav-mail.png) 0 0 no-repeat;
  background-size: contain;
  transform: translate(-50%, 0);
}

#footer {
  margin-top: 100px;
  padding: 90px 0 10px;
  background: #54b59c;
  color: #fff;
}
#footer .logo > a img {
  width: 51px;
}
#footer .logo > a > span > span:nth-of-type(1) {
  color: #fff;
}
#footer .logo > a > span > span:nth-of-type(2) {
  color: #fff;
}
#footer > .content {
  display: flex;
  justify-content: space-between;
}
#footer > .content > div:nth-of-type(1) > ul {
  list-style: none;
  margin: 0;
  padding: 0 25px 0 0;
}
#footer > .content > div:nth-of-type(1) > ul > li {
  margin-top: 25px;
  letter-spacing: 2px;
}
#footer > .content > div:nth-of-type(1) > ul > li h3 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 500;
}
#footer > .content > div:nth-of-type(1) > ul > li h3 > a {
  float: right;
  width: 120px;
  height: 24px;
  border: solid 1px #fff;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
  line-height: 22px;
  letter-spacing: 0;
}
#footer > .content > div:nth-of-type(1) > ul > li h3 > a:hover {
  text-decoration: none;
}
#footer > .content > div:nth-of-type(1) > ul > li p {
  margin: 0;
  font-size: 1.4rem;
}
#footer > .content > div:nth-of-type(2) {
  display: flex;
}
#footer > .content > div:nth-of-type(2) > ul {
  list-style: none;
  margin: -10px 0 0 90px;
  padding: 0;
}
#footer > .content > div:nth-of-type(2) > ul > li {
  line-height: 2.2;
}
#footer > .content > div:nth-of-type(2) > ul > li > a {
  color: #fff;
  font-weight: 700;
}
#footer > .content > div:nth-of-type(2) > ul > li > a::before {
  content: url(../img/footer-nav-right.png);
  display: inline-block;
  margin-right: 5px;
}
#footer > .content > div:nth-of-type(2) > ul > li.haschild {
  margin: 40px 0 0;
}
#footer > .content > div:nth-of-type(2) > ul > li.haschild > a {
  pointer-events: none;
}
#footer > .content > div:nth-of-type(2) > ul > li.haschild > a::before {
  content: url(../img/footer-nav-bottom.png);
  transform: translate(0, -4px);
}
#footer > .content > div:nth-of-type(2) > ul > li.haschild > ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#footer > .content > div:nth-of-type(2) > ul > li.haschild > ul > li {
  line-height: 2;
}
#footer > .content > div:nth-of-type(2) > ul > li.haschild > ul > li > a {
  color: #fff;
  font-size: 1.5rem;
}
#footer > .content > div:nth-of-type(2) > ul > li.haschild:nth-of-type(1) {
  margin-top: 0;
}
#footer > .content > div:nth-of-type(2) > ul > li:nth-of-type(1) {
  margin-left: 0;
}
#footer > p {
  margin: 60px 0 0;
  font-size: 1.5rem;
  text-align: center;
}
#footer > p span{
  display: block;
  margin: 0 0 10px;
}

#to-top {
  position: fixed;
  right: 10px;
  bottom: -50px;
  opacity: 0;
  transition: all 300ms ease-in;
}
#to-top a {
  display: block;
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  background: #007d66;
}
#to-top a::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 16px;
  margin-top: 5px;
  border: solid 2px transparent;
  border-color: #fff transparent transparent #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}
#to-top.active {
  bottom: 10px;
  opacity: 1;
}

#to-contact {
  position: fixed;
  right: 0;
  top: 208px;
}
#to-contact > a {
  display: block;
  width: 54px;
  height: 280px;
  border-radius: 10px 0 0 10px;
  background: #f08307;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  line-height: 54px;
  text-align: center;
}
#to-contact > a::before {
  content: url(../img/common-contact.png);
  display: inline-block;
  margin-bottom: 5px;
  transform: translate(4px, 0);
}
#to-contact > a:hover {
  text-decoration: none;
}

.home #footer, .sdgs #footer, .company #footer {
  margin-top: 0;
}
.home #to-contact, .sdgs #to-contact, .company #to-contact {
  top: 280px;
}

#mv .slide {
  position: relative;
}
#mv .slide > h2 {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 10;
  margin: -1.8vw 0 0;
  color: #fff;
  font-size: 4rem;
  text-shadow: 3px 3px 3px rgba(35, 24, 21, 0.75);
  text-align: center;
  white-space: nowrap;
  transform: translate(-50%, -50%);
}
#mv .slide > h2.v2 {
  margin-top: 1vw;
}

#content > section[id^=home-] {
  padding: 130px 0;
}
#content > section[id^=home-] h2 {
  margin: 0;
  color: #54b59c;
  font-size: 2.2rem;
  font-weight: 700;
}
#content > section[id^=home-] h2 > span {
  font-size: 4.6rem;
  font-weight: 500;
  letter-spacing: 2px;
}
#content > section[id^=home-]#home-about {
  position: relative;
  overflow: hidden;
}
#content > section[id^=home-]#home-about::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  z-index: -1;
  width: 9999px;
  height: 700px;
  margin-left: -160px;
  background: #e5f3ed;
}
#content > section[id^=home-]#home-about h2 {
  margin-left: 20px;
  font-size: 1.6rem;
}
#content > section[id^=home-]#home-about h2 > span {
  margin-left: -20px;
}
#content > section[id^=home-]#home-about .col2 > div:nth-of-type(1) h3 {
  margin: 60px 0 0;
  color: #007d66;
  font-size: 3.4rem;
  font-weight: 500;
  white-space: nowrap;
  line-height: 1.911765;
}
#content > section[id^=home-]#home-about .col2 > div:nth-of-type(1) p {
  margin: 100px 0 0;
}
#content > section[id^=home-]#home-about .col2 > div:nth-of-type(2) {
  padding: 165px 0 0 70px;
}
#content > section[id^=home-]#home-about .col2 > div:nth-of-type(2) p {
  margin: 0;
  padding-bottom: 0;
  font-weight: 400;
  line-height: 2.125;
  letter-spacing: 0.5px;
}
#content > section[id^=home-]#home-about .col2 > div:nth-of-type(2) .btn {
  margin-top: 30px;
}
#content > section[id^=home-]#home-service {
  padding-top: 0;
  background: #fffef0;
}
#content > section[id^=home-]#home-service h2 {
  text-align: center;
  transform: translate(0, -50px);
}
#content > section[id^=home-]#home-service .col2 {
  justify-content: center;
}
#content > section[id^=home-]#home-service .col2 > div {
  max-width: 800px;
}
#content > section[id^=home-]#home-service .col2 > div > a {
  display: flex;
}
#content > section[id^=home-]#home-service .col2 > div > a > p {
  margin: 0;
}
#content > section[id^=home-]#home-service .col2 > div > a > div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 320px;
  background: #54b59c;
  color: #fff;
  text-align: center;
}
#content > section[id^=home-]#home-service .col2 > div > a > div h3 {
  margin: 0;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1;
}
#content > section[id^=home-]#home-service .col2 > div > a > div h3::before {
  content: "";
  display: block;
  width: 42px;
  height: 49px;
  margin: 85px auto 25px;
  background: url(../img/home-service-icon-01.png) 0 0 no-repeat;
  background-size: contain;
}
#content > section[id^=home-]#home-service .col2 > div > a > div .btn-b {
  margin-bottom: 35px;
}
#content > section[id^=home-]#home-service .col2 > div > a:hover {
  text-decoration: none;
}
#content > section[id^=home-]#home-service .col2 > div:nth-of-type(2) {
  transform: translate(0, 35px);
}
#content > section[id^=home-]#home-service .col2 > div:nth-of-type(2) > a > div {
  background: #f09082;
}
#content > section[id^=home-]#home-service .col2 > div:nth-of-type(2) > a > div h3::before {
  width: 62px;
  height: 55px;
  background: url(../img/home-service-icon-02.png) 0 0 no-repeat;
  background-size: contain;
}
#content > section[id^=home-]#home-nav {
  padding-top: 0;
}
#content > section[id^=home-]#home-nav .col2 > div > a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 350px;
  background: #007d66;
  color: #fff;
  text-align: center;
}
#content > section[id^=home-]#home-nav .col2 > div > a h2 {
  color: #fff;
  font-size: 2.2rem;
}
#content > section[id^=home-]#home-nav .col2 > div > a h2 span {
  color: #a7d4c4;
  font-size: 4.6rem;
  font-weight: 500;
  letter-spacing: 2px;
}
#content > section[id^=home-]#home-nav .col2 > div > a .btn-b {
  margin: 35px auto 0;
}
#content > section[id^=home-]#home-nav .col2 > div > a::before {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 130px;
  height: 130px;
  background: linear-gradient(135deg, transparent 0%, transparent 50%, #00604d 50%, #00604d 100%);
}
#content > section[id^=home-]#home-nav .col2 > div > a:hover {
  text-decoration: none;
}
#content > section[id^=home-]#home-nav .col2 > div:nth-of-type(2) > a {
  background: #009275;
}
#content > section[id^=home-]#home-nav .col2 > div:nth-of-type(2) > a::before {
  background: linear-gradient(135deg, transparent 0%, transparent 50%, #006c57 50%, #006c57 100%);
}
#content > section[id^=home-]#home-nav .col3 {
  margin-top: 120px;
}
#content > section[id^=home-]#home-nav .col3 > div > a {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 400px;
  height: 200px;
  border: solid 1px #d3d3d4;
  text-align: center;
}
#content > section[id^=home-]#home-nav .col3 > div > a h2 {
  margin-bottom: 20px;
}
#content > section[id^=home-]#home-nav .col3 > div:nth-of-type(2) > a {
  margin: 0 auto;
}
#content > section[id^=home-]#home-nav .col3 > div:nth-of-type(3) > a {
  margin: 0 0 0 auto;
}
#content > section[id^=home-]#home-contact {
  padding-top: 0;
}
#content > section[id^=home-]#home-contact h2 span {
  display: inline-block;
  margin-bottom: 10px;
}
#content > section[id^=home-]#home-contact .col3 > div:nth-of-type(1) p {
  margin: 10px 0 0;
  font-size: 1.5rem;
  font-weight: 500;
}
#content > section[id^=home-]#home-contact .col3 > div:nth-of-type(2) ul {
  list-style: none;
  margin: -10px 0 0 0;
  padding: 0;
}
#content > section[id^=home-]#home-contact .col3 > div:nth-of-type(2) ul > li {
  display: flex;
  align-items: center;
  margin-top: 25px;
}
#content > section[id^=home-]#home-contact .col3 > div:nth-of-type(2) ul > li > p {
  margin: 0;
}
#content > section[id^=home-]#home-contact .col3 > div:nth-of-type(2) ul > li > p:nth-of-type(1) {
  width: 90px;
  height: 27px;
  border: solid 1px #b7dbce;
  line-height: 25px;
  text-align: center;
}
#content > section[id^=home-]#home-contact .col3 > div:nth-of-type(2) ul > li > p:nth-of-type(2) {
  padding-left: 20px;
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 1;
}
#content > section[id^=home-]#home-contact .col3 > div:nth-of-type(2) ul > li > p a:hover {
  text-decoration: none;
}
#content > section[id^=home-]#home-contact .col3 > div:nth-of-type(2) > div {
  margin-top: 30px;
}
#content > section[id^=home-]#home-contact .col3 > div:nth-of-type(2) > div a {
  display: block;
  width: 400px;
  height: 60px;
  border: solid 1px #b7dbce;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 58px;
  text-align: center;
}
#content > section[id^=home-]#home-contact .col3 > div:nth-of-type(2) > div a::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 32px;
  margin-right: 15px;
  background: url(../img/home-contact-mail.png) 0 0 no-repeat;
  background-size: contain;
  vertical-align: middle;
}
#content > section[id^=home-]#home-contact .col3 > div:nth-of-type(2) > div a:hover {
  text-decoration: none;
}
#content > section[id^=home-]#home-contact .col3 > div:nth-of-type(3) {
  padding-top: 15px;
}
#content > section[id^=home-]#home-contact .col3 > div:nth-of-type(3) p {
  width: 300px;
  margin: 0 0 0 auto;
  background: #efefef;
}
#content > section[id^=home-]#home-contact .col3 > div:nth-of-type(3) p img {
  width: 300px;
  transform: translate(-15px, -15px);
}
#content > section[id^=home-]#home-banner {
  padding-top: 0;
}
#content > section[id^=home-]#home-banner .col3 > div > a {
  display: block;
  width: 320px;
}
#content > section[id^=home-]#home-banner .col3 > div:nth-of-type(2) > a {
  margin: 0 auto;
}
#content > section[id^=home-]#home-banner .col3 > div:nth-of-type(3) > a {
  margin: 0 0 0 auto;
}
#content .head .mv {
  position: relative;
  height: 200px;
  background: url(../img/company-mv.jpg) 50% 50% no-repeat;
  background: cover;
}
#content .head .mv h2 {
  position: absolute;
  left: 50%;
  bottom: -35px;
  width: 400px;
  height: 150px;
  margin: 0;
  padding-top: 20px;
  border-radius: 6px;
  background: #007d66;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 500;
  text-align: center;
  line-height: 1;
  transform: translate(-50%, 0);
}
#content .head .mv h2 > span {
  display: inline-block;
}
#content .head .mv h2 > span:nth-of-type(1) {
  padding: 15px 0 13px;
  border-bottom: solid 1px #fff;
  font-size: 3rem;
}
#content .head .mv h2 > span:nth-of-type(2) {
  padding-top: 4px;
  font-size: 1.5rem;
}
#content .head .mv h2.v2 {
  padding-top: 28px;
}
#content .head .mv.noimage {
  background-image: none !important;
}
#content .head .breadcrumbs {
  margin-top: 35px;
  padding-left: 3.125vw;
}
#content .head .breadcrumbs ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}
#content .head .breadcrumbs ul li {
  font-size: 1.3rem;
}
#content .head .breadcrumbs ul li::before {
  content: ">";
  display: inline-block;
  padding: 0 3px;
}
#content .head .breadcrumbs ul li:nth-child(1)::before {
  display: none;
}
#content .head .sub-nav {
  margin-top: 55px;
}
#content .head .sub-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
}
#content .head .sub-nav ul > li > a {
  display: block;
  width: 250px;
  height: 40px;
  border: solid 1px #54b59c;
  border-left: none;
  line-height: 38px;
  text-align: center;
}
#content .head .sub-nav ul > li > a:hover {
  text-decoration: none;
  background: #ecf5f2;
}
#content .head .sub-nav ul > li > a.here {
  background: #ecf5f2;
  pointer-events: none;
}
#content .head .sub-nav ul > li:nth-child(1) > a {
  border-left: solid 1px #54b59c;
}
#content .head.policy .mv {
  background-image: url(../img/policy-mv.jpg);
}
#content .head.policy .sub-nav ul > li > a {
  width: 190px;
}
#content .head.contact .mv {
  background-image: url(../img/contact-mv.jpg);
}
#content .head.action .mv {
  background-image: url(../img/action-mv.jpg);
}
#content .head.action .sub-nav ul > li > a {
  width: 380px;
}
#content .head.voice .mv {
  background-image: url(../img/voice-mv.jpg);
}
#content .head.business .mv {
  background-image: url(../img/business-mv.jpg);
}
#content .head.business .sub-nav ul > li > a {
  width: 380px;
}
#content .head.reason .mv {
  background-image: url(../img/reason-mv.jpg);
}
#content .body > section {
  padding: 80px 0;
}
#content .body > section h3 {
  margin: 0;
  color: #007d66;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1;
}
#content .body > section h3 span {
  display: inline-block;
  padding-bottom: 35px;
  color: #c7e3d8;
  font-size: 11.0rem;
  font-weight: 300;
}
#content .body > section h3.noenglish {
  position: relative;
  padding-top: 56px;
  text-align: center;
}
#content .body > section h3.noenglish::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: #54b59c;
  transform: translate(-50%, 0);
}
#content .body > section h3.noenglish span {
  font-size: 2.8rem;
  font-weight: 500;
  color: #007d66;
}
#content .body > section h3.noenglish span::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: #54b59c;
  transform: translate(-50%, 0);
}
#content .body > section h3.noenglish span::after {
  content: "";
  position: absolute;
  top: 36px;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: #54b59c;
  transform: translate(-50%, 0);
}
#content .body > section#greeting {
  margin-top: 200px;
  padding: 0;
  background: url(../img/concept-greeting.jpg) 50% 0 no-repeat;
}
#content .body > section#greeting h3 {
  color: #595757;
}
#content .body > section#greeting h3 span {
  color: #9fa0a0;
}
#content .body > section#greeting > .content > div {
  width: 700px;
  max-width: 100%;
  margin: 0 0 0 auto;
  transform: translate(0, -80px);
}
#content .body > section#greeting > .content > div .text {
  margin-top: 30px;
  padding: 45px 35px;
  border-radius: 12px;
  background: #fff;
  font-size: 1.5rem;
  line-height: 2.2;
}
#content .body > section#greeting > .content > div .text > p {
  margin: 30px 0 0;
}
#content .body > section#greeting > .content > div .text > p:nth-of-type(1) {
  margin-top: 0;
}
#content .body > section#greeting > .content > div .text > div {
  margin-top: 40px;
  text-align: right;
}
#content .body > section#greeting > .content > div .text > div > p {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 500;
}
#content .body > section#greeting > .content > div .text > div > h4 {
  margin: -5px 0 0;
  font-size: 1.4rem;
  font-weight: 500;
}
#content .body > section#greeting > .content > div .text > div > h4 span {
  margin-left: 10px;
  font-size: 1.8rem;
}



#content .body > section#philosophy,
#content .body > section#vision{
  text-align: center;
}
#content .body > section#philosophy p,
#content .body > section#vision p{
  margin: 30px 0 0;
  font-size: 2.5rem;
  font-weight: 500;
}
#content .body > section#philosophy p span,
#content .body > section#vision p span{
  font-size: 3rem;
  color: #007D66;
}
#content .body > section#philosophy p:nth-of-type(1) ,
#content .body > section#vision p:nth-of-type(1) {
  margin-top: 60px;
}


#content .body > section#vision ul{
  max-width: 870px;
  width: 100%;
  margin: 30px auto 0;
  text-align: left;
  padding: 0;
}

#content .body > section#vision li{
  margin: 0 0 15px;
    font-size: 1.8rem;
    line-height: 1.6;
}
















#content .body > section#history {
  pading-top: 160px;
}
#content .body > section#history ul {
  list-style: none;
  margin: 70px 0 0;
  padding: 0 0 50px 0;
  background: radial-gradient(#c7e3d8 35%, transparent 35%) 22px -1px repeat-y;
  background-size: 21px 21px;
}
#content .body > section#history ul li {
  display: flex;
  justify-content: start;
  align-items: flex-start;
  margin-top: 40px;
}
#content .body > section#history ul li > p {
  margin: 0;
}
#content .body > section#history ul li > p.year {
  width: 64px;
  flex-shrink: 0;
}
#content .body > section#history ul li > p.year span {
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 32px;
  background: #54b59c;
  color: #fff;
  text-align: center;
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 64px;
}
#content .body > section#history ul li > p.month {
  flex-shrink: 0;
  width: 60px;
  height: 24px;
  margin: 20px 0 0 26px;
  border: solid 1px #54b59c;
  border-radius: 12px;
  text-align: center;
  font-weight: 500;
  line-height: 22px;
}
#content .body > section#history ul li > p.text {
  margin: 18px 0 0 12px;
}
#content .body > section#history ul li.noyear {
  margin-top: 15px;
}
#content .body > section#history ul li.noyear > p.month {
  margin-left: 90px;
}
#content .body > section#history ul li.noyear.first {
  margin-top: 0;
}
#content .body > section#outline .col2 {
  margin-top: 40px;
  padding: 0 50px;
  justify-content: space-between;
}
#content .body > section#outline .col2 > div ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#content .body > section#outline .col2 > div ul li {
  display: flex;
}
#content .body > section#outline .col2 > div ul li > p {
  margin: 0;
  padding: 25px 0;
}
#content .body > section#outline .col2 > div ul li > p:nth-of-type(1) {
  display: flex;
  align-items: center;
  width: 150px;
  border-bottom: solid 1px #54b59c;
  color: #007d66;
  font-weight: 500;
  text-align: center;
}
#content .body > section#outline .col2 > div ul li > p:nth-of-type(2) {
  flex: 1;
  margin-left: 10px;
  padding: 25px 20px;
  border-bottom: dashed 1px #c9caca;
  font-size: 1.5rem;
}
#content .body > section#outline .col2 > div ul li > p:nth-of-type(2) span {
  color: #007d66;
  font-weight: 500;
}
#content .body > section#outline .col2 > div:nth-of-type(1) {
  width: 520px;
}
#content .body > section#outline .col2 > div:nth-of-type(2) {
  flex: none;
  width: 520px;
}
#content .body > section#outline .img {
  margin-top: 100px;
}
#content .body > section#access {
  background: #f7f8f8;
}
#content .body > section#access .col2 {
  margin-top: 55px;
  padding: 0 60px;
}
#content .body > section#access .col2 > div:nth-of-type(1) {
  width: 640px;
}
#content .body > section#access .col2 > div:nth-of-type(2) {
  padding: 40px 0 0 40px;
}
#content .body > section#access .col2 > div:nth-of-type(2) h4 {
  margin: 0;
  padding-left: 20px;
  color: #007d66;
  font-size: 1.8rem;
  font-weight: 500;
}
#content .body > section#access .col2 > div:nth-of-type(2) > p {
  margin: 5px 0 0;
  padding-left: 20px;
  font-size: 1.5rem;
}
#content .body > section#access .col2 > div:nth-of-type(2) .map {
  padding-left: 20px;
}
#content .body > section#access .col2 > div:nth-of-type(2) .map p a {
  color: #231815;
  font-size: 1.5rem;
  font-weight: 700;
}
#content .body > section#access .col2 > div:nth-of-type(2) .map p a::before {
  content: "";
  display: inline-block;
  width: 21px;
  height: 30px;
  margin-right: 10px;
  background: url(../img/company-access-icon.png) 0 0 no-repeat;
  background-size: contain;
  vertical-align: middle;
}
#content .body > section#access .col2 > div:nth-of-type(2) .img {
  display: flex;
  flwx-wrap: wrap;
  margin: 40px 0 0 -30px;
}
#content .body > section#access .col2 > div:nth-of-type(2) .img > p {
  width: 180px;
  margin: 0 0 0 30px;
}
#content .body > section#staff .col2 {
  margin-top: 80px;
}
#content .body > section#staff .col2 > div:nth-of-type(2) {
  padding: 30px 0 0 20px;
}
#content .body > section#staff .col2 > div:nth-of-type(2) > p {
  margin: 0;
  color: #007d66;
  font-size: 1.5rem;
}
#content .body > section#staff .col2 > div:nth-of-type(2) > h3 {
  margin: 10px 0 0;
  color: #007d66;
  font-size: 3rem;
  font-weight: 400;
}
#content .body > section#staff .col2 > div:nth-of-type(2) > h3 span {
  margin-left: 20px;
  padding: 0;
  color: #007d66;
  font-size: 1.4rem;
  font-weight: 400;
}
#content .body > section#staff .col2 > div:nth-of-type(2) > div {
  margin-top: 30px;
}
#content .body > section#staff .col2 > div:nth-of-type(2) > div p {
  margin: 0;
}
#content .body > section#staff .col2 > div:nth-of-type(2) > div p.item {
  width: 99px;
  height: 24px;
  border: solid 1px #54b59c;
  border-radius: 12px;
  color: #007d66;
  font-size: 1.4ewm;
  text-align: center;
  line-height: 22px;
}
#content .body > section#staff .col2 > div:nth-of-type(2) > div p.text {
  margin-top: 15px;
  font-size: 1.5rem;
  line-height: 2;
}
#content .body > section#staff .col2:nth-of-type(1) {
  margin-top: 20px;
}
#content .body > section#staff .col2:nth-of-type(even) > div:nth-of-type(1) {
  order: 2;
  text-align: right;
}

#content .body > section#staff .col2 img{
  border-radius: 25px;
}



#content .body > section#staff .col2:nth-of-type(even) > div:nth-of-type(2) {
  order: 1;
  padding-left: 0;
  padding-right: 20px;
}
#content .body > section.policy h3 {
  text-align: center;
}
#content .body > section.policy h3 span {
  margin-bottom: 10px;
  padding: 0 10px 20px;
  color: #007d66;
  font-size: 3rem;
  font-weight: 500;
  border-bottom: solid 2px #54b59c;
}
#content .body > section.policy h3 + p {
  font-weight: 500;
}
#content .body > section.policy p {
  line-height: 2;
}
#content .body > section.policy#privacy .article > div {
  margin-top: 40px;
}
#content .body > section.policy#privacy .article > div h4 {
  margin: 0;
  color: #007d66;
  font-size: 1.8rem;
  font-weight: 700;
}
#content .body > section.policy#privacy .article > div h4 span {
  vertical-align: baseline;
}
#content .body > section.policy#privacy .article > div h4 .num {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 12px;
  background: #007d66;
  color: #fff;
  line-height: 30px;
  text-align: center;
}
#content .body > section.policy#privacy .article > div h4 .note {
  margin-left: 20px;
  color: #231815;
  font-size: 1.4rem;
  font-weight: 300;
}
#content .body > section.policy#privacy .article > div h4 .note .num {
  width: 16px;
  height: 16px;
  margin-right: 0;
  line-height: 16px;
}
#content .body > section.policy#privacy .article > div > p {
  font-size: 1.5rem;
  font-weight: 500;
}
#content .body > section.policy#privacy .article > div .title {
  width: 220px;
  height: 30px;
  margin-top: 40px;
  border: solid 1px #c9caca;
  font-size: 1.5rem;
  line-height: 28px;
  text-align: center;
}
#content .body > section.policy#privacy .article > div .url {
  list-style: none;
  margin: 0 0 80px;
  padding: 0;
}
#content .body > section.policy#privacy .article > div .url li {
  display: flex;
  padding: 12px 0;
  border-bottom: solid 1px #c9caca;
}
#content .body > section.policy#privacy .article > div .url li > p {
  margin: 0;
  font-size: 1.5rem;
}
#content .body > section.policy#privacy .article > div .url li > p:nth-of-type(1) {
  width: 480px;
}
#content .body > section.policy#privacy .article > div .url li > p:nth-of-type(2) {
  flex: 1;
}
#content .body > section.policy#privacy .article > div ol {
  list-style: none;
  margin: 0 0 80px;
  padding: 0 65px;
}
#content .body > section.policy#privacy .article > div ol li {
  display: flex;
  padding: 8px 0;
}
#content .body > section.policy#privacy .article > div ol li > p {
  margin: 0;
  font-size: 1.5rem;
}
#content .body > section.policy#privacy .article > div ol li > p:nth-of-type(1) {
  flex-shrink: 0;
  padding-right: 8px;
}
#content .body > section.policy#privacy .article > div .info .title {
  width: 160px;
}
#content .body > section.policy#privacy .article > div .info ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#content .body > section.policy#privacy .article > div .info ul li {
  display: flex;
  padding: 8px 0;
}
#content .body > section.policy#privacy .article > div .info ul li > p {
  margin: 0;
  font-size: 1.5rem;
}
#content .body > section.policy#privacy .article > div .info ul li > p:nth-of-type(1) {
  width: 130px;
  padding-left: 10px;
}
#content .body > section.policy#privacy .article > div .info ul li > p:nth-of-type(2) {
  flex: 1;
}
#content .body > section.policy#solicitation h3 {
  padding: 5px 0 5px 17px;
  border-left: solid 3px #54b59c;
  text-align: left;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
}
#content .body > section.policy#solicitation ul {
  margin-bottom: 60px;
}
#content .body > section.policy#solicitation ul li {
  margin-top: 10px;
}
#content .body > section.policy#solicitation .article > p {
  margin: 80px 0 0;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: right;
}
#content .body > section.policy#solicitation .article > p span {
  margin-left: 15px;
  font-size: 2rem;
}
#content .body > section.policy#fiduciary .article {
  margin-top: 80px;
}
#content .body > section.policy#fiduciary .article > div {
  margin-top: 50px;
}

#content .body > section.policy#fiduciary .article > div h4 {
  margin: 0;
  height: 40px;
  border: solid 1px #54b59c;
  color: #007d66;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 38px;
}


#content .body > section.policy#fiduciary .article > div h4 span {
  display: inline-block;
  width: 100px;
  margin-right: 15px;
  background: #54b59c;
  color: #fff;
  text-align: center;
}

#content .body > section.policy#fiduciary .article > div h4 span.fiduciary02 {
  display: inline-block;
  width: 40px;
  margin-right: 15px;
  background: #54b59c;
  color: #fff;
  text-align: center;
}




#content .body > section.policy#fiduciary .article > div > p {
  padding: 0 10px;
}
#content .body > section.policy#fiduciary .article > div ol {
  list-style: none;
  margin: 0;
  padding: 0 40px;
}
#content .body > section.policy#fiduciary .article > div ol li {
  display: flex;
  margin-top: 10px;
}
#content .body > section.policy#fiduciary .article > div ol li > p {
  margin: 0;
}
#content .body > section.policy#fiduciary .article > div ol li > p:nth-of-type(1) {
  margin-right: 5px;
}
#content .body > section.policy#fiduciary .article > p {
  margin: 80px 0 0;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: right;
}
#content .body > section.policy#fiduciary .article > p span {
  margin-left: 15px;
  font-size: 2rem;
}
#content .body > section.policy#authority h4 {
  margin: 0;
  color: #727171;
  text-align: center;
}
#content .body > section.policy#authority h4 span {
  display: inline-block;
  padding: 0 5px 5px;
  border-bottom: solid 3px #c9caca;
  color: #727171;
  font-size: 2.2rem;
  font-weight: 700;
}
#content .body > section.policy#authority .toriatsukai {
  margin-top: 60px;
}
#content .body > section.policy#authority .toriatsukai .col2 {
  margin-top: 20px;
}
#content .body > section.policy#authority .toriatsukai .col2 > div h5 {
  height: 40px;
  padding-left: 16px;
  border: solid 1px #c9caca;
  color: 595757;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 38px;
}
#content .body > section.policy#authority .toriatsukai .col2 > div:nth-of-type(1) {
  padding-right: 30px;
}
#content .body > section.policy#authority .toriatsukai .col2 > div:nth-of-type(2) {
  padding-left: 30px;
}
#content .body > section.policy#authority .toriatsukai .col2 > div ul {
  margin: 0;
  margin: -5px 0 0;
  padding: 0 0 0 20px;
}
#content .body > section.policy#authority .toriatsukai .col2 > div ul li {
  margin-top: 10px;
}
#content .body > section.policy#authority .article {
  margin-top: 50px;
  padding: 50px 90px;
  background: #fafcf8;
  border: solid 2px #a7d4c4;
  border-radius: 20px;
}
#content .body > section.policy#authority .article h4 span {
  font-size: 2.6rem;
}
#content .body > section.policy#authority .article p {
  font-size: 1.5rem;
}
#content .body > section.policy#authority .article > ol, #content .body > section.policy#authority .article > ul {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
}
#content .body > section.policy#authority .article > ol li, #content .body > section.policy#authority .article > ul li {
  margin-top: 30px;
}
#content .body > section.policy#authority .article > ol li h5, #content .body > section.policy#authority .article > ul li h5 {
  margin: 0;
  color: #54b59c;
  font-size: 1.6rem;
  font-weight: 500;
}

/********/
#content .body > section.policy#authority .article > ol li .authority_list{
  padding: 0;
  list-style: none;
  margin: 15px 0;
}

#content .body > section.policy#authority .article > ol li .authority_list li{
  margin: 0 0 5px;
  font-size: 1.5rem;
  line-height: 2em;
  padding: 0 0 0 18px;
  position: relative;
}
#content .body > section.policy#authority .article > ol li .authority_list li:before{
  position: absolute;
  content: "・";
  display: block;
  left: 0
}

/********/


#content .body > section.policy#authority .article > div {
  margin-top: 40px;
}
#content .body > section.policy#authority .article > div > p {
  margin: 0;
  font-weight: 500;
}
#content .body > section.policy#authority .article > div > ul {
  list-style: none;
  margin: -5px 0 30px;
  padding: 0;
}
#content .body > section.policy#authority .article > div > ul > li {
  display: flex;
  align-items: stretch;
  margin-top: 15px;
  border-right: solid 1px #c9caca;
  border-bottom: solid 1px #c9caca;
  background: #fff;
}
#content .body > section.policy#authority .article > div > ul > li > p {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  margin: 0;
  background: #54b59c;
  color: #fff;
}
#content .body > section.policy#authority .article > div > ul > li > div {
  text-align: center;
}
#content .body > section.policy#authority .article > div > ul > li > div > p {
  margin: 0;
  border-top: solid 1px #c9caca;
  border-left: solid 1px #c9caca;
}
#content .body > section.policy#authority .article > div > ul > li > div > p:nth-of-type(1) {
  color: #007d66;
  font-size: 1.5rem;
}
#content .body > section.policy#authority .article > div > ul > li > div:nth-of-type(1) {
  width: 260px;
}
#content .body > section.policy#authority .article > div > ul > li > div:nth-of-type(2) {
  flex: 1;
}
#content .body > section.policy#authority .article:nth-of-type(2) {
  background: #fffffb;
  border-color: #facd95;
}
#content .body > section.policy#authority .article:nth-of-type(2) h4 span {
  color: #ea5514;
  border-bottom-color: #f8b62d;
}
#content .body > section.policy#authority .article:nth-of-type(2) > ol li h5, #content .body > section.policy#authority .article:nth-of-type(2) > ul li h5 {
  color: #ea5514;
}
#content .body > section.policy#authority .article2 {
  margin-top: 50px;
  padding: 0 80px;
}
#content .body > section.policy#authority .article2 > div {
  border: solid 1px #c9caca;
  padding: 25px;
}
#content .body > section.policy#authority .article2 > div h4 {
  font-size: 1.8rem;
  font-weight: 700;
}
#content .body > section.policy#authority .article2 > div p {
  margin: 15px 0 0;
  letter-spacing: -0.3px;
}
#content .body > section#contact > .content > p {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
}
#content .body > section#contact .tel {
  text-align: center;
}
#content .body > section#contact .tel .img {
  margin: 60px 0 0;
}
#content .body > section#contact .tel .img img {
  width: 48px;
}
#content .body > section#contact .tel h3 {
  margin: 20px 0 0;
  color: #54b59c;
  font-size: 2.2rem;
  font-weight: 700;
}
#content .body > section#contact .tel h3 + p {
  margin: 10px 0 0;
  font-size: 1.3rem;
}
#content .body > section#contact .tel ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  margin: 40px 0 0;
  padding: 0;
}
#content .body > section#contact .tel ul li {
  display: flex;
}
#content .body > section#contact .tel ul li > p {
  margin: 0;
}
#content .body > section#contact .tel ul li > p:nth-of-type(1) {
  width: 80px;
  height: 23px;
  border: solid 1px #54b59c;
  color: #007d66;
  line-height: 21px;
}
#content .body > section#contact .tel ul li > p:nth-of-type(2) {
  margin-left: 10px;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}
#content .body > section#contact .tel ul li > p:nth-of-type(2) a {
  display: inline-block;
  color: #231815;
  pointer-events: none;
}
#content .body > section#contact .mail {
  margin-top: 140px;
  text-align: center;
}
#content .body > section#contact .mail .img img {
  width: 50px;
}
#content .body > section#contact .mail h3 {
  margin: 20px 0 50px;
  color: #54b59c;
  font-size: 2.2rem;
  font-weight: 700;
}
#content .body > section#contact .mail .text > p {
  margin: 40px 0 0;
  font-size: 1.5rem;
}
#content .body > section#contact .mail > ul {
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 40px 0 0;
  padding: 0;
}
#content .body > section#contact .mail > ul li {
  width: 240px;
  height: 50px;
  border: solid 1px #54b59c;
  margin: 0 5px;
  color: #54b59c;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
}
#content .body > section#contact .mail > ul li::after {
  content: url(../img/contact-arrow.png);
  display: inline-block;
  margin-left: 10px;
}
#content .body > section#contact .mail > ul li:nth-last-child(1)::after {
  display: none;
}
#content .body > section#contact .mail > ul li.here {
  background: #54b59c;
  color: #fff;
}
#content .body > section#contact .mail > ul li.here::after {
  content: url(../img/contact-arrow-here.png);
}
#content .body > section#contact .mail > ul li.here:nth-last-child(1)::after {
  display: none;
}
#content .body > section#contact .mail .form-box {
  padding: 40px 90px 0;
  text-align: left;
}
#content .body > section#contact .mail .form-box form ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border-bottom: solid 1px #c9caca;
}
#content .body > section#contact .mail .form-box form ul li {
  display: flex;
  border-top: solid 1px #c9caca;
  border-right: solid 1px #c9caca;
}
#content .body > section#contact .mail .form-box form ul li > p {
  margin: 0;
  border-left: solid 1px #c9caca;
  font-size: 1.5rem;
}
#content .body > section#contact .mail .form-box form ul li > p:nth-of-type(1) {
  display: flex;
  align-items: center;
  width: 220px;
  padding-left: 28px;
  background: #fffeee;
}
#content .body > section#contact .mail .form-box form ul li > p:nth-of-type(2) {
  flex: 1;
  padding: 10px 30px;
}
#content .body > section#contact .mail .form-box form ul li > p:nth-of-type(2) input[type=text], #content .body > section#contact .mail .form-box form ul li > p:nth-of-type(2) input[type=tel], #content .body > section#contact .mail .form-box form ul li > p:nth-of-type(2) input[type=email] {
  display: block;
  width: 100%;
  height: 35px;
  padding: 0 10px;
  border: solid 1px #c9caca;
  line-height: 33px;
}
#content .body > section#contact .mail .form-box form ul li > p:nth-of-type(2) input[type=text]:nth-of-type(2), #content .body > section#contact .mail .form-box form ul li > p:nth-of-type(2) input[type=tel]:nth-of-type(2), #content .body > section#contact .mail .form-box form ul li > p:nth-of-type(2) input[type=email]:nth-of-type(2) {
  margin-top: 10px;
}
#content .body > section#contact .mail .form-box form ul li > p:nth-of-type(2) input[type=text].short, #content .body > section#contact .mail .form-box form ul li > p:nth-of-type(2) input[type=tel].short, #content .body > section#contact .mail .form-box form ul li > p:nth-of-type(2) input[type=email].short {
  width: 440px;
}
#content .body > section#contact .mail .form-box form ul li > p:nth-of-type(2) input[type=text].sshort, #content .body > section#contact .mail .form-box form ul li > p:nth-of-type(2) input[type=tel].sshort, #content .body > section#contact .mail .form-box form ul li > p:nth-of-type(2) input[type=email].sshort {
  width: 150px;
}
#content .body > section#contact .mail .form-box form ul li > p:nth-of-type(2) textarea {
  display: block;
  width: 100%;
  height: 220px;
  padding: 5px 10px;
  border: solid 1px #c9caca;
}
#content .body > section#contact .mail .form-box form ul li > p:nth-of-type(2) label {
  cursor: pointer;
  margin-left: 40px;
}
#content .body > section#contact .mail .form-box form ul li > p:nth-of-type(2) label input[type=radio] {
  margin-right: 8px;
  cursor: pointer;
}
#content .body > section#contact .mail .form-box form ul li > p:nth-of-type(2) label:nth-of-type(1) {
  margin-left: 0;
}
#content .body > section#contact .mail .form-box form ul li > p:nth-of-type(2) label.agree {
  display: inline-block;
  margin-top: 5px;
}
#content .body > section#contact .mail .form-box form ul li > p:nth-of-type(2) label.agree input {
  margin-left: 5px;
  vertical-align: middle;
  cursor: pointer;
}
#content .body > section#contact .mail .form-box form ul li > p:nth-of-type(2) span {
  font-weight: 700;
}
#content .body > section#contact .mail .form-box form ul li.required > p:nth-of-type(1)::after {
  content: "必須";
  display: inline-block;
  width: 37px;
  height: 18px;
  margin-left: 10px;
  background: #54b59c;
  color: #fff;
  font-size: 1.3rem;
  line-height: 18px;
  text-align: center;
  vertical-align: middle;
}
#content .body > section#contact .mail .form-box form .button {
  margin-top: 60px;
  text-align: center;
}
#content .body > section#contact .mail .form-box form .button input {
  width: 500px;
  max-width: 100%;
  height: 60px;
  border: solid 1px #c9caca;
  background: none;
  line-height: 58px;
}
#content .body > section#contact .mail .form-box form ul li .msg{
  color: red;
}
#content .body > section#sdgs {
  padding-bottom: 0;
}
#content .body > section#sdgs .intro {
  padding-bottom: 170px;
}
#content .body > section#sdgs .intro p {
  margin: 30px 0 0;
  font-size: 1.8rem;
  line-height: 2.2;
}
#content .body > section#sdgs .intro .img {
  margin-top: 60px;
  text-align: center;
}
#content .body > section#sdgs .intro .mie {
  display: flex;
  align-items: center;
  margin-top: 110px;
  padding: 20px 80px;
  border: solid 1px #c9caca;
  border-radius: 20px;
}
#content .body > section#sdgs .intro .mie > div:nth-of-type(1) {
  width: 256px;
}
#content .body > section#sdgs .intro .mie > div:nth-of-type(2) {
  flex: 1;
  padding-left: 60px;
}
#content .body > section#sdgs .intro .mie > div:nth-of-type(2) p {
  margin: 0;
}
#content .body > section#sdgs .intro .mie > div:nth-of-type(2) p:nth-of-type(1) {
  color: #727171;
  font-size: 2.4rem;
  font-weight: 700;
}
#content .body > section#sdgs .intro .mie > div:nth-of-type(2) p:nth-of-type(1) span {
  display: inline-block;
  position: relative;
}
#content .body > section#sdgs .intro .mie > div:nth-of-type(2) p:nth-of-type(1) span::before {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 15px;
  background: #fff799;
}
#content .body > section#sdgs .action {
  padding: 80px 0 160px;
  border-top: solid 1px #f0eccd;
  background: #fffef5;
}
#content .body > section#sdgs .action h3 {
  font-size: 3rem;
  text-align: center;
}
#content .body > section#sdgs .action h3 span {
  padding: 15px 0 0;
  color: #007d66;
  font-size: 3.8rem;
  font-weight: 500;
}
#content .body > section#sdgs .action ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0;
  padding: 0;
}
#content .body > section#sdgs .action ul li {
  width: 500px;
  margin-top: 110px;
}
#content .body > section#sdgs .action ul li > div:nth-of-type(1) {
  display: flex;
}
#content .body > section#sdgs .action ul li > div:nth-of-type(1) > div:nth-of-type(1) {
  flex-shrink: 0;
  width: 120px;
}
#content .body > section#sdgs .action ul li > div:nth-of-type(1) > div:nth-of-type(2) {
  flex: 1;
  padding-left: 30px;
}
#content .body > section#sdgs .action ul li > div:nth-of-type(1) > div:nth-of-type(2) h4 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 700;
}
#content .body > section#sdgs .action ul li > div:nth-of-type(1) > div:nth-of-type(2) h4.c01 {
  color: #e5001e;
}
#content .body > section#sdgs .action ul li > div:nth-of-type(1) > div:nth-of-type(2) h4.c03 {
  color: #00973b;
}
#content .body > section#sdgs .action ul li > div:nth-of-type(1) > div:nth-of-type(2) h4.c04 {
  color: #c60f28;
}
#content .body > section#sdgs .action ul li > div:nth-of-type(1) > div:nth-of-type(2) h4.c07 {
  color: #c49500;
}
#content .body > section#sdgs .action ul li > div:nth-of-type(1) > div:nth-of-type(2) h4.c08 {
  color: #970b31;
}
#content .body > section#sdgs .action ul li > div:nth-of-type(1) > div:nth-of-type(2) h4.c09 {
  color: #ed6a02;
}
#content .body > section#sdgs .action ul li > div:nth-of-type(1) > div:nth-of-type(2) h4.c11 {
  color: #f5a200;
}
#content .body > section#sdgs .action ul li > div:nth-of-type(1) > div:nth-of-type(2) h4.c13 {
  color: #427935;
}
#content .body > section#sdgs .action ul li > div:nth-of-type(1) > div:nth-of-type(2) h4.c14 {
  color: #0075ba;
}
#content .body > section#sdgs .action ul li > div:nth-of-type(1) > div:nth-of-type(2) h4.c15 {
  color: #28a838;
}
#content .body > section#sdgs .action ul li > div:nth-of-type(1) > div:nth-of-type(2) p {
  margin-bottom: 0;
  font-size: 1.5rem;
}
#content .body > section#sdgs .action ul li > div:nth-of-type(2) {
  margin-top: 30px;
}
#content .body > section#kenkou h3 {
  font-size: 3rem;
  text-align: center;
}
#content .body > section#kenkou h3 span {
  padding: 15px 0 0;
  color: #007d66;
  font-size: 3.8rem;
  font-weight: 500;
}
#content .body > section#kenkou .intro {
  padding: 80px 0;
}
#content .body > section#kenkou .intro > p {
  margin: 80px 0 0;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.2;
  letter-spacing: -0.1px;
}
#content .body > section#kenkou .intro > div {
  position: relative;
  margin-top: 100px;
  padding: 0 75px;
}
#content .body > section#kenkou .intro > div > h4 {
  position: absolute;
  top: -18px;
  left: 50%;
  margin: 0;
  padding: 0 30px;
  background: #fff;
  color: #595757;
  font-size: 2.8rem;
  line-height: 1;
  transform: translate(-50%, 0);
}
#content .body > section#kenkou .intro > div > div {
  display: flex;
  align-items: center;
  padding: 50px 85px;
  border: solid 1px #b5b5b6;
  border-radius: 20px;
}
#content .body > section#kenkou .intro > div > div > div:nth-of-type(1) {
  flex-shrink: 0;
  width: 285px;
}
#content .body > section#kenkou .intro > div > div > div:nth-of-type(2) {
  padding-left: 60px;
}
#content .body > section#kenkou .intro > div > div > div:nth-of-type(2) > p {
  margin: 0;
  line-height: 2.4;
}
#content .body > section#kenkou .intro > div > div > div:nth-of-type(2) > p:nth-last-of-type(1) {
  margin: 20px 0 0;
  font-size: 1.4rem;
  line-height: 1.6;
}
#content .body > section#kenkou .action {
  padding: 80px 0;
}
#content .body > section#kenkou .action .col2 {
  margin-top: 80px;
}
#content .body > section#kenkou .action .col2 > div:nth-of-type(1) {
  width: 470px;
}
#content .body > section#kenkou .action .col2 > div:nth-of-type(1) ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#content .body > section#kenkou .action .col2 > div:nth-of-type(1) ul li {
  position: relative;
  margin-top: 30px;
  padding-left: 39px;
  font-size: 1.7rem;
  font-weight: 400;
}
#content .body > section#kenkou .action .col2 > div:nth-of-type(1) ul li::before {
  content: url(../img/kenkou-icon.png);
  position: absolute;
  left: 0;
  top: 6px;
}
#content .body > section#kenkou .action .col2 > div:nth-of-type(1) ul li:nth-child(1) {
  margin-top: 0;
}
#content .body > section#kenkou .action .col2 > div:nth-of-type(2) {
  padding-left: 50px;
}
#content .body > section#voice .col2 {
  margin-top: 120px;
  border-radius: 20px;
  background: #f6fbf9;
  transform: translate(50px, 30px);
}
#content .body > section#voice .col2 > div:nth-of-type(1) {
  flex-shrink: 0;
  width: 360px;
  transform: translate(-50px, -30px);
}
#content .body > section#voice .col2 > div:nth-of-type(2) {
  padding: 60px 40px 60px 10px;
}
#content .body > section#voice .col2 > div:nth-of-type(2) h3 {
  margin: 0;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.6;
}
#content .body > section#voice .col2 > div:nth-of-type(2) .company {
  margin: 30px 0 0;
  color: #007d66;
  font-size: 1.5rem;
}
#content .body > section#voice .col2 > div:nth-of-type(2) .company span {
  display: inline-block;
  height: 24px;
  margin-right: 10px;
  padding: 0 8px;
  background: #54b59c;
  color: #fff;
  line-height: 24px;
}
#content .body > section#voice .col2 > div:nth-of-type(2) .name {
  margin: 15px 0 0;
  font-size: 1.5rem;
}
#content .body > section#voice .col2 > div:nth-of-type(2) > div p {
  margin: 30px 0 0;
  font-size: 1.5rem;
  line-height: 2;
}
#content .body > section#voice .col2 > div:nth-of-type(2) > div .homepage {
  margin-top: 40px;
}
#content .body > section#voice .col2 > div:nth-of-type(2) > div .homepage a {
  display: block;
  width: 250px;
  height: 40px;
  border: solid 1px #54b59c;
  background: #fff;
  font-size: 1.5rem;
  line-height: 38px;
  text-align: center;
}
#content .body > section#voice .col2 > div:nth-of-type(2) > div .homepage a:hover {
  text-decoration: none;
}
#content .body > section.business .intro {
  overflow: hidden;
  padding: 60px 0 130px;
}
#content .body > section.business .intro .col2 {
  align-items: center;
}
#content .body > section.business .intro .col2 > div:nth-of-type(1) h3 {
  margin: 0;
  color: #54b59c;
  font-size: 3.1rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: -0.9px;
}
#content .body > section.business .intro .col2 > div:nth-of-type(1) p {
  margin: 40px 0 0;
  padding-right: 60px;
  color: #727171;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.3;
  letter-spacing: -0.2px;
}
#content .body > section.business .intro .col2 > div:nth-of-type(2) {
  position: relative;
  height: 620px;
}
#content .body > section.business .intro .col2 > div:nth-of-type(2) img {
  position: absolute;
  left: 60px;
  top: 0;
  width: 900px;
  max-width: 900px;
}
#content .body > section.business .service {
  padding: 60px 0 90px;
  background: #c7e3d8;
}
#content .body > section.business .service h3 {
  position: relative;
  padding-bottom: 28px;
  color: #007d66;
  font-size: 3.5rem;
  font-weight: 500;
  text-align: center;
}
#content .body > section.business .service h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100px;
  height: 3px;
  background: #54b59c;
  transform: translate(-50%, 0);
}
#content .body > section.business .service ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 10px 0 0;
  padding: 0;
}
#content .body > section.business .service ul li {
  margin-top: 50px;
  width: 330px;
  padding: 20px;
  border: solid 3px #54b59c;
  border-radius: 10px;
  background: #fff;
}
#content .body > section.business .service ul li h4 {
  margin: 0;
  text-align: center;
}
#content .body > section.business .service ul li h4 > span {
  position: relative;
  z-index: 1;
  color: #007d66;
  font-size: 2rem;
  font-weight: 700;
}
#content .body > section.business .service ul li h4 > span::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  z-index: 0;
  width: 100%;
  height: 17px;
  background: #fff799;
}
#content .body > section.business .service ul li h4 > span > span {
  position: relative;
  z-index: 1;
}
#content .body > section.business .service ul li p {
  margin-bottom: 0;
  font-size: 1.5rem;
  line-height: 1.8;
}
#content .body > section.business .service ul + div {
  margin-top: 50px;
  padding: 5px 0;
  background: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
}
#content .body > section.business .service ul + div p {
  margin: 0;
}
#content .body > section.business .hoken {
  padding-top: 120px;
}
#content .body > section.business .hoken .content {
  display: flex;
  align-items: flex-start;
}
#content .body > section.business .hoken .content h3 {
  flex-shrink: 0;
}
#content .body > section.business .hoken .content h3 span {
  display: inline-block;
  padding-bottom: 25px;
  border-bottom: solid 5px #54b59c;
  color: #54b59c;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.5;
}
#content .body > section.business .hoken .content ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin: -50px 0 0 50px;
  padding: 0;
  
  
	align-items: center;
  
  
  
}
#content .body > section.business .hoken .content ul li {
  width: 300px;
  margin: 50px 0 0 130px;
}
#content .body > section.business#per .intro .col2 > div:nth-of-type(1) h3 {
  color: #ec6d7b;
}
#content .body > section.business#per .service {
  background: #fdedec;
}
#content .body > section.business#per .service h3 {
  color: #ec6d7b;
}
#content .body > section.business#per .service h3::after {
  background: #ec6d7b;
}
#content .body > section.business#per .service ul li {
  border-color: #f4aeae;
}
#content .body > section.business#per .service ul li h4 > span {
  color: #ec6d7b;
}
#content .body > section.business#per .hoken .content h3 span {
  border-bottom-color: #ec6d7b;
  color: #ec6d7b;
}
#content .body > section#reason .content {
  padding: 0 60px;
}
#content .body > section#reason .content .point {
  margin-top: 40px;
  border-radius: 10px;
  background: #e4f2ed;
  transform: translate(3px, 0);
}
#content .body > section#reason .content .point .col2 {
  align-items: center;
  padding: 20px;
  border: solid 1px #b7dbce;
  border-radius: 10px;
  background: #fff;
  transform: translate(-6px, -6px);
}
#content .body > section#reason .content .point .col2 > div:nth-of-type(1) {
  flex-shrink: 0;
  width: 186px;
}
#content .body > section#reason .content .point .col2 > div:nth-of-type(2) {
  padding: 0 30px 0 35px;
}
#content .body > section#reason .content .point .col2 > div:nth-of-type(2) > p {
  position: relative;
  width: 60px;
  height: 20px;
  margin: 0;
  border-radius: 3px;
  background: #f39800;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 20px;
  text-align: center;
}
#content .body > section#reason .content .point .col2 > div:nth-of-type(2) > p::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  border: solid;
  border-color: #f39800 transparent transparent transparent;
  border-top-width: 6px;
  border-bottom-width: 0;
  border-left-width: 6px;
  border-right-width: 6px;
  transform: translate(-50%, 0);
}
#content .body > section#reason .content .point .col2 > div:nth-of-type(2) h3 {
  margin-top: 10px;
  color: #595757;
  font-size: 2.2rem;
  font-weight: 700;
}
#content .body > section#reason .content .point .col2 > div:nth-of-type(2) h3 span {
  padding: 0;
  color: #54b59c;
  font-size: 2.2rem;
  font-weight: 700;
}
#content .body > section#reason .content .point .col2 > div:nth-of-type(2) > div p {
  margin: 20px 0 0;
  line-height: 1.8;
}
#content .body > section#reason .content .point:nth-of-type(1) {
  margin-top: 0;
}



/*251212--------------------*/



#content .body > section.business .hoken .content ul li.gib-life img {
  width: 90%;
  display: block;
  margin: 20px 0 20px; 
}

#content .body > section.business .hoken .content ul li.pgf-life img {
  width: 90%;
  margin: 0
}


@media (max-width:814px) {
  #content .body > section.business .hoken .content ul li.gib-life img {
    display: block;
    margin:60px 0 60px; 
  }
  #content .body > section.business .hoken .content ul li.gib-life,
  #content .body > section.business .hoken .content ul li.pgf-life{
    width:310px;
    margin: 0 auto;
  }
  #content .body > section.business .hoken .content ul li.pgf-life img {
    display: block;
  }
}





/* ==========================================================================
 * * Helper classes
 * * ========================================================================== */
/* * Hide visually and from screen readers */
.hidden {
  display: none !important;
}

/* * Hide only visually, but have it available for screen readers:
 * * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 * *
 * * 1. For long content, line feeds are not interpreted as spaces and small width
 * *    causes content to wrap 1 word per line:
 * *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}
.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
  clip: auto;
  -webkit-clip-path: none;
  clip-path: none;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
  white-space: inherit;
}

/* * Extends the .visuallyhidden class to allow the element
 * * to be focusable when navigated to via the keyboard:
 * * https://www.drupal.org/node/897638 */
/* * Hide visually and from screen readers, but maintain layout */
.invisible {
  visibility: hidden;
}

/* * Clearfix: contain floats
 * *
 * * For modern browsers
 * * 1. The space content is one way to avoid an Opera bug when the
 * *    `contenteditable` attribute is included anywhere else in the document.
 * *    Otherwise it causes space to appear at the top and bottom of elements
 * *    that receive the `clearfix` class.
 * * 2. The use of `table` rather than `block` is only necessary if using
 * *    `:before` to contain the top-margins of child elements. */
.clearfix:before {
  content: " ";
  display: table;
}
.clearfix:after {
  content: " ";
  display: table;
  clear: both;
}

/* ==========================================================================
 * * EXAMPLE Media Queries for Responsive Design.
 * * These examples override the primary ('mobile first') styles.
 * * Modify as content requires.
 * * ========================================================================== */



@media only screen and (min-width: 815px) {
  .sp-only {
    display: none !important;
  }

  #wrapper {
    min-width: 1280px;
  }

  #header {
    min-width: 1280px;
  }
  #header #nav > ul > li > a.here {
    position: relative;
  }
  #header #nav > ul > li > a.here::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 15px;
    width: 29px;
    height: 1px;
    background: #007d66;
    transform: translate(-50%, 0);
  }
  #header #nav > ul > li.haschild > a.here::before {
    margin-left: -12px;
  }
}
@media only screen and (max-width: 814px) {
  .pc-only {
    display: none !important;
  }

  .content {
    padding: 0 15px;
  }

  .btn {
    margin: 0;
  }
  .btn > a {
    width: 220px;
    height: 50px;
    margin: 0 auto;
    line-height: 50px;
  }
  .btn > a::after {
    right: 25px;
  }

  .btn-b {
    position: relative;
    display: block;
    width: auto;
    height: 50px;
    padding-right: 10px;
    border: none;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 50px;
    text-align: center;
  }
  .btn-b::after {
    content: "";
    position: static;
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-top: 2px;
    margin-left: 5px;
    border-style: solid;
    border-width: 1px 1px 0 0;
    border-color: #fff #fff transparent transparent;
    transform: translate(0, 0) rotate(45deg);
  }
  .btn-b:hover {
    text-decoration: none;
  }

  .col2 {
    display: block;
  }
  .col2 > div:nth-of-type(1) {
    width: auto;
  }
  .col2 > div:nth-of-type(2) {
    flex: none;
  }

  .col3 {
    display: block;
  }
  .col3 > div:nth-of-type(1) {
    width: auto;
  }
  .col3 > div:nth-of-type(2) {
    width: auto;
  }
  .col3 > div:nth-of-type(3) {
    width: auto;
  }

  .logo img {
    width: 26px;
  }
  .logo > a > span {
    padding-left: 10px;
  }
  .logo > a > span > span:nth-of-type(1) {
    display: none;
  }
  .logo > a > span > span:nth-of-type(2) {
    padding-bottom: 4px;
    font-size: 1.8rem;
  }
  .logo > a:hover {
    text-decoration: none;
  }

  #wrapper {
    padding: 45px 0;
    overflow: hidden;
  }

  #header {
    height: 45px;
  }
  #header h1 {
    flex: 1;
    height: 45px;
    padding: 10px 0 0 10px;
    background: #fff;
  }
  #header #nav {
    display: flex;
  }
  #header #nav #nav-contact {
    position: relative;
    z-index: 11;
  }
  #header #nav #nav-contact a {
    display: block;
    width: 45px;
    height: 45px;
    background: #54b59c;
  }
  #header #nav #nav-contact a::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 24px;
    height: 19px;
    background: url(../img/header-nav-mail.png) 0 0 no-repeat;
    background-size: contain;
    transform: translate(-50%, -50%);
  }
  #header #nav #nav-btn {
    position: relative;
    z-index: 11;
  }
  #header #nav #nav-btn > a {
    display: block;
    width: 45px;
    height: 45px;
    border: solid 1px #dcdddd;
    padding-top: 28px;
    background: #fff;
    color: #54b59c;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    line-height: 1;
  }
  #header #nav #nav-btn > a::before {
    content: "MENU";
  }
  #header #nav #nav-btn > a > span {
    position: absolute;
    left: 10px;
    top: 9px;
    width: 24px;
    height: 2px;
    background: #54b59c;
  }
  #header #nav #nav-btn > a > span:nth-of-type(2) {
    top: 15px;
  }
  #header #nav #nav-btn > a > span:nth-of-type(3) {
    top: 21px;
  }
  #header #nav > ul {
    display: block;
    position: absolute;
    right: -100vw;
    top: 0;
    z-index: 10;
    width: 100%;
    height: 100vh;
    padding: 70px 0;
    background: #fff;
    overflow: auto;
    transition: all 300ms ease-in;
  }
  #header #nav > ul > li {
    display: block;
    position: relative;
    border-bottom: solid 1px #54b59c;
  }
  #header #nav > ul > li > a {
    height: 50px;
    padding: 0 20px;
    font-size: 1.8rem;
    line-height: 50px;
  }
  #header #nav > ul > li > a.opened + ul > li > a {
    height: 50px;
    opacity: 1;
  }
  #header #nav > ul > li > ul {
    display: block;
    position: static;
    padding: 0 0 0 75px;
    background: none;
    white-space: normal;
    transform: none;
  }
  #header #nav > ul > li > ul > li > a {
    border-top: dotted 1px #54b59c;
    width: auto;
    height: 0;
    padding: 0 10px;
    color: #231815;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 50px;
    overflow: hidden;
    opacity: 0;
    transition: all 300ms ease-in;
  }
  #header #nav > ul > li > ul > li > a:hover {
    background: none;
  }
  #header #nav > ul > li > ul > li:nth-child(1) {
    border: none;
  }
  #header #nav > ul > li.haschild > a {
    position: relative;
  }
  #header #nav > ul > li.haschild > a::after {
    position: absolute;
    right: 15px;
    top: 50%;
    margin-left: 0;
    transform: translate(0, -50%);
  }
  #header #nav > ul > li.contact a {
    width: auto;
    height: 50px;
    padding: 0 20px;
    font-size: 1.8rem;
    line-height: 50px;
    background: none;
    color: #007d66;
    text-align: left;
  }
  #header #nav > ul > li.contact a::before {
    display: none;
  }
  #header #nav > ul > li.contact a > span {
    display: none;
  }
  #header #nav.active ul {
    right: 0;
  }

  #footer {
    margin-top: 60px;
    padding: 10px 0;
  }
  #footer .logo > a img {
    width: 34px;
  }
  #footer .logo > a > span > span:nth-of-type(1) {
    display: block;
    font-size: 1.1rem;
  }
  #footer .logo > a > span > span:nth-of-type(2) {
    padding-bottom: 0;
  }
  #footer > .content {
    display: block;
    text-align: center;
  }
  #footer > .content > div:nth-of-type(1) {
    display: inline-block;
    text-align: left;
  }
  #footer > .content > div:nth-of-type(1) > ul {
    display: none;
  }
  #footer > .content > div:nth-of-type(2) {
    display: none;
  }
  #footer > p {
    margin: 10px 0 0;
    font-size: 1.1rem;
  }

  #to-top {
    right: 0;
    bottom: 0;
    z-index: 1001;
    opacity: 1;
  }
  #to-top a {
    width: 45px;
    height: 45px;
    border-radius: 0;
  }
  #to-top a::after {
    width: 12px;
    height: 12px;
    margin-top: 3px;
  }
  #to-top.active {
    bottom: 0;
  }

  #to-contact {
    left: 0;
    right: auto;
    top: auto;
    bottom: 0;
    z-index: 1001;
    width: calc(100% - 45px);
  }
  #to-contact > a {
    display: block;
    width: 100%;
    height: 45px;
    border-radius: 0;
    font-size: 1.6rem;
    writing-mode: horizontal-tb;
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: horizontal-tb;
    line-height: 45px;
    text-align: center;
  }
  #to-contact > a::before {
    content: "";
    width: 27px;
    height: 32px;
    margin-right: 20px;
    background: url(../img/sp-common-contact.png) 0 0 no-repeat;
    background-size: contain;
    margin-bottom: 0;
    vertical-align: middle;
    transform: translate(0, 0);
  }

  .home #footer, .sdgs #footer, .company #footer {
    margin-top: 0;
  }
  .home #to-contact, .sdgs #to-contact, .company #to-contact {
    top: auto;
  }

  #mv .slide > h2 {
    position: absolute;
    left: 50%;
    top: auto;
    bottom: 20%;
    margin: 0;
    font-size: 2.5rem;
    text-shadow: 3px 3px 3px rgba(35, 24, 21, 0.75);
    transform: translate(-50%, 0);
  }
  #mv .slide > h2.v2 {
    bottom: auto;
    top: 22%;
    color: #007d66;
    font-size: 2.3rem;
    text-shadow: none;
  }

  #content > section[id^=home-] {
    padding: 35px 0;
  }
  #content > section[id^=home-] h2 {
    font-size: 1.5rem;
    text-align: center;
    line-height: 1.4;
  }
  #content > section[id^=home-] h2 > span {
    font-size: 2.7rem;
    letter-spacing: 1px;
  }
  #content > section[id^=home-]#home-about {
    padding-bottom: 0;
  }
  #content > section[id^=home-]#home-about::before {
    display: none;
  }
  #content > section[id^=home-]#home-about h2 {
    margin-left: 0;
    font-size: 1.5rem;
  }
  #content > section[id^=home-]#home-about h2 > span {
    margin-left: 0;
  }
  #content > section[id^=home-]#home-about .col2 > div:nth-of-type(1) h3 {
    margin: 30px 0 0;
    font-size: 2rem;
    text-align: center;
  }
  #content > section[id^=home-]#home-about .col2 > div:nth-of-type(2) {
    padding: 25px 0 0 0;
  }
  #content > section[id^=home-]#home-about .col2 > div:nth-of-type(2) p {
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.6;
  }
  #content > section[id^=home-]#home-about .col2 > div:nth-of-type(2) .btn {
    margin-top: 40px;
  }
  #content > section[id^=home-]#home-about > .img {
    margin: 40px 0 0;
  }
  #content > section[id^=home-]#home-service {
    padding: 30px 0 60px;
  }
  #content > section[id^=home-]#home-service h2 {
    transform: translate(0, 0);
  }
  #content > section[id^=home-]#home-service .col2 {
    margin-top: 15px;
  }
  #content > section[id^=home-]#home-service .col2 > div {
    max-width: initial;
    max-width: auto;
  }
  #content > section[id^=home-]#home-service .col2 > div > a > div {
    flex-shrink: 0;
    justify-content: center;
    width: 220px;
    text-align: left;
  }
  #content > section[id^=home-]#home-service .col2 > div > a > div h3 {
    margin: 20px auto 0;
    font-size: 2rem;
  }
  #content > section[id^=home-]#home-service .col2 > div > a > div h3::before {
    display: inline-block;
    width: 38px;
    height: 35px;
    margin: 0 10px 0 0;
    vertical-align: middle;
  }
  #content > section[id^=home-]#home-service .col2 > div > a > div .btn-b {
    margin-left: 50px;
    margin-bottom: 0;
  }
  #content > section[id^=home-]#home-service .col2 > div > a:hover {
    text-decoration: none;
  }
  #content > section[id^=home-]#home-service .col2 > div:nth-of-type(2) {
    margin-top: 6px;
    transform: translate(0, 0);
  }
  #content > section[id^=home-]#home-service .col2 > div:nth-of-type(2) > a > div h3::before {
    width: 45px;
    height: 36px;
  }
  #content > section[id^=home-]#home-nav .col2 > div > a {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    color: #fff;
    text-align: left;
  }
  #content > section[id^=home-]#home-nav .col2 > div > a h2 {
    padding-left: 15px;
    font-size: 1.6rem;
    text-align: left;
  }
  #content > section[id^=home-]#home-nav .col2 > div > a h2 span {
    font-size: 3.2rem;
    letter-spacing: 1px;
  }
  #content > section[id^=home-]#home-nav .col2 > div > a .btn-b {
    margin: 0;
    padding-right: 35px;
  }
  #content > section[id^=home-]#home-nav .col2 > div > a::before {
    right: 5px;
    bottom: 5px;
    width: 40px;
    height: 40px;
  }
  #content > section[id^=home-]#home-nav .col3 {
    display: flex;
    flex-wrap: wrap;
    margin-top: 25px;
  }
  #content > section[id^=home-]#home-nav .col3 > div {
    width: 50%;
    margin-top: 20px;
    padding-right: 10px;
  }
  #content > section[id^=home-]#home-nav .col3 > div > a {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: auto;
    height: 100px;
    border: solid 1px #d3d3d4;
    text-align: center;
  }
  #content > section[id^=home-]#home-nav .col3 > div > a p {
    margin: 0 0 10px;
  }
  #content > section[id^=home-]#home-nav .col3 > div > a h2 {
    margin-bottom: 5px;
  }
  #content > section[id^=home-]#home-nav .col3 > div > a img {
    width: 53px;
  }
  #content > section[id^=home-]#home-nav .col3 > div:nth-of-type(2) {
    padding-right: 0;
    padding-left: 10px;
  }
  #content > section[id^=home-]#home-nav .col3 > div:nth-of-type(2) > a img {
    width: 85px;
  }
  #content > section[id^=home-]#home-nav .col3 > div:nth-of-type(3) > a img {
    width: 76px;
  }
  #content > section[id^=home-]#home-contact h2 span {
    margin-bottom: 5px;
  }
  #content > section[id^=home-]#home-contact .col3 > div:nth-of-type(1) p {
    margin: 5px 0 0;
    font-size: 1.4rem;
    text-align: center;
  }
  #content > section[id^=home-]#home-contact .col3 > div:nth-of-type(2) ul {
    list-style: none;
    margin: -10px 0 0 0;
    padding: 0;
  }
  #content > section[id^=home-]#home-contact .col3 > div:nth-of-type(2) ul > li {
    justify-content: center;
  }
  #content > section[id^=home-]#home-contact .col3 > div:nth-of-type(2) ul > li > p:nth-of-type(1) {
    width: 80px;
    height: 25px;
    line-height: 23px;
  }
  #content > section[id^=home-]#home-contact .col3 > div:nth-of-type(2) ul > li > p:nth-of-type(2) {
    padding-left: 15px;
    font-size: 3rem;
  }
  #content > section[id^=home-]#home-contact .col3 > div:nth-of-type(2) > div a {
    display: block;
    width: 340px;
    max-width: 100%;
    height: 50px;
    margin: 0 auto;
    font-size: 1.6rem;
    line-height: 50px;
  }
  #content > section[id^=home-]#home-contact .col3 > div:nth-of-type(2) > div a::before {
    content: "";
    display: inline-block;
    width: 35px;
    height: 27px;
    margin-right: 5px;
  }
  #content > section[id^=home-]#home-contact .col3 > div:nth-of-type(2) > div a:hover {
    text-decoration: none;
  }
  #content > section[id^=home-]#home-contact .col3 > div:nth-of-type(3) {
    margin-top: 40px;
    padding-top: 10px;
  }
  #content > section[id^=home-]#home-contact .col3 > div:nth-of-type(3) p {
    width: 220px;
    margin: 0 auto;
  }
  #content > section[id^=home-]#home-contact .col3 > div:nth-of-type(3) p img {
    width: 220px;
    transform: translate(-10px, -10px);
  }
  #content > section[id^=home-]#home-banner {
    padding-bottom: 60px;
  }
  #content > section[id^=home-]#home-banner .col3 {
    margin: -15px;
  }
  #content > section[id^=home-]#home-banner .col3 > div {
    margin-top: 15px;
  }
  #content > section[id^=home-]#home-banner .col3 > div > a {
    width: 240px;
    margin: 0 auto;
  }
  #content > section[id^=home-]#home-banner .col3 > div:nth-of-type(2) > a {
    margin: 0 auto;
  }
  #content > section[id^=home-]#home-banner .col3 > div:nth-of-type(3) > a {
    margin: 0 auto;
  }
  #content .head .mv {
    height: auto;
    background: none;
  }
  #content .head .mv h2 {
    top: calc(100% - 20px);
    width: 345px;
    max-width: 100%;
    height: 70px;
    padding-top: 13px;
    border-radius: 0;
    font-size: 1.6rem;
  }
  #content .head .mv h2 > span:nth-of-type(1) {
    padding: 10px 0 0;
    border-bottom: none;
    font-size: 2rem;
  }
  #content .head .mv h2 > span:nth-of-type(2) {
    display: none;
  }
  #content .head .mv h2.v2 {
    padding-top: 14px;
  }
  #content .head .mv.noimage {
    height: 52.5px;
  }
  #content .head .breadcrumbs {
    display: none;
  }
  #content .head .sub-nav {
    margin-top: 80px;
  }
  #content .head .sub-nav ul {
    flex-wrap: wrap;
    justify-content: start;
    width: 345px;
    max-width: 100%;
    margin: 0 auto;
  }
  #content .head .sub-nav ul > li {
    width: 50%;
  }
  #content .head .sub-nav ul > li > a {
    width: 100%;
    height: 35px;
    border: solid 1px #54b59c;
    border-top: none;
    font-size: 1.5rem;
    line-height: 33px;
  }
  #content .head .sub-nav ul > li:nth-child(1) > a {
    border-top: solid 1px #54b59c;
  }
  #content .head .sub-nav ul > li:nth-child(2) > a {
    border-top: solid 1px #54b59c;
  }
  #content .head .sub-nav ul > li:nth-child(even) > a {
    border-left: 0;
  }
  #content .head.policy .mv {
    background-image: none;
  }
  #content .head.policy .sub-nav ul > li > a {
    width: 100%;
  }
  #content .head.action .mv {
    background-image: none;
  }
  #content .head.action .sub-nav ul > li > a {
    width: 100%;
  }
  #content .head.business .mv {
    background-image: none;
  }
  #content .head.business .sub-nav ul > li > a {
    width: 100%;
  }
  #content .body > section {
    padding: 30px 0;
  }
  #content .body > section h3 {
    font-size: 1.9rem;
  }
  #content .body > section h3 span {
    padding-bottom: 20px;
    font-size: 6rem;
  }
  #content .body > section#greeting {
    margin-top: 0;
    padding: 0 0 60px;
    background: #e9ecf0;
  }
  #content .body > section#greeting > .content > div {
    width: auto;
    margin: 50px 0 0 0;
    transform: none;
  }
  #content .body > section#greeting > .content > div .greeting {
    position: relative;
    margin: 0 -15px;
  }
  #content .body > section#greeting > .content > div .greeting h3 {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    padding-right: 15px;
    text-align: right;
    transform: translate(0, -50%);
  }
  #content .body > section#greeting > .content > div .greeting h3 span {
    color: #595757;
  }
  #content .body > section#greeting > .content > div .text {
    position: relative;
    margin-top: -20px;
    padding: 25px 20px;
    border-radius: 10px;
    letter-spacing: 0;
    line-height: 2;
  }
  #content .body > section#greeting > .content > div .text > p {
    margin: 30px 0 0;
  }
  #content .body > section#greeting > .content > div .text > p:nth-of-type(1) {
    margin-top: 0;
  }
  #content .body > section#greeting > .content > div .text > div {
    margin-top: 40px;
    text-align: right;
  }
  #content .body > section#greeting > .content > div .text > div > p {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 500;
  }
  #content .body > section#greeting > .content > div .text > div > h4 {
    margin: -5px 0 0;
    font-size: 1.4rem;
    font-weight: 500;
  }
  #content .body > section#greeting > .content > div .text > div > h4 span {
    margin-left: 10px;
    font-size: 1.8rem;
  }
  
  
  
  #content .body > section#philosophy p,
  #content .body > section#vision p{
    margin: 25px 0 0;
    font-size: 1.9rem;
  }
  #content .body > section#philosophy p span,
  #content .body > section#vision p span{
    font-size: 2.25rem;
  }
  #content .body > section#philosophy p:nth-of-type(1),
  #content .body > section#vision p:nth-of-type(1){
    margin-top: 40px;
  }
  
  #content .body > section#vision ul{
    width: calc(100% - 40px);
    padding: 0 0 0 20px;
    margin: 20px auto;
  }
  #content .body > section#vision li{
    font-size: 1.5rem
  }
  
  
  
  
  
  
  
  
  #content .body > section#history > .content {
    padding: 0;
  }
  #content .body > section#history h3 {
    text-align: center;
  }
  #content .body > section#history ul {
    list-style: none;
    margin: 0;
    padding: 0;
    background: none;
  }
  #content .body > section#history ul li {
    flex-wrap: wrap;
    margin-top: 30px;
  }
  #content .body > section#history ul li > p {
    margin: 0;
  }
  #content .body > section#history ul li > p.year {
    width: 100%;
    flex-shrink: 0;
  }
  #content .body > section#history ul li > p.year span {
    display: block;
    width: 65px;
    height: 65px;
    margin: 0 auto;
    border-radius: 33px;
    font-size: 2rem;
    line-height: 65px;
  }
  #content .body > section#history ul li > p.month {
    width: 60px;
    height: 24px;
    margin: 20px 0 0;
    font-size: 1.5rem;
  }
  #content .body > section#history ul li > p.text {
    flex: 1;
    margin: 20px 0 0 15px;
  }
  #content .body > section#history ul li.noyear {
    margin-top: 0;
  }
  #content .body > section#history ul li.noyear > p.month {
    margin-left: 0;
  }
  #content .body > section#history ul li.noyear.first {
    margin-top: 0;
  }
  #content .body > section#outline .col2 {
    margin-top: 20px;
    padding: 0;
  }
  #content .body > section#outline .col2 > div ul li {
    display: block;
    text-align: center;
  }
  #content .body > section#outline .col2 > div ul li > p {
    padding: 10px 0;
  }
  #content .body > section#outline .col2 > div ul li > p:nth-of-type(1) {
    position: relative;
    display: block;
    width: auto;
    border-bottom: none;
    font-size: 1.7rem;
  }
  #content .body > section#outline .col2 > div ul li > p:nth-of-type(1)::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 75px;
    height: 2px;
    background: #54b59c;
    transform: translate(-50%, 0);
  }
  #content .body > section#outline .col2 > div ul li > p:nth-of-type(2) {
    flex: 1;
    margin-left: 0;
    padding: 10px 0 20px;
    border-bottom: none;
  }
  #content .body > section#outline .col2 > div ul li > p:nth-of-type(2) span {
    color: #007d66;
    font-weight: 500;
  }
  #content .body > section#outline .col2 > div ul li.l p:nth-of-type(2) {
    display: inline-block;
    text-align: left;
  }
  #content .body > section#outline .col2 > div:nth-of-type(1) {
    width: auto;
  }
  #content .body > section#outline .col2 > div:nth-of-type(2) {
    width: auto;
  }
  #content .body > section#outline .img {
    margin: 40px -15px 0;
  }
  #content .body > section#access .col2 {
    margin-top: 40px;
    padding: 0;
  }
  #content .body > section#access .col2 > div:nth-of-type(1) {
    width: auto;
  }
  #content .body > section#access .col2 > div:nth-of-type(1) > div {
    position: relative;
    overflow: hidden;
    padding-bottom: 90%;
  }
  #content .body > section#access .col2 > div:nth-of-type(1) > div iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
  }
  #content .body > section#access .col2 > div:nth-of-type(2) {
    padding: 10px 0 0;
  }
  #content .body > section#access .col2 > div:nth-of-type(2) h4 {
    padding-left: 0;
    font-size: 1.7rem;
  }
  #content .body > section#access .col2 > div:nth-of-type(2) > p {
    padding-left: 0;
  }
  #content .body > section#access .col2 > div:nth-of-type(2) .map {
    padding-left: 0;
  }
  #content .body > section#access .col2 > div:nth-of-type(2) .map p a {
    font-size: 1.6rem;
  }
  #content .body > section#access .col2 > div:nth-of-type(2) .map p a::before {
    width: 19px;
    height: 27px;
  }
  #content .body > section#access .col2 > div:nth-of-type(2) .img {
    display: flex;
    flwx-wrap: wrap;
    margin: 20px 0 0 -12px;
  }
  #content .body > section#access .col2 > div:nth-of-type(2) .img > p {
    width: 180px;
    margin: 0 0 0 12px;
  }
  #content .body > section#staff .col2 {
    margin-top: 60px;
  }
  #content .body > section#staff .col2 > div:nth-of-type(1) {
    text-align: center;
  }
  #content .body > section#staff .col2 > div:nth-of-type(1) img {
    width: 300px;
  }
  #content .body > section#staff .col2 > div:nth-of-type(2) {
    padding: 20px 0 0 0;
  }
  #content .body > section#staff .col2:nth-of-type(1) {
    margin-top: 0;
  }
  #content .body > section#staff .col2:nth-of-type(even) > div:nth-of-type(1) {
    text-align: center;
  }
  #content .body > section#staff .col2:nth-of-type(even) > div:nth-of-type(2) {
    padding-right: 0;
  }
  #content .body > section.policy h3 {
    margin-top: 20px;
  }
  #content .body > section.policy h3 span {
    display: block;
    margin-bottom: 0;
    padding: 0 0 20px;
    font-size: 2rem;
    border-bottom: solid 2px #54b59c;
  }
  #content .body > section.policy h3 + p {
    font-weight: 400;
  }
  #content .body > section.policy p {
    line-height: 1.6;
  }
  #content .body > section.policy#privacy .content .content {
    padding: 0;
  }
  #content .body > section.policy#privacy .article > div {
    margin-top: 25px;
  }
  #content .body > section.policy#privacy .article > div h4 {
    font-size: 1.7rem;
  }
  #content .body > section.policy#privacy .article > div h4 span {
    vertical-align: baseline;
  }
  #content .body > section.policy#privacy .article > div h4 .num {
    display: inline-block;
    width: 25px;
    height: 25px;
    margin-right: 8px;
    font-size: 1.6rem;
    line-height: 25px;
  }
  #content .body > section.policy#privacy .article > div h4 .note {
    display: block;
    margin: 10px 0 0 0;
  }
  #content .body > section.policy#privacy .article > div h4 .note .num {
    font-size: 1.4rem;
  }
  #content .body > section.policy#privacy .article > div > p {
    font-size: 1.5rem;
  }
  #content .body > section.policy#privacy .article > div .title {
    width: 220px;
    height: 30px;
    margin-top: 40px;
    border: solid 1px #54b59c;
    font-size: 1.5rem;
    line-height: 28px;
    text-align: center;
  }
  #content .body > section.policy#privacy .article > div .url {
    margin: 0 0 40px;
  }
  #content .body > section.policy#privacy .article > div .url li {
    display: block;
  }
  #content .body > section.policy#privacy .article > div .url li > p:nth-of-type(1) {
    width: auto;
  }
  #content .body > section.policy#privacy .article > div ol {
    list-style: none;
    margin: 0 0 40px;
    padding: 0;
  }
  #content .body > section.policy#privacy .article > div ol li {
    display: flex;
  }
  #content .body > section.policy#privacy .article > div ol li > p {
    margin: 0;
    font-size: 1.5rem;
  }
  #content .body > section.policy#privacy .article > div ol li > p:nth-of-type(1) {
    flex-shrink: 0;
    padding-right: 8px;
  }
  #content .body > section.policy#privacy .article > div .info .title {
    width: 160px;
  }
  #content .body > section.policy#privacy .article > div .info ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  #content .body > section.policy#privacy .article > div .info ul li {
    display: block;
  }
  #content .body > section.policy#privacy .article > div .info ul li > p:nth-of-type(1) {
    width: auto;
    padding-left: 0;
  }
  #content .body > section.policy#solicitation h3 {
    padding: 0 0 0 8px;
    border-left: solid 3px #54b59c;
    text-align: left;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.6;
  }
  #content .body > section.policy#solicitation ul {
    margin: 0 0 30px 0;
    padding: 0 0 0 18px;
  }
  #content .body > section.policy#solicitation ul li {
    margin-top: 10px;
    font-size: 1.5rem;
  }
  #content .body > section.policy#solicitation .article > p {
    margin: 60px 0 0;
    font-size: 1.5rem;
  }
  #content .body > section.policy#solicitation .article > p span {
    font-size: 1.7rem;
  }
  #content .body > section.policy#fiduciary .article {
    margin-top: 30px;
  }
  #content .body > section.policy#fiduciary .article > div {
    margin-top: 65px;
  }
  #content .body > section.policy#fiduciary .article > div h4 {
    position: relative;
    height: auto;
    padding: 5px 8px;
    border: solid 1px #54b59c;
    color: #007d66;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.4;
  }
  #content .body > section.policy#fiduciary .article > div h4 span {
    position: absolute;
    top: -35px;
    left: 0;
    width: 70px;
    height: 30px;
    margin-right: 0;
    line-height: 30px;
  }
  #content .body > section.policy#fiduciary .article > div > p {
    margin-top: 8px;
    padding: 0;
  }
  #content .body > section.policy#fiduciary .article > div ol {
    padding: 0;
  }
  #content .body > section.policy#fiduciary .article > div ol li {
    display: flex;
  }
  #content .body > section.policy#fiduciary .article > div ol li > p {
    margin: 0;
  }
  #content .body > section.policy#fiduciary .article > div ol li > p:nth-of-type(1) {
    margin-right: 5px;
  }
  #content .body > section.policy#fiduciary .article > p {
    margin: 40px 0 0;
  }
  #content .body > section.policy#fiduciary .article > p span {
    font-size: 1.8rem;
  }
  #content .body > section.policy#authority h4 span {
    display: inline-block;
    border-bottom: solid 2px #54b59c;
    font-size: 1.8rem;
  }
  #content .body > section.policy#authority .toriatsukai {
    margin-top: 60px;
  }
  #content .body > section.policy#authority .toriatsukai .col2 {
    margin-top: 15px;
  }
  #content .body > section.policy#authority .toriatsukai .col2 > div:nth-of-type(1) {
    padding-right: 0;
  }
  #content .body > section.policy#authority .toriatsukai .col2 > div:nth-of-type(2) {
    padding-left: 0;
  }
  #content .body > section.policy#authority .toriatsukai .col2 > div ul {
    margin: 0;
    margin: -5px 0 0;
    padding: 0 0 0 20px;
  }
  #content .body > section.policy#authority .toriatsukai .col2 > div ul li {
    margin-top: 10px;
  }
  #content .body > section.policy#authority .article {
    margin: 40px -15px 0;
    padding: 30px 15px;
    border: solid 1px #54b59c;
    border-radius: 0;
  }
  #content .body > section.policy#authority .article h4 span {
    font-size: 2rem;
  }
  #content .body > section.policy#authority .article > ol, #content .body > section.policy#authority .article > ul {
    list-style: none;
    margin: 40px 0 0;
    padding: 0;
  }
  #content .body > section.policy#authority .article > ol li, #content .body > section.policy#authority .article > ul li {
    margin-top: 30px;
  }
  #content .body > section.policy#authority .article > ol li h5, #content .body > section.policy#authority .article > ul li h5 {
    font-size: 1.7rem;
  }
  #content .body > section.policy#authority .article > ol li p, #content .body > section.policy#authority .article > ul li p {
    font-size: 1.5rem;
  }
  #content .body > section.policy#authority .article > div {
    margin-top: 30px;
    padding: 0;
  }
  #content .body > section.policy#authority .article > div > p {
    font-size: 1.5rem;
  }
  #content .body > section.policy#authority .article > div > ul {
    list-style: none;
    margin: 0 0 30px 0;
    padding: 0;
  }
  #content .body > section.policy#authority .article > div > ul > li {
    display: block;
    margin-top: 0;
    border-right: none;
    border-bottom: none;
    background: none;
    text-align: center;
  }
  #content .body > section.policy#authority .article > div > ul > li > p {
    display: block;
    width: auto;
    margin: 20px 0 0;
  }
  #content .body > section.policy#authority .article > div > ul > li > div > p {
    border-top: none;
    border-left: none;
  }
  #content .body > section.policy#authority .article > div > ul > li > div > p:nth-of-type(1) {
    margin-top: 10px;
    color: #007d66;
    font-size: 1.5rem;
  }
  #content .body > section.policy#authority .article > div > ul > li > div > p:nth-of-type(2) {
    margin-top: 5px;
  }
  #content .body > section.policy#authority .article > div > ul > li > div:nth-of-type(1) {
    width: auto;
  }
  #content .body > section.policy#authority .article2 {
    margin-top: 40px;
    padding: 0;
  }
  #content .body > section.policy#authority .article2 > div {
    padding: 15px;
  }
  #content .body > section.policy#authority .article2 > div h4 {
    font-size: 1.7rem;
  }
  #content .body > section.policy#authority .article2 > div p {
    margin: 10px 0 0;
    letter-spacing: 0;
    font-size: 1.5rem;
  }
  #content .body > section#contact > .content > p {
    margin-top: 40px;
    text-align: left;
    font-size: 1.5rem;
  }
  #content .body > section#contact .tel .img {
    margin: 25px 0 0;
  }
  #content .body > section#contact .tel ul {
    list-style: none;
    display: block;
    width: 290px;
    margin: 0 auto;
    padding: 0;
  }
  #content .body > section#contact .tel ul li {
    margin-top: 30px;
  }
  #content .body > section#contact .tel ul li > p {
    margin: 0;
  }
  #content .body > section#contact .tel ul li > p:nth-of-type(2) a {
    pointer-events: auto;
  }
  #content .body > section#contact .mail {
    margin-top: 80px;
    text-align: center;
  }
  #content .body > section#contact .mail h3 {
    margin: 20px 0 20px;
  }
  #content .body > section#contact .mail .text > p {
    margin: 20px 0 0;
    font-size: 1.5rem;
    text-align: left;
  }
  #content .body > section#contact .mail > ul {
    margin: 20px 0 0;
  }
  #content .body > section#contact .mail > ul li {
    width: 33%;
    height: 45px;
    margin: 0;
    border-right: none;
    font-size: 1.44rem;
    line-height: 43px;
    text-align: center;
  }
  #content .body > section#contact .mail > ul li:nth-last-child(1) {
    border-right: solid 1px #54b59c;
  }
  #content .body > section#contact .mail .form-box {
    margin: 0 -15px;
    padding: 20px 0 0;
    text-align: left;
  }
  #content .body > section#contact .mail .form-box form ul li {
    display: block;
    border-right: none;
  }
  #content .body > section#contact .mail .form-box form ul li > p {
    margin: 0;
    border-left: none;
    font-size: 1.7rem;
  }
  #content .body > section#contact .mail .form-box form ul li > p:nth-of-type(1) {
    display: block;
    width: auto;
    padding: 5px 15px;
    background: #fffeee;
  }
  #content .body > section#contact .mail .form-box form ul li > p:nth-of-type(2) {
    padding: 10px 15px;
    border-top: solid 1px #54b59c;
  }
  #content .body > section#contact .mail .form-box form ul li > p:nth-of-type(2) input[type=text].short, #content .body > section#contact .mail .form-box form ul li > p:nth-of-type(2) input[type=tel].short, #content .body > section#contact .mail .form-box form ul li > p:nth-of-type(2) input[type=email].short {
    width: 100%;
  }
  #content .body > section#contact .mail .form-box form ul li > p:nth-of-type(2) input[type=text].sshort, #content .body > section#contact .mail .form-box form ul li > p:nth-of-type(2) input[type=tel].sshort, #content .body > section#contact .mail .form-box form ul li > p:nth-of-type(2) input[type=email].sshort {
    width: 100%;
  }
  #content .body > section#contact .mail .form-box form ul li > p:nth-of-type(2) textarea {
    height: 270px;
  }
  #content .body > section#contact .mail .form-box form ul li > p:nth-of-type(2) label.agree {
    display: inline-block;
    margin-top: 5px;
  }
  #content .body > section#contact .mail .form-box form ul li > p:nth-of-type(2) label.agree input {
    display: block;
    margin: 0 auto;
  }
  #content .body > section#contact .mail .form-box form ul li > p:nth-of-type(2) span {
    font-weight: 700;
  }
  #content .body > section#contact .mail .form-box form ul li.required > p:nth-of-type(1)::after {
    content: "必須";
    display: inline-block;
    width: 37px;
    height: 18px;
    margin-left: 10px;
    background: #54b59c;
    color: #fff;
    font-size: 1.3rem;
    line-height: 18px;
    text-align: center;
    vertical-align: middle;
  }
  #content .body > section#contact .mail .form-box form .button {
    margin-top: 30px;
  }
  #content .body > section#contact .mail .form-box form .button input {
    width: 200px;
    height: 50px;
    line-height: 48px;
  }
  #content .body > section#sdgs {
    padding-bottom: 0;
  }
  #content .body > section#sdgs .intro {
    padding-bottom: 45px;
  }
  #content .body > section#sdgs .intro p {
    margin: 20px 0 0;
    font-size: 1.6rem;
    line-height: 2;
  }
  #content .body > section#sdgs .intro .img {
    margin-top: 30px;
  }
  #content .body > section#sdgs .intro .mie {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 60px;
    padding: 35px 15px;
    border: solid 1px #54b59c;
    border-radius: 15px;
  }
  #content .body > section#sdgs .intro .mie > div:nth-of-type(1) {
    order: 2;
    width: 210px;
    margin-top: 15px;
  }
  #content .body > section#sdgs .intro .mie > div:nth-of-type(2) {
    order: 1;
    padding-left: 0;
  }
  #content .body > section#sdgs .intro .mie > div:nth-of-type(2) p {
    margin: 0;
  }
  #content .body > section#sdgs .intro .mie > div:nth-of-type(2) p:nth-of-type(1) {
    font-size: 1.9rem;
    text-align: center;
  }
  #content .body > section#sdgs .intro .mie > div:nth-of-type(2) p:nth-of-type(1) span {
    display: inline-block;
    position: relative;
  }
  #content .body > section#sdgs .intro .mie > div:nth-of-type(2) p:nth-of-type(1) span::before {
    content: "";
    position: absolute;
    bottom: 6px;
    height: 12px;
  }
  #content .body > section#sdgs .intro .mie > div:nth-of-type(2) p:nth-of-type(2) {
    font-size: 1.5rem;
  }
  #content .body > section#sdgs .action {
    padding: 40px 0 80px;
    border-top: solid 1px #f0eccd;
    background: #fffef5;
  }
  #content .body > section#sdgs .action h3 {
    font-size: 1.8rem;
    font-weight: 700;
  }
  #content .body > section#sdgs .action h3 span {
    padding: 15px 0 0;
    color: #007d66;
    font-size: 2.1rem;
    font-weight: 700;
  }
  #content .body > section#sdgs .action ul {
    display: block;
  }
  #content .body > section#sdgs .action ul li {
    width: auto;
    margin-top: 50px;
  }
  #content .body > section#sdgs .action ul li > div:nth-of-type(1) > div:nth-of-type(1) {
    width: 100px;
  }
  #content .body > section#sdgs .action ul li > div:nth-of-type(1) > div:nth-of-type(2) {
    flex: 1;
    padding-left: 10px;
  }
  #content .body > section#sdgs .action ul li > div:nth-of-type(1) > div:nth-of-type(2) h4 {
    font-size: 1.7rem;
    line-height: 1.3;
  }
  #content .body > section#sdgs .action ul li > div:nth-of-type(1) > div:nth-of-type(2) p {
    margin-top: 8px;
  }
  #content .body > section#sdgs .action ul li > div:nth-of-type(2) {
    margin-top: 20px;
    text-align: center;
  }
  #content .body > section#sdgs .action ul li > div:nth-of-type(2) img {
    width: 330px;
  }
  #content .body > section#kenkou h3 {
    font-size: 1.8rem;
    font-weight: 700;
  }
  #content .body > section#kenkou h3 span {
    padding: 15px 0 0;
    color: #007d66;
    font-size: 2.1rem;
    font-weight: 700;
  }
  #content .body > section#kenkou .intro {
    padding: 0 0 40px;
  }
  #content .body > section#kenkou .intro > p {
    margin: 40px 0 0;
    font-size: 1.6rem;
    font-weight: 500;
  }
  #content .body > section#kenkou .intro > div {
    margin-top: 60px;
    padding: 0;
  }
  #content .body > section#kenkou .intro > div > h4 {
    top: -9px;
    padding: 0 5px;
    font-size: 1.8rem;
    white-space: nowrap;
  }
  #content .body > section#kenkou .intro > div > div {
    display: block;
    align-items: center;
    padding: 30px 25px;
    border: solid 1px #54b59c;
    border-radius: 20px;
  }
  #content .body > section#kenkou .intro > div > div > div:nth-of-type(1) {
    flex-shrink: 0;
    width: auto;
    text-align: center;
  }
  #content .body > section#kenkou .intro > div > div > div:nth-of-type(1) img {
    width: 193px;
  }
  #content .body > section#kenkou .intro > div > div > div:nth-of-type(2) {
    margin-top: 30px;
    padding-left: 0;
  }
  #content .body > section#kenkou .intro > div > div > div:nth-of-type(2) > p {
    font-size: 1.5rem;
    line-height: 2;
  }
  #content .body > section#kenkou .intro > div > div > div:nth-of-type(2) > p:nth-last-of-type(1) {
    margin: 20px 0 0;
    font-size: 1.3rem;
  }
  #content .body > section#kenkou .action {
    padding: 20px 0;
  }
  #content .body > section#kenkou .action .col2 {
    margin-top: 40px;
  }
  #content .body > section#kenkou .action .col2 > div:nth-of-type(1) {
    width: auto;
  }
  #content .body > section#kenkou .action .col2 > div:nth-of-type(1) ul li {
    margin-top: 20px;
    padding-left: 39px;
    font-size: 1.6rem;
    font-weight: 500;
  }
  #content .body > section#kenkou .action .col2 > div:nth-of-type(1) ul li::before {
    content: url(../img/kenkou-icon.png);
    position: absolute;
    left: 0;
    top: 6px;
  }
  #content .body > section#kenkou .action .col2 > div:nth-of-type(1) ul li:nth-child(1) {
    margin-top: 0;
  }
  #content .body > section#kenkou .action .col2 > div:nth-of-type(2) {
    margin-top: 30px;
    padding-left: 0;
  }
  #content .body > section#voice .col2 {
    margin: 110px -15px 0;
    border-radius: 0;
    background: #f6fbf9;
    transform: translate(0, 0);
  }
  #content .body > section#voice .col2 > div:nth-of-type(1) {
    width: 210px;
    transform: translate(15px, -40px);
  }
  #content .body > section#voice .col2 > div:nth-of-type(2) {
    padding: 0 15px 40px;
  }
  #content .body > section#voice .col2 > div:nth-of-type(2) h3 {
    margin-top: -20px;
    font-size: 2rem;
  }
  #content .body > section#voice .col2 > div:nth-of-type(2) h3.n {
    letter-spacing: -1px;
  }
  #content .body > section#voice .col2 > div:nth-of-type(2) .company {
    margin: 15px 0 0;
  }
  #content .body > section#voice .col2 > div:nth-of-type(2) .name {
    margin: 10px 0 0;
  }
  #content .body > section#voice .col2 > div:nth-of-type(2) > div p {
    margin: 20px 0 0;
  }
  #content .body > section#voice .col2 > div:nth-of-type(2) > div .homepage {
    margin: 30px 0 0 0;
  }
  #content .body > section#voice .col2 > div:nth-of-type(2) > div .homepage a {
    margin: 0 auto;
  }
  #content .body > section.business .intro {
    padding: 10px 0 40px;
  }
  #content .body > section.business .intro .col2 {
    display: flex;
    flex-direction: column;
  }
  #content .body > section.business .intro .col2 > div:nth-of-type(1) {
    order: 2;
    margin-top: 20px;
  }
  #content .body > section.business .intro .col2 > div:nth-of-type(1) h3 {
    font-size: 2rem;
    line-height: 1.8;
  }
  #content .body > section.business .intro .col2 > div:nth-of-type(1) p {
    margin: 20px 0 0;
    padding-right: 0;
    font-size: 1.6rem;
  }
  #content .body > section.business .intro .col2 > div:nth-of-type(2) {
    order: 1;
    height: auto;
    margin: 0 -15px;
  }
  #content .body > section.business .intro .col2 > div:nth-of-type(2) img {
    position: static;
    width: auto;
    max-width: 100%;
  }
  #content .body > section.business .service {
    padding: 25px 0 40px;
  }
  #content .body > section.business .service h3 {
    padding-bottom: 22px;
    color: #007d66;
    font-size: 2.2rem;
  }
  #content .body > section.business .service h3::after {
    content: "";
    width: 60px;
    height: 2px;
  }
  #content .body > section.business .service ul {
    display: block;
    margin: 20px 0 0;
  }
  #content .body > section.business .service ul li {
    margin-top: 20px;
    width: auto;
    padding: 20px;
    border: solid 3px #54b59c;
    border-radius: 10px;
    background: #fff;
  }
  #content .body > section.business .service ul li h4 {
    margin: 0;
    text-align: center;
  }
  #content .body > section.business .service ul li h4 > span {
    font-size: 1.9rem;
  }
  #content .body > section.business .service ul li p {
    font-size: 1.5rem;
  }
  #content .body > section.business .service ul + div {
    margin-top: 25px;
    padding: 5px 10px;
    font-size: 1.5rem;
    text-align: left;
  }
  #content .body > section.business .service ul + div p {
    margin: 0;
  }
  #content .body > section.business .hoken {
    padding-top: 60px;
  }
  #content .body > section.business .hoken .content {
    display: block;
  }
  #content .body > section.business .hoken .content h3 {
    text-align: center;
  }
  #content .body > section.business .hoken .content h3 span {
    padding-bottom: 15px;
    border-bottom: solid 3px #54b59c;
    font-size: 2.2rem;
    font-weight: 700;
  }
  #content .body > section.business .hoken .content ul {
    display: block;
    margin: 0;
    padding: 0;
  }
  #content .body > section.business .hoken .content ul li {
    width: auto;
    margin: 30px 0 0;
    text-align: center;
  }
  #content .body > section.business .hoken .content ul li img {
    width: 310px;
  }
  #content .body > section#reason .content {
    padding: 0 15px;
  }
  #content .body > section#reason .content .point {
    margin-top: 40px;
    border-radius: 0;
    background: none;
    transform: translate(0, 0);
  }
  #content .body > section#reason .content .point .col2 {
    padding: 0;
    border: none;
    border-radius: 10px;
    background: none;
    transform: translate(0, 0);
  }
  #content .body > section#reason .content .point .col2 > div:nth-of-type(1) {
    width: auto;
    text-align: center;
  }
  #content .body > section#reason .content .point .col2 > div:nth-of-type(1) img {
    width: 168px;
  }
  #content .body > section#reason .content .point .col2 > div:nth-of-type(2) {
    padding: 5px 0 0;
  }
  #content .body > section#reason .content .point .col2 > div:nth-of-type(2) > p {
    position: relative;
    font-size: 1.3rem;
  }
  #content .body > section#reason .content .point .col2 > div:nth-of-type(2) h3 {
    color: #595757;
    font-size: 1.98rem;
  }
  #content .body > section#reason .content .point .col2 > div:nth-of-type(2) h3 span {
    font-size: 1.98rem;
  }
  #content .body > section#reason .content .point .col2 > div:nth-of-type(2) > div p {
    font-size: 1.5rem;
  }
  #content .body > section#reason .content .point:nth-of-type(1) {
    margin-top: 60px;
  }
}
@media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 1.25dppx), (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}



/*esto追記*/
#content .body > section#contact .mail.thanks_mail{
  margin-top: 0;
}

#content .body > section#contact .tel{
  margin: 80px 0 0;
}

.form_back{
  display: block;
  width: 500px;
  max-width: 100%;
  height: 60px;
  border: solid 1px #c9caca;
  background: none;
  line-height: 58px;
  margin: 0 auto;
}

.url_top_txt{
  margin: -25px 0 15px
}


@media (max-width:840px) {
  #content .body > section#contact .mail > ul.thanks_ul{
    margin: 40px 0;
  }

#content .body > section#contact .mail.thanks_mail{
  margin-top:100px;
  margin-bottom: 50px;
}

#content .body > section#contact .tel{
  margin: 80px 0 30px;
}  
  
  
  .form_back{
    width: 200px;
    height: 50px;
    line-height: 48px;
  }
  
.url_top_txt{
  margin:0 0 5px
}
  
  
  
}/*max-width:768px*/








#content .head.news .mv {
    background-image: url(../img/news-mv.jpg);
}


#content > section[id^=home-]#home-news {
  padding:10px 0 180px;
}
#content > section[id^=home-]#home-news h2 {
  text-align: center;
  transform: translate(0, -50px);
}

section#news {
  padding:100px 0 100px !important;
}

#content > section[id^=home-]#home-news ul,
section#news ul{
  
  width: calc(100% - 40px);
  max-width: 763px;
  margin:-20px auto 40px;
  list-style: none;
  padding: 0 !important;
}

#content > section[id^=home-]#home-news li,
section#news li{
	display:-webkit-box;
	display:-ms-flexbox;
	display: -webkit-flex;
	display:flex;
	flex-direction: row;
	flex-wrap: wrap;
	-webkit-box-pack:justify;
	-ms-flex-pack:justify;
	-webkit-justify-content:flex-start;
	justify-content:flex-start;
	align-items: flex-start;
  padding: 15px 0;
  border-bottom: 2px dotted #54B59C;
  list-style: none;
}

#content > section[id^=home-]#home-news time,
section#news  time{
	width: 110px;
  color: #54b59c;
}
#content > section[id^=home-]#home-news li a,
section#news li a{
	width: calc(100% - 110px);
  color: #000;
  transition:0s;
}
#content > section[id^=home-]#home-news li a:hover,
section#news li a:hover{
  color:darkorange;
  text-decoration: none;
}
#content > section[id^=home-]#home-news .btn,
section#news_single .btn{
  width: 260px;
  border-radius: 50px;
  display: block;
  margin: 0 auto;
  height: 55px;
  text-align: center;
  color: #fff;
  background: #54b59c;
  position: relative;
  line-height: 53px;
  font-weight: 500;
}
#content > section[id^=home-]#home-news .btn:before,
section#news_single .btn:before{
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  top:40%;
right: 30px;
-webkit-transform: translate(0%, -50%); /* Safari用 */
transform: translate(0%, -50%);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#content > section[id^=home-]#home-news .btn:hover,
section#news_single .btn:hover{
  text-decoration: none;
  background: darkorange;
}


section#news_single{
  padding:100px 0 100px !important;
  max-width: 1080px;
  width: calc(100% - 40px);
  margin: 0 auto;
}

section#news_single .news_ttl{
  border-top: 1px solid #B7DBCE;
  border-bottom: 1px solid #B7DBCE;
  padding: 20px 0;
  margin: 0 0 50px;
}

section#news_single .news_ttl time{
  color: #fff;
  width: fit-content;
  background-color: #54B59C;
  padding:3px 10px;
  border-radius: 5px;
  margin: 0 0 10px;
  display: block;
}

section#news_single .news_ttl h3{
  font-size: 2.6rem;
  line-height: 1.4em;
  color: #000;
}

section#news_single .news_single_box{
  margin: 0 auto 130px;
}


section#news_single .news_single_box p{
  line-height: 2.0em;
  margin: 0 0 25px;
}
section#news_single .news_single_box p.red{
  line-height: 2.0em;
  margin: 55px 0 25px;
  color: #C30D23;
}

section#news_single .news_single_box .pdf{
  display:-webkit-box;
  display:-ms-flexbox;
  display: -webkit-flex;
  display:flex;
  flex-direction: row;
  flex-wrap: wrap;
  -webkit-box-pack:justify;
  -ms-flex-pack:justify;
  -webkit-justify-content:space-between;
  justify-content:space-between;
  align-items: flex-start;
}
section#news_single .news_single_box .pdf img{
  width: calc((100% - 50px)/2);
  max-width: auto;
}

section#news_single .flex{

  display:-webkit-box;
  display:-ms-flexbox;
  display: -webkit-flex;
  display:flex;
  flex-direction: row;
  flex-wrap: wrap;
  -webkit-box-pack:justify;
  -ms-flex-pack:justify;
  -webkit-justify-content:space-between;
  justify-content:space-between;
  align-items:center;
  margin: 0 auto 50px;
}

section#news_single .flex .logomark{
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
  display: block;
  width: 300px;
  height: 330px;
  background: url("../img/nintei_logo.svg") center center no-repeat;
  background-size: contain;
}

section#news_single .flex div{
  width: calc(100% - 350px);
}


section#news .pager{
  display: block;
  margin: 50px auto 0;
  width: 300px;
  height: 60px;
  border-radius: 50px;
  background-color:#54b59c;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  line-height: 58px;
}

section#news .pager:hover{
  text-decoration: none;
  background-color: #007d66;
}


@media (max-width:840px) {


  #content > section[id^=home-]#home-news {
    padding:120px 0 100px;
  }
  #content > section[id^=home-]#home-news h2 {
    text-align: center;
    transform: translate(0, -50px);
  }

  #content > section[id^=home-]#home-news ul {
  width: calc(100% - 40px);
    max-width: 763px;
    margin:-30px auto 40px;
  }

  #content > section[id^=home-]#home-news li,
  section#news li{
    display:block;
    padding: 15px 0;
    border-bottom: 1px solid #54B59C;
  }

  #content > section[id^=home-]#home-news li a,
  section#news li a{
    width: 100%;
    color: #000;
    transition:0s;
    display: block;
  }

section#news_single .news_ttl h3{
  font-size: 2.2rem;
  line-height: 1.5em;
  color: #000;
}
  
section#news_single .news_single_box .pdf img{
  width: calc((100% - 20px)/2);
  max-width: auto;
} 
  
  
  
section#news_single .flex{

  display:-webkit-box;
  display:-ms-flexbox;
  display: -webkit-flex;
  display:flex;
  flex-direction: column;
  flex-wrap: wrap;
  -webkit-box-pack:justify;
  -ms-flex-pack:justify;
  -webkit-justify-content:space-between;
  justify-content:space-between;
  align-items:center;
  margin: 0 auto 50px;
}

section#news_single .flex .logomark{
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
  display: block;
  width: 200px;
  height:200px;
  background: url("../img/nintei_logo.svg") center center no-repeat;
  background-size: contain;
  margin: 0 auto 50px;
}

section#news_single .flex div{
  width:100%;
}  
  
  
}/*max-width:768px*/


/*#sdgs2024*/

.sdgs_kenkou {
  	display:-webkit-box;
	display:-ms-flexbox;
	display: -webkit-flex;
	display:flex;
	flex-direction: column;
	flex-wrap: wrap;
	-webkit-box-pack:justify;
	-ms-flex-pack:justify;
	-webkit-justify-content:center;
	justify-content:center;
	align-items: center;
}
.sdgs_kenkou img{
  max-width: 350px

}



/*index_recruit*************************************/


.index_recruit{
  width: 100%;
  margin: 0 auto;
  background: url("../img/index_recruit.jpg") center left no-repeat;
  height: 350px;
  border-bottom: 1px solid #dcdddd;
}


.index_recruit br{
  display: none
}

.index_recruit .box{
  height: 350px;
  padding: 40px;
  max-width: 50%;
  margin: 0 0 0 auto;
  background: linear-gradient(to right,rgba(255,255,250,0),rgba(255,255,255,1));
}

.index_recruit .box .item{
  height: 100%;
  max-width:530px;
  text-align: center;
  display:-webkit-box;
  display:-ms-flexbox;
  display: -webkit-flex;
  display:flex;
  flex-direction: column;
  flex-wrap: wrap;
  -webkit-box-pack:justify;
  -ms-flex-pack:justify;
  -webkit-justify-content: center;
  justify-content: center;
  align-items: center;
}

.index_recruit .box .txt01{
  margin: 0 !important;
  font: 1.9rem/1.6em "Noto Sans JP", sans-serif !important;
  font-weight:500 !important;
}

.index_recruit .box .txt02{
  margin: 0  auto 15px!important;
  font: 1.8rem/1.6em "Noto Sans JP", sans-serif !important;
  font-weight:500 !important;
  padding: 0 0 20px !important;
  position: relative;
}


.index_recruit .box .txt02:before{  
  position: absolute;
  content: "";
  top: auto;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0%); /* Safari用 */
  transform: translate(-50%, 0%);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-top: 17px solid #c30d23;
  border-bottom: 0;
}


.index_recruit .flex{
  width: 100%;
    display:-webkit-box;
  display:-ms-flexbox;
  display: -webkit-flex;
  display:flex;
  flex-direction: row;
  flex-wrap: wrap;
  -webkit-box-pack:justify;
  -ms-flex-pack:justify;
  -webkit-justify-content:space-between;
  justify-content:space-between;
  align-items: flex-start;
}

.index_recruit .flex a{
  display: block;
  width: calc((100% - 20px)/2);
  max-width: 240px;
  text-align: center;
  color: #fff;
  background-color: #ee87b4;
  height: 56px;
  border-radius: 50px;
  font: 1.8rem/54px "Noto Sans JP", sans-serif !important;
  font-weight: 500 !important;
  position: relative;
  transition: .3s;
}

.index_recruit .flex a:before{
  position: absolute;
  content: "";
  top:44%;
  left: auto;
  right: 25px;
  -webkit-transform: translate(0%, -50%); /* Safari用 */
  transform: translate(0%, -50%);
  width: 9px;
  height: 9px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.index_recruit .flex a:hover{
  background-color: darkorange;
  text-decoration: none;
}
.index_recruit > div h2{
  color:#eb6ea5 !important;
  font: 3.4rem/1.0em "Noto Sans JP", sans-serif !important;
  font-weight: 500 !important;
  margin: 0 0 20px !important;
}



@media (max-width:840px) {

  .index_recruit{
    width: 100%;
    margin: 0 auto;
    background: url("../img/index_recruit.jpg") center top no-repeat;
    background-size: 840px auto;
    height:auto;
    padding: 310px 0 0;
    border-bottom: 1px solid #dcdddd;
  }

  .index_recruit br{
    display: block
  }

  .index_recruit > div h2{
    color:#eb6ea5 !important;
    font: 3.4rem/1.3em "Noto Sans JP", sans-serif !important;
    font-weight: 400 !important;
    margin: 0 0 20px !important;
  }  


  .index_recruit .box{
    height: auto;
    padding: 40px 20px;
    max-width:100%;
    margin: 0 auto;
  }

  .index_recruit .box .item{
    height: 100%;
    max-width:530px;
    margin: 0 auto;
    text-align: center;
    display:block;
  }

}



@media (max-width:480px) {

  .index_recruit{
    width: 100%;
    margin: 0 auto;
    background: url("../img/index_recruit.jpg") center top no-repeat;
    background-size:480px auto;
    height:auto;
    padding: 175px 0 0;
  }

  .index_recruit br{
    display: block
  }

  .index_recruit > div h2{
    font: 2.9rem/1.3em "Noto Sans JP", sans-serif !important;
    font-weight: 500 !important;
    margin: 0 0 15px !important;
  }  


  .index_recruit .box{
    height: auto;
    padding: 30px 20px 30px;
    max-width:100%;
    margin: 0 auto;
  }

  .index_recruit .box .item{
    height: 100%;
    max-width:530px;
    margin: 0 auto;
    text-align: center;
    display:block;
  }

  .index_recruit .box .txt01{
    margin: 0 auto 15px!important;
    font: 1.7rem/1.6em "Noto Sans JP", sans-serif !important;
    font-weight:500 !important;
  }

  .index_recruit .box .txt02{
    margin: 0  auto 15px!important;
    font: 1.6rem/1.6em "Noto Sans JP", sans-serif !important;
    font-weight:500 !important;
    padding: 0 0 20px !important;
    position: relative;
  }


  .index_recruit .box .txt02:before{  
    position: absolute;
    content: "";
    top: auto;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0%); /* Safari用 */
    transform: translate(-50%, 0%);
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-top: 17px solid #c30d23;
    border-bottom: 0;
  }


  .index_recruit .flex{
    width: 100%;
      display:block;
  }

  .index_recruit .flex a{
    display: block;
    width: 100%;
    margin: 0 auto 10px;
    font: 1.7rem/54px "Noto Sans JP", sans-serif !important;
    font-weight: 500 !important;
  }

}

/* ==========================================================================
 * * Print styles.
 * * Inlined to avoid the additional HTTP request:
 * * http://www.phpied.com/delay-loading-your-print-css/
 * * ========================================================================== */