@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;700&display=swap");
@media screen and (max-width: 999px) {
  .is-pc {
    display: none;
  }
}

@media screen and (min-width: 1000px) {
  .is-sp {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .is-sp {
    display: none;
  }
}

/******************************** 
   reset.css、共通
*********************************/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
figure,
time,
article,
p,
span {
  padding: 0;
  margin: 0;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif !important;
  font-weight: 300;
  line-height: 1.8;
  color: #222;
  word-break: break-all;
  letter-spacing: 0.1em;
}

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

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s ease 0s;
}
a:hover {
  transition: all 0.4s ease 0s;
  opacity: 0.7;
}

dl,
dd,
dt {
  margin: 0;
  padding: 0;
}

/******************************** 
   inner
*********************************/
.inner {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .inner {
    padding: 0 24px;
  }
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 16px;
  }
}

/******************************** 
   header
*********************************/
.header {
  width: 100%;
  height: 120px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background: #fff;
  transition: all 0.4s ease 0s;
}
@media screen and (max-width: 767px) {
  .header {
    height: 60px;
  }
}
.header.is-scrolled {
  transition: all 0.4s ease 0s;
  position: fixed;
  height: 90px;
}
@media screen and (max-width: 767px) {
  .header.is-scrolled {
    height: 60px;
  }
}
.header.is-scrolled .header__logo {
  transition: all 0.4s ease 0s;
  top: 20px;
}
@media screen and (max-width: 767px) {
  .header.is-scrolled .header__logo {
    top: 16px;
  }
}
.header.is-scrolled .header__logo img {
  max-height: 48px;
}
@media screen and (max-width: 767px) {
  .header.is-scrolled .header__logo img {
    max-height: 28px;
  }
}
.header.is-scrolled .logo-tagline {
  transition: all 0.4s ease 0s;
  margin-top: 12px;
}
@media screen and (max-width: 767px) {
  .header.is-scrolled .logo-tagline {
    margin-top: 7px;
  }
}
.header.is-scrolled .header__menu li a {
  transition: all 0.4s ease 0s;
  line-height: 90px;
}
.header.is-scrolled .header__button {
  transition: all 0.4s ease 0s;
  height: 90px;
  line-height: 90px;
}

.header__inner {
  display: flex;
}

.header__logo {
  transition: all 0.4s ease 0s;
  text-align: center;
  position: relative;
  top: 32px;
  left: 40px;
  white-space: nowrap;
  line-height: 1;
}
.header__logo a {
  display: inline-block;
  line-height: 0;
}
.header__logo img {
  display: block;
  width: auto;
  height: auto;
  max-height: 56px;
  max-width: min(280px, 45vw);
}
.header__logo .logo-title {
  transition: all 0.4s ease 0s;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.4em;
}
.header__logo .logo-tagline {
  transition: all 0.4s ease 0s;
  font-size: 10px;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: normal;
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .header__logo .logo-tagline {
    margin-top: 7px;
  }
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .header__logo {
    top: 32px;
    left: 24px;
  }
  .header__logo .logo-title {
    letter-spacing: 0.3em;
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .header__logo {
    top: 16px;
    left: 16px;
  }
  .header__logo img {
    max-height: 28px;
    max-width: min(200px, 55vw);
  }
  .header__logo .logo-title {
    font-size: 20px;
  }
}

.header__menu {
  display: flex;
  margin-left: auto;
  margin-right: 4.1666vw;
}
.header__menu li {
  margin-left: 50px;
}
.header__menu li a {
  transition: all 0.4s ease 0s;
  display: block;
  line-height: 120px;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .header__menu li {
    margin-left: 24px;
  }
}
@media screen and (max-width: 767px) {
  .header__menu {
    display: none;
  }
}

.header__button {
  transition: all 0.4s ease 0s;
  width: 220px;
  height: 120px;
  line-height: 120px;
  background: #146467;
  color: #fff;
  text-align: center;
}
.header__button img {
  width: 20px;
  position: relative;
  top: 3px;
}
.header__button span {
  margin-left: 10px;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .header__button {
    width: 200px;
  }
}
@media screen and (max-width: 767px) {
  .header__button {
    display: none;
  }
}

/******************************** 
   drawer icon
*********************************/
.drawer-icon {
  cursor: pointer;
  transition: 0.5s ease 0s;
  width: 60px;
  height: 60px;
  background: #146467;
  position: fixed;
  top: 0px;
  right: 0px;
  z-index: 301;
}
.drawer-icon.is-active .drawer-icon__bar1 {
  top: 8px;
  transform: rotate(-45deg);
  transition: all 0.4s ease 0s;
}
.drawer-icon.is-active .drawer-icon__bar2 {
  display: none;
}
.drawer-icon.is-active .drawer-icon__bar3 {
  top: 8px;
  transform: rotate(45deg);
  transition: all 0.4s ease 0s;
}
.drawer-icon.is-active .drawer-icon__menu {
  display: none;
}
.drawer-icon.is-active .drawer-icon__close {
  display: block;
}

.drawer-icon__bars {
  display: block;
  position: relative;
  width: 30px;
  height: 30px;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
}

.drawer-icon__bar1,
.drawer-icon__bar2,
.drawer-icon__bar3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 1px;
  background: #fff;
  transition: all 0.4s ease 0s;
}

.drawer-icon__bar1 {
  top: 0;
}

.drawer-icon__bar2 {
  top: 10px;
}

.drawer-icon__bar3 {
  top: 20px;
}

/******************************** 
   drawer content
*********************************/
.drawer-content {
  background: #146467;
  position: fixed;
  z-index: 299;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
}
.drawer-content.is-active {
  transition: all 0.5s ease 0s;
  visibility: visible;
  opacity: 1;
}

.drawer__inner {
  position: relative;
  overflow-y: scroll;
  height: 100vh;
  padding: 0px 16px 12px;
  color: #fff;
  position: relative;
}

.header__logo--drawer {
  position: absolute;
  top: 16px;
  left: 16px;
}
.header__logo--drawer img {
  max-height: 40px;
  max-width: min(240px, 70vw);
}

.drawer__menu {
  margin-top: 116px;
}
.drawer__menu li > a {
  text-decoration: none;
  display: block;
  padding: 20px 0px 20px 16px;
  width: 100%;
  position: relative;
  border-bottom: 1px solid #f5f5f5;
}
.drawer__menu li > a::after {
  position: absolute;
  content: "";
  background: url(../img/arrow-white.png) no-repeat center center/contain;
  width: 14px;
  height: 14px;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}

.drawer__buttons {
  margin-top: 40px;
}

.contact__button--form--drawer {
  background: #fff !important;
  color: #222 !important;
}

.contact__button--tel--drawer {
  margin-top: 20px;
  border: 2px solid #fff !important;
  background: #fff !important;
  color: #146467 !important;
  box-sizing: border-box;
}
.contact__button--tel--drawer .tel-icon {
  filter: none;
}

.drawer__privacy {
  margin-top: 20px;
  margin-left: 16px;
  display: block;
  line-height: 44px;
}

/******************************** 
   util
*********************************/
.section {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.util-title-large {
  text-align: center;
  font-size: 28px;
  line-height: 1;
  font-weight: 600;
}
.util-title-large .en-title {
  font-weight: 400;
  font-family: "Cormorant Garamond", serif;
  display: block;
  font-size: 14px;
  color: #146467;
}
.util-title-large .en-title--white {
  color: #fff;
}
.util-title-large .jp-title {
  display: block;
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .util-title-large {
    font-size: 24px;
  }
}

.util-lead {
  margin-top: 40px;
  text-align: center;
}

.util-button {
  display: block;
  padding: 0 30px;
  width: 280px;
  height: 70px;
  background: #146467;
  color: #fff !important;
  text-decoration: none !important;
  border-radius: 5px;
  line-height: 70px;
  position: relative;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .util-button {
    width: 220px;
    height: 60px;
    line-height: 60px;
  }
}
.util-button::after {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  background: url(../img/arrow-white.png) no-repeat center center/contain;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}
.util-button--about {
  margin-top: 20px;
}
.util-button--center {
  margin: 60px auto 0;
}
.util-button--overflow {
  position: relative;
  top: 35px;
  margin: 25px auto 0;
}

.util-title-middle {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .util-title-middle {
    margin-bottom: 20px;
  }
}
.util-title-middle .util-title-middle-jp {
  display: block;
  font-size: 24px;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .util-title-middle .util-title-middle-jp {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .util-title-middle .util-title-middle-jp {
    font-size: 20px;
  }
}
.util-title-middle .util-title-middle-en {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #146467;
  font-family: "Cormorant Garamond", serif;
}
.util-title-middle .util-title-middle-sub {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #146467;
  line-height: 1.65;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .util-title-middle .util-title-middle-sub {
    font-size: 13px;
  }
}

.link-icon {
  width: 12px;
  margin-left: 10px;
}

/* /util */
/******************************** 
   first view (fv)
*********************************/
.fv {
  margin-top: 120px;
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .fv {
    margin-top: 60px;
    min-height: 0;
    padding: 64px 0 56px;
  }
}
.fv::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(115deg, rgba(34, 34, 34, 0.88) 0%, rgba(34, 34, 34, 0.55) 52%, rgba(34, 34, 34, 0.35) 100%);
  pointer-events: none;
}

.fv__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #f5f5f5 url(../img/fv-bg.webp) no-repeat center center/cover;
}

.fv__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 48px;
  padding-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .fv__inner {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

.fv__copy {
  max-width: 920px;
  font-size: clamp(22px, 3.2vw, 40px);
  font-weight: 600;
  line-height: 1.65;
  letter-spacing: 0.08em;
  color: #fff;
}

.fv__lead {
  margin-top: 28px;
  max-width: 640px;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.92);
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .fv__lead {
    margin-top: 20px;
    font-size: 14px;
  }
}

.fv__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 20px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .fv__actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 32px;
  }
}

.fv__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  height: 70px;
  padding: 0 32px;
  border-radius: 5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-decoration: none !important;
  transition: opacity 0.4s ease 0s;
}
@media screen and (max-width: 767px) {
  .fv__btn {
    width: 100%;
    min-width: 0;
    height: 60px;
  }
}

.fv__btn--primary {
  position: relative;
  background: #146467;
  color: #fff !important;
  padding-right: 52px;
}
.fv__btn--primary::after {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  background: url(../img/arrow-white.png) no-repeat center center/contain;
  top: 50%;
  right: 28px;
  transform: translateY(-50%);
}

.fv__btn--tel {
  border: 2px solid #fff;
  background: transparent;
  color: #fff !important;
}

/******************************** 
   front page — 代表挨拶
*********************************/
.front-greeting {
  padding: 100px 0 80px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .front-greeting {
    padding: 72px 0 56px;
  }
}

.front-greeting__inner {
  max-width: 800px;
  margin: 0 auto;
}

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

.front-greeting__role {
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.14em;
  color: #146467;
  font-weight: 500;
}

.front-greeting__name-block {
  margin-top: 16px;
  text-align: center;
}

.front-greeting__name {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.18em;
}
@media screen and (max-width: 767px) {
  .front-greeting__name {
    font-size: 22px;
  }
}

.front-greeting__name-en {
  margin-top: 8px;
  font-size: 15px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  color: #146467;
  letter-spacing: 0.08em;
}

.front-greeting__body {
  margin-top: 40px;
  text-align: justify;
  font-size: 15px;
  line-height: 2;
}
.front-greeting__body p + p {
  margin-top: 1.5em;
}
@media screen and (max-width: 767px) {
  .front-greeting__body {
    font-size: 14px;
  }
}

/******************************** 
   value（選ばれる理由）
*********************************/
.value {
  padding-top: 100px;
  padding-bottom: 100px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .value {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.value__title {
  text-align: center;
}

.value__lead {
  margin-top: 40px;
  text-align: center;
}

.value__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 60px;
  list-style: none;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .value__list {
    display: block;
    margin-top: 40px;
  }
}

.value__item {
  width: calc(33.333% - 26.6666666667px);
  border: 1px solid #ddd;
  background: rgba(255, 255, 255, 0.8);
  padding: 30px;
}
.value__item .util-title-middle {
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .value__item {
    width: calc(33.333% - 13.3333333333px);
    padding: 16px 16px 24px;
  }
}
@media screen and (max-width: 767px) {
  .value__item {
    width: 100%;
    margin-top: 30px;
    padding: 16px 16px 24px;
  }
  .value__item:first-child {
    margin-top: 0;
  }
}

.value__item__img {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value__item__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #146467;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  background: #146467;
}

.value__item__text {
  text-align: justify;
}
.value__item__text p {
  margin: 0;
}

/******************************** 
   flow（ご相談の流れ）
*********************************/
.flow {
  padding-top: 100px;
  padding-bottom: 100px;
  background: #f5f5f5;
}
@media screen and (max-width: 767px) {
  .flow {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.flow__title {
  text-align: center;
}

.flow__lead {
  margin-top: 40px;
  text-align: center;
}

.flow__steps {
  list-style: none;
  margin: 48px auto 0;
  padding: 0;
  max-width: 1120px;
}
@media screen and (min-width: 1000px) {
  .flow__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .flow__steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .flow__steps {
    display: block;
    margin-top: 40px;
    max-width: 640px;
  }
}

.flow__step {
  position: relative;
  background: #fff;
  border: 1px solid #ddd;
  padding: 24px 18px 28px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .flow__step {
    text-align: left;
    padding: 0 0 32px 52px;
    margin-top: 0;
    border: none;
    background: transparent;
  }
  .flow__step:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 19px;
    top: 44px;
    bottom: 8px;
    width: 2px;
    background: rgba(20, 100, 103, 0.35);
  }
  .flow__step + .flow__step {
    margin-top: 0;
  }
}

.flow__step__head {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .flow__step__head {
    align-items: flex-start;
    gap: 4px;
    padding-top: 2px;
  }
}

.flow__step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: #146467;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .flow__step__num {
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

.flow__step__title {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .flow__step__title {
    padding-left: 0;
    font-size: 16px;
  }
}

.flow__step__text {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.85;
  text-align: justify;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .flow__step__text {
    margin-top: 10px;
    font-size: 14px;
  }
}

/******************************** 
   service, about
*********************************/
.service {
  position: relative;
  top: 0;
  padding-top: 100px;
  padding-bottom: 0;
  background: linear-gradient(to right, #f5f5f5 75%, #fff 75%);
}
@media screen and (max-width: 999px) {
  .service {
    margin-top: 0;
    padding-top: 72px;
    background: #f5f5f5;
  }
}

/* about */
.about__content {
  width: 420px;
  max-width: 100%;
  position: absolute;
  top: -200px;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .about__content {
    width: calc(100% - 32px);
    max-width: 388px;
    top: -222px;
  }
}

.about__title {
  color: #146467;
  font-size: 32px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}

.about__lead {
  margin-top: 20px;
  margin-bottom: 30px;
  text-align: justify;
}

/* /about */
.service__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .service__list {
    display: block;
    margin-top: 40px;
  }
}

.service__item {
  width: calc(50% - 20px);
  background: #fff;
  border: 1px solid #f5f5f5;
}
.service__item:nth-child(n+3) {
  margin-top: 40px;
}
.service__item a {
  display: block;
  padding: 3.4722vw;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .service__item {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 767px) {
  .service__item {
    width: 100%;
  }
  .service__item:nth-child(n+2) {
    margin-top: 30px;
  }
  .service__item a {
    padding: 30px 16px;
  }
}

.service__item--wide {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .service__item--wide {
    width: 100%;
  }
}

.service__item__points {
  margin-top: 16px;
  padding-left: 1.25em;
}
.service__item__points li {
  margin-top: 6px;
  list-style: disc;
  line-height: 1.65;
}

.service__item__text {
  text-align: justify;
}
.service__item__text p + p {
  margin-top: 20px;
}

.service__item__more {
  margin-top: 36px;
  font-family: "Cormorant Garamond", serif;
  text-align: right;
  padding-right: 22px;
  position: relative;
}
.service__item__more::after {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  background: url(../img/arrow-red.png) no-repeat center center/contain;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

/******************************** 
   report
*********************************/
.report {
  padding-top: 100px;
  padding-bottom: 0;
}

.report__bg {
  margin-top: 20px;
  background: url(../img/report-bg.webp) no-repeat 60% center/cover;
}
@media screen and (max-width: 767px) {
  .report__bg {
    margin-top: -20px;
  }
}

.report__paper {
  position: relative;
  top: -160px;
  background: #fff;
  padding: 60px 40px 0;
}
@media screen and (max-width: 767px) {
  .report__paper {
    top: -100px;
    padding: 60px 16px 0;
  }
}

.report__list {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .report__list {
    margin-top: 40px;
  }
}

.report__item {
  border-top: 1px solid #ddd;
}
.report__item a {
  display: flex;
  padding: 45px 70px 45px 30px;
}
@media screen and (max-width: 999px) {
  .report__item a {
    display: block;
    padding: 30px 10px 30px 0px;
  }
}
.report__item:last-child {
  border-bottom: 1px solid #ddd;
}
.report__item {
  position: relative;
}
.report__item::after {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  top: 50%;
  right: 30px;
  transform: transY(-50%);
  background: url(../img/arrow-red.png) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .report__item::after {
    right: 10px;
    top: calc(100% - 24px);
  }
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .report__item::after {
    right: 10px;
    top: calc(100% - 24px);
  }
}

.report__meta {
  display: flex;
}

.report__date {
  white-space: nowrap;
  width: 90px;
}

.report__cat {
  white-space: nowrap;
  margin-left: 40px;
  padding: 1px 10px 3px;
  height: 28px;
  line-height: 28px;
  font-size: 14px;
  text-align: center;
  color: #146467;
  border: 1px solid #146467;
  border-radius: 3px;
}
@media screen and (max-width: 767px) {
  .report__cat {
    margin-left: 30px;
  }
}

.report__title {
  margin-left: 80px;
  width: calc(100% - 330px);
}
@media screen and (max-width: 999px) {
  .report__title {
    margin-left: 0;
    margin-top: 20px;
    width: 100%;
  }
}

/******************************** 
   contact
*********************************/
.contact {
  padding: 80px 0;
  background: #222;
  color: #fff;
}

.contact__hours {
  margin-top: 24px;
  text-align: center;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.92);
}

.contact__button__area {
  display: flex;
  justify-content: space-between;
  width: 680px;
  max-width: 100%;
  margin: 60px auto 0;
}
@media screen and (max-width: 767px) {
  .contact__button__area {
    display: block;
  }
}
.contact__button__area--tel-only {
  justify-content: center;
}

.contact__button {
  width: 320px;
  height: 70px;
  border-radius: 5px;
  line-height: 70px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact__button {
    display: block;
    width: 100%;
    height: 70px;
  }
  .contact__button + .contact__button {
    margin-top: 30px;
  }
}
.contact__button .mail-icon {
  width: 20px;
  position: relative;
  top: 3px;
}
.contact__button .tel-icon {
  width: 20px;
  position: relative;
  top: 3px;
}
.contact__button span {
  margin-left: 10px;
}
.contact__button--form {
  background: #146467;
  color: #fff;
}
.contact__button--tel {
  background: #fff;
  border: 2px solid #fff;
  color: #146467;
  box-sizing: border-box;
}
.contact__button--tel .tel-icon {
  filter: none;
}

/******************************** 
   footer
*********************************/
.footer {
  background: #f5f5f5;
  padding: 60px 0 20px 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 60px 0 20px 0;
  }
}

.footer__content {
  display: flex;
}
@media screen and (max-width: 767px) {
  .footer__content {
    display: block;
  }
}

.footer__left {
  width: 50%;
  margin-right: 40px;
}
@media screen and (max-width: 767px) {
  .footer__left {
    width: 100%;
  }
}

.footer__center {
  width: 120px;
}
@media screen and (max-width: 767px) {
  .footer__center {
    width: 100%;
    margin-top: 30px;
  }
}

.footer__right {
  width: calc(50% - 170px);
  margin-left: 50px;
}
@media screen and (max-width: 767px) {
  .footer__right {
    width: 100%;
    margin-top: 6px;
    margin-left: 0;
  }
}

.footer__logo {
  margin-top: 0;
}
.footer__logo a {
  display: inline-block;
  line-height: 0;
}
.footer__logo img {
  display: block;
  width: auto;
  height: auto;
  max-height: 44px;
  max-width: min(220px, 70vw);
}

.footer__address {
  margin-top: 20px;
  font-size: 13px;
  line-height: 1.7;
  letter-spacing: 0.06em;
}

.footer__menu__list li {
  margin-top: 6px;
}
.footer__menu__list li a {
  display: block;
  line-height: 44px;
}

.footer__copy {
  margin-top: 100px;
  font-size: 14px;
}

.footer__to-top {
  position: absolute;
  font-size: 12px;
  line-height: 44px;
  bottom: 40px;
  right: 40px;
  writing-mode: vertical-rl;
  padding-top: 24px;
}
.footer__to-top::before {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  top: 0;
  left: 50%;
  background: url(../img/arrow-red.png) no-repeat center center/contain;
  transform: rotate(-90deg) translateY(-50%);
}
@media screen and (max-width: 767px) {
  .footer__to-top {
    top: 80px;
    right: 16px;
  }
}

/* /footer */
/******************************** 
   下層ページ共通
*********************************/
/* page-head */
.page-head {
  width: 100%;
  margin-top: 200px;
}
@media screen and (max-width: 767px) {
  .page-head {
    margin-top: 160px;
  }
}

.page-head__title__en {
  font-size: 60px;
  font-weight: 600;
  color: #146467;
  font-family: "Cormorant Garamond", serif;
}
@media screen and (max-width: 767px) {
  .page-head__title__en {
    font-size: 48px;
  }
}

.page-head__title__jp {
  font-size: 24px;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .page-head__title__jp {
    font-size: 20px;
  }
}

.page-head__img-wrapper {
  max-width: calc(50vw + 600px);
  margin-top: 100px;
  margin-left: auto;
  padding-left: 40px;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .page-head__img-wrapper {
    max-width: 100vw;
    padding-left: 24px;
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .page-head__img-wrapper {
    margin-top: 60px;
    max-width: 100vw;
    padding-left: 0;
  }
}

.page-head__img {
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .page-head__img {
    aspect-ratio: 1320/500;
  }
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .page-head__img {
    aspect-ratio: 1320/500;
  }
}
@media screen and (max-width: 767px) {
  .page-head__img {
    height: 240px;
  }
}
.page-head__img--about {
  background: url(../img/about-head.webp) no-repeat left center/cover;
}
.page-head__img--service {
  background: url(../img/service-head.webp) no-repeat center bottom/cover;
}
.page-head__img--report {
  background: url(../img/report-head.webp) no-repeat right center/cover;
}
.page-head__img--contact {
  background: url(../img/contact-head.webp) no-repeat right center/cover;
}

/* /page-head */
/* breadcrumb */
.breadcrumb {
  text-align: right;
  margin-top: 24px;
}
.breadcrumb span {
  display: inline-block;
  margin-right: 40px;
}
.breadcrumb span:last-of-type {
  margin-right: 0;
}
.breadcrumb span a {
  position: relative;
}
.breadcrumb span a::after {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  background: url(../img/arrow-breadcrumb.png) no-repeat center center/contain;
  top: 50%;
  right: -24px;
  transform: translateY(-50%);
}

.first-section {
  padding-top: 160px;
}
@media screen and (max-width: 767px) {
  .first-section {
    padding-top: 80px;
  }
}

/******************************** 
   法人概要ページ（about）
*********************************/
.about-page .about-intro {
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .about-page .about-intro {
    padding-bottom: 24px;
  }
}
.about-page .about-intro__inner {
  max-width: 800px;
  margin: 0 auto;
}
.about-page .about-intro__title {
  text-align: center;
}
.about-page .about-intro__body {
  margin-top: 40px;
  text-align: justify;
  line-height: 2;
  letter-spacing: 0.06em;
  font-size: 15px;
}
.about-page .about-intro__body p + p {
  margin-top: 1.5em;
}
@media screen and (max-width: 767px) {
  .about-page .about-intro__body {
    font-size: 14px;
    margin-top: 32px;
  }
}
.about-page .profile {
  display: flex;
  align-items: stretch;
  padding-bottom: 80px;
}
@media screen and (max-width: 999px) {
  .about-page .profile {
    display: block;
    padding-bottom: 40px;
  }
}
.about-page .about-profile {
  padding-top: 40px;
}
.about-page .profile__inner {
  width: 580px;
  max-width: 100%;
  padding: 0 0 0 40px;
  margin-left: auto;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .about-page .profile__inner {
    margin: 0 auto;
    padding: 0 24px;
  }
}
@media screen and (max-width: 767px) {
  .about-page .profile__inner {
    padding: 0 16px;
  }
}
.about-page .profile__left {
  margin-right: 20px;
}
@media screen and (max-width: 999px) {
  .about-page .profile__left {
    margin-right: auto;
  }
}
.about-page .profile__right {
  display: flex;
  flex-direction: column;
  width: calc(50% - 20px);
  margin-left: 20px;
  min-height: 0;
  align-self: stretch;
}
@media screen and (max-width: 999px) {
  .about-page .profile__right {
    display: block;
    margin-left: 0;
    margin-top: 48px;
    width: 100%;
    min-height: auto;
  }
}
.about-page .profile__title {
  text-align: left;
}
.about-page .profile__details {
  margin-top: 40px;
}
.about-page .profile__row {
  padding: 24px 16px;
  border-bottom: 1px solid #ddd;
  display: flex;
}
.about-page .profile__row dt {
  font-weight: 600;
  width: 200px;
  flex-shrink: 0;
}
@media screen and (max-width: 999px) {
  .about-page .profile__row dt {
    width: 160px;
  }
}
.about-page .profile__row dd {
  width: calc(100% - 200px);
  margin: 0;
  line-height: 1.85;
}
@media screen and (max-width: 999px) {
  .about-page .profile__row dd {
    width: calc(100% - 160px);
  }
}
@media screen and (max-width: 767px) {
  .about-page .profile__row dd {
    width: 100%;
    margin-top: 10px;
  }
}
.about-page .profile__row dd a {
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .about-page .profile__row {
    display: block;
    padding: 16px;
  }
}
.about-page .profile__sub {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 400;
  color: #555;
  font-family: "Cormorant Garamond", serif;
}
.about-page .profile__note {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: #555;
}
.about-page .profile__list {
  margin: 0;
  padding-left: 1.2em;
}
.about-page .profile__list li {
  margin-top: 6px;
  list-style: disc;
}
.about-page .profile__list li:first-child {
  margin-top: 0;
}
.about-page .profile__map {
  width: 100%;
  min-height: 360px;
  height: auto;
  position: relative;
  top: 0;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #ddd;
}
.about-page .profile__map--about {
  position: relative;
  width: 100%;
  min-height: 320px;
}
@media screen and (min-width: 1000px) {
  .about-page .profile__map--about {
    flex: 1 1 0;
    min-height: 0;
  }
}
@media screen and (max-width: 999px) {
  .about-page .profile__map--about {
    flex: none;
    height: 360px;
    min-height: 360px;
  }
}
@media screen and (max-width: 767px) {
  .about-page .profile__map--about {
    height: 280px;
    min-height: 280px;
  }
}
.about-page .profile__map--about iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.about-page .about-access {
  background: #f5f5f5;
  padding: 80px 0 100px;
}
@media screen and (max-width: 767px) {
  .about-page .about-access {
    padding: 60px 0 80px;
  }
}
.about-page .about-access__inner {
  max-width: 800px;
  margin: 0 auto;
}
.about-page .about-access__title {
  text-align: center;
}
.about-page .about-access__list {
  margin: 40px 0 0;
  padding: 0 0 0 1.2em;
  line-height: 1.9;
  font-size: 15px;
}
.about-page .about-access__list li {
  margin-top: 10px;
  list-style: disc;
}
.about-page .about-access__list li:first-child {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .about-page .about-access__list {
    margin-top: 32px;
    font-size: 14px;
  }
}

/******************************** 
   対応業務ページ（service）
*********************************/
.service-page .service__container {
  margin-top: 160px;
  margin-bottom: 160px;
  display: flex;
}
@media screen and (max-width: 999px) {
  .service-page .service__container {
    display: block;
    margin-top: 80px;
    margin-bottom: 80px;
  }
}
.service-page .side-nav {
  display: block;
  width: 270px;
  flex-shrink: 0;
}
@media screen and (max-width: 999px) {
  .service-page .side-nav {
    display: none;
  }
}
.service-page .service-nav-list {
  position: sticky;
  top: 90px;
}
@media screen and (max-width: 999px) {
  .service-page .service-nav-list {
    position: static;
  }
}
.service-page .side-nav-button {
  display: block;
  padding: 30px 0 30px 30px;
  background: #f5f5f5;
  border-bottom: 1px solid #fff;
}
.service-page .side-nav-button.active {
  background: #146467;
  color: #fff;
}
@media screen and (min-width: 1000px) {
  .service-page .service__sp-nav {
    display: none;
  }
}
.service-page .service__sp-nav {
  padding-top: 0;
  padding-bottom: 40px;
}
.service-page .service__sp-nav__item {
  display: block;
  padding: 16px;
  border-bottom: 1px solid #ddd;
  position: relative;
}
.service-page .service__sp-nav__item.active {
  background: rgba(20, 100, 103, 0.12);
  color: #146467;
  font-weight: 600;
}
.service-page .service__sp-nav__item::after {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  background: url(../img/arrow-red.png) no-repeat center center/contain;
  top: 50%;
  right: 16px;
  transform: rotate(90deg) translateY(-50%);
}
.service-page .main-content {
  width: calc(100% - 250px - 8%);
  max-width: 100%;
  padding: 0 40px 0 8%;
  margin-right: auto;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .service-page .main-content {
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
  }
}
@media screen and (max-width: 767px) {
  .service-page .main-content {
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
  }
}
.service-page .service-page__inner {
  max-width: 800px;
  margin: 0;
  padding-top: 0;
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .service-page .service-page__inner {
    padding-bottom: 80px;
  }
}
.service-page .service-page__header {
  margin-bottom: 48px;
}
.service-page .service-page__header h1 {
  margin: 0 0 24px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .service-page .service-page__header h1 {
    font-size: 22px;
  }
}
.service-page .service-page__header p {
  margin: 0;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.06em;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .service-page .service-page__header p {
    font-size: 14px;
  }
}
.service-page .service-page__section {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid #ddd;
}
@media screen and (max-width: 767px) {
  .service-page .service-page__section {
    margin-top: 40px;
    padding-top: 32px;
  }
}
.service-page .service-page__section h2 {
  margin: 0 0 20px;
  padding: 0;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: #146467;
}
@media screen and (max-width: 767px) {
  .service-page .service-page__section h2 {
    font-size: 19px;
  }
}
.service-page .service-page__section h3 {
  margin: 32px 0 14px;
  padding: 0 0 0 14px;
  border-left: 3px solid #146467;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .service-page .service-page__section h3 {
    font-size: 16px;
    margin-top: 28px;
  }
}
.service-page .service-page__section p {
  margin: 0 0 1.5em;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.06em;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .service-page .service-page__section p {
    font-size: 14px;
  }
}
.service-page .service-page__section p:last-child {
  margin-bottom: 0;
}

/******************************** 
   活動報告ページ(report, single)
*********************************/
.report-page .report__cat-item,
.single-page .report__cat-item {
  padding-left: 30px;
  padding-right: 30px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .report-page .report__cat-item,
  .single-page .report__cat-item {
    padding: 10px;
  }
}
.report-page .report__cat-item::after,
.single-page .report__cat-item::after {
  position: absolute;
  content: "";
  background: #ddd;
  width: 1px;
  height: 20px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .report-page .report__cat-item::after,
  .single-page .report__cat-item::after {
    width: 100%;
    height: 1px;
    top: 100%;
    left: 0;
  }
}
@media screen and (min-width: 1000px) {
  .report-page .report__cat-item:last-child::after,
  .single-page .report__cat-item:last-child::after {
    content: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .report-page .report__cat-item:last-child::after,
  .single-page .report__cat-item:last-child::after {
    content: none;
  }
}
.report-page .report__cat-item a,
.single-page .report__cat-item a {
  line-height: 44px;
}
.report-page .single__title,
.single-page .single__title {
  margin-top: 16px;
}
.report-page .single__content,
.single-page .single__content {
  margin-top: 60px;
  word-break: break-all;
}
.report-page .single__content p,
.single-page .single__content p {
  margin-bottom: 1.8em;
}
.report-page .single__content h2,
.single-page .single__content h2 {
  font-size: 1.5em;
  margin: 2.5em 0 0.7em;
}
.report-page .single__content h3,
.single-page .single__content h3 {
  font-size: 1.17em;
  margin: 2.6em 0 0.9em;
  padding: 0px 0 0px 10px;
  border-left: 2px solid #146467;
}
.report-page .single__content a,
.single-page .single__content a {
  color: #146467;
  text-decoration: underline;
}
.report-page .single__content figure,
.single-page .single__content figure {
  margin: 0 0 1em;
}
.report-page .single__content .wp-block-file__button,
.single-page .single__content .wp-block-file__button {
  background: #146467;
  color: #fff;
  text-decoration: none;
}
.report-page .report__content,
.single-page .report__content {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .report-page .report__content,
  .single-page .report__content {
    display: block;
  }
}
.report-page .report-main,
.single-page .report-main {
  width: 70%;
}
@media screen and (max-width: 767px) {
  .report-page .report-main,
  .single-page .report-main {
    width: 100%;
  }
}
.report-page .report-main .report__list,
.single-page .report-main .report__list {
  margin-top: 0;
}
.report-page .report-main .report__item a,
.single-page .report-main .report__item a {
  display: block;
  padding: 30px 10px 30px 0px;
}
@media screen and (max-width: 999px) {
  .report-page .report-main .report__item a,
  .single-page .report-main .report__item a {
    display: block;
    padding: 30px 10px 30px 0px;
  }
}
.report-page .report-main .report__item::after,
.single-page .report-main .report__item::after {
  right: 10px;
  top: calc(100% - 24px);
}
.report-page .report-main .report__title,
.single-page .report-main .report__title {
  margin-left: 0;
  margin-top: 20px;
  width: 100%;
}
.report-page .report-side,
.single-page .report-side {
  width: 20%;
  margin-left: 10%;
  margin-top: -10px;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .report-page .report-side,
  .single-page .report-side {
    width: 22%;
    margin-left: 8%;
  }
}
@media screen and (max-width: 767px) {
  .report-page .report-side,
  .single-page .report-side {
    width: 100%;
    margin: 80px 0;
  }
}
.report-page .report-side__head,
.single-page .report-side__head {
  font-size: 20px;
  font-weight: bold;
}
.report-page .report-side__list li,
.single-page .report-side__list li {
  padding-left: 20px;
  margin-top: 10px;
  font-size: 16px;
  position: relative;
}
.report-page .report-side__list li::before,
.single-page .report-side__list li::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 2px;
  background: #146467;
  top: 15px;
  left: 10px;
}
.report-page .report-side__list li .report-side__link,
.single-page .report-side__list li .report-side__link {
  display: block;
  line-height: 2;
  transition: all 0.4s ease 0s;
}
.report-page .report-side__list li .report-side__link:hover,
.single-page .report-side__list li .report-side__link:hover {
  transition: all 0.4s ease 0s;
  opacity: 0.7;
}
.report-page .report-side__list,
.single-page .report-side__list {
  margin-top: 10px;
  margin-bottom: 60px;
}
.report-page .report__pagination-wrapper,
.single-page .report__pagination-wrapper {
  margin: 80px auto 0;
  text-align: center;
}
.report-page .page-numbers,
.single-page .page-numbers {
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 44px;
  margin-left: 2px;
}
.report-page .page-numbers.current,
.single-page .page-numbers.current {
  background: #146467;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .report-page .page-numbers,
  .single-page .page-numbers {
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-left: 0px;
  }
}
.report-page .single__more-report,
.single-page .single__more-report {
  margin-top: 80px;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
}

/******************************** 
   問い合わせページ(contact)
*********************************/
.contact-form__intro p {
  margin-bottom: 1.8em;
}
.contact-form__intro span {
  color: #146467;
}
.contact-form__intro a {
  text-decoration: underline;
}

.contact-form__tel-line {
  text-align: center;
  margin-bottom: 0.5em !important;
}

.contact-form__tel-link {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 600;
  color: #146467 !important;
  text-decoration: none !important;
}

.contact-form__hours {
  text-align: center;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.65);
}

.contact-form__wrapper {
  margin: 100px auto 0;
  width: 100%;
  background: #f5f5f5;
  padding: 0 60px 0;
}
@media screen and (max-width: 767px) {
  .contact-form__wrapper {
    padding: 0 16px 0;
  }
}

.contact-form__content {
  width: 760px;
  max-width: 100%;
  padding: 60px 0 60px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .contact-form__content {
    padding: 20px 0 40px;
  }
}

.contact-form__attention {
  margin-top: 30px;
}
.contact-form__attention a {
  text-decoration: underline;
}

@media screen and (min-width: 1000px) {
  form p {
    margin-top: 50px;
  }
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  form p {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  form p {
    margin-top: 30px;
  }
}
form p label {
  position: relative;
  color: #222;
}
@media screen and (min-width: 1000px) {
  form p label {
    display: flex;
    align-items: flex-start;
  }
  form p label .label-head {
    margin-top: 16px;
  }
}
form p .label-head {
  width: 220px;
  min-width: 220px;
}
@media screen and (min-width: 1000px) {
  form p .label-head {
    padding-left: 0px;
  }
}
form input[type=text],
form input[type=email],
form input[type=tel],
form input[type=date],
form select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: none;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  padding: 16px 12px;
  width: 500px;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  form input[type=text],
  form input[type=email],
  form input[type=tel],
  form input[type=date],
  form select {
    width: 500px;
  }
}
form input[type=text],
form input[type=email],
form input[type=tel],
form input[type=date],
form select {
  max-width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  form input[type=text],
  form input[type=email],
  form input[type=tel],
  form input[type=date],
  form select {
    margin-top: 8px;
  }
}
@media screen and (max-width: 767px) {
  form input[type=text],
  form input[type=email],
  form input[type=tel],
  form input[type=date],
  form select {
    margin-top: 8px;
    width: 100%;
  }
}
form input[type=text]:focus,
form input[type=email]:focus,
form input[type=tel]:focus,
form input[type=date]:focus,
form select:focus {
  border: 1px solid rgba(20, 100, 103, 0.32);
  box-shadow: 0px 0px 3px rgba(20, 100, 103, 0.32);
  outline: none;
}
form input[type=date] {
  width: 200px;
  padding: 10px 12px;
}
form select {
  background: #fff url(../img/select-arrow.png) no-repeat center right 8px/16px 16px;
  cursor: pointer;
}
form select::-ms-expand {
  display: none;
}
form select:focus {
  border: 1px solid rgba(20, 100, 103, 0.32);
  box-shadow: 0px 0px 3px rgba(20, 100, 103, 0.32);
  outline: none;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  form select {
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  form select {
    margin-top: 10px;
  }
}
form textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: none;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 16px;
  padding: 12px;
  width: 500px;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  form textarea {
    width: 500px;
  }
}
form textarea {
  max-width: 100%;
  height: 240px;
  resize: vertical;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  form textarea {
    margin-top: 8px;
  }
}
@media screen and (max-width: 767px) {
  form textarea {
    margin-top: 8px;
    width: 100%;
  }
}
form textarea:focus {
  border: 1px solid rgba(20, 100, 103, 0.32);
  box-shadow: 0px 0px 3px rgba(20, 100, 103, 0.32);
  outline: none;
}
form textarea.textarea-small {
  height: 76px;
}
@media screen and (max-width: 767px) {
  form textarea.textarea-small {
    height: 100px;
  }
}
form .wpcf7-form-control-wrap {
  width: 500px;
}
@media screen and (max-width: 767px) {
  form .wpcf7-form-control-wrap {
    width: 100%;
  }
}
form .wpcf7-list-item {
  margin: 0;
  margin-right: 20px;
}
form .wpcf7-list-item-label {
  cursor: pointer;
  display: flex;
  display: block;
}
form {
  /* デフォルトのボタン */
}
form input[type=radio] {
  opacity: 0;
  /* デフォルトのボタンを非表示 */
  position: absolute;
}
form {
  /* チェック前のボタン（ラジオボタン、チェックボックス） */
}
form .wpcf7-list-item-label::before {
  background: #fff;
  border: 1px solid #d9d9d9 !important;
  border-radius: 100%;
  content: "";
  width: 22px;
  height: 22px;
  margin-bottom: auto;
  margin-right: 8px;
  margin-top: auto;
}
form {
  /* チェック後のボタン */
}
form input[type=radio]:checked + .wpcf7-list-item-label::before {
  background-color: #009cab;
  /* チェック後の中心の色 */
  box-shadow: inset 0 0 0 4px #fff;
  /* 中心の色のスタイル */
  width: 22px;
  height: 22px;
  border: 1px solid #d9d9d9 !important;
}
form .wpcf7-form-control-wrap {
  display: block;
}
form .wpcf7-form-control.wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
}
form .wpcf7-list-item-label {
  /*項目の色や文字サイズ*/
  color: #222;
  cursor: pointer;
}
form input[type=checkbox] {
  position: absolute;
  opacity: 0;
  /*既存のチェックボックスを見えなくする*/
}
form input[type=checkbox] + .wpcf7-list-item-label::before {
  border-radius: 2px;
}
form .wpcf7-list-item-label:before {
  /*チェックボックス、ラジオの枠*/
  content: "";
  border: 1px solid #d9d9d9;
  display: inline-block;
  width: 20px;
  height: 20px;
  position: relative;
  top: -1px;
  margin-right: 8px;
  vertical-align: middle;
  cursor: pointer;
  text-align: center;
}
form input[type=checkbox]:checked + .wpcf7-list-item-label:after {
  /*チェックアイコン*/
  -webkit-transform: translateY(-50%) rotate(-45deg);
  border-bottom: 3px solid #146467;
  border-left: 3px solid #146467;
  content: "";
  display: block;
  height: 10px;
  margin-top: -1px;
  opacity: 1;
  position: absolute;
  top: 13px;
  transform: translateY(-50%) rotate(-45deg);
  transition: all 0.3s ease 0s;
  width: 22px;
}

.wpcf7-submit {
  -webkit-appearance: none;
  background-color: #fff;
  color: #146467;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif !important;
  background-image: none;
  border: 1px solid #146467;
  border-radius: 0;
  cursor: pointer;
  display: block;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-top: 80px;
}
@media screen and (min-width: 1000px) {
  .wpcf7-submit {
    margin-left: 224px;
  }
}
.wpcf7-submit {
  padding: 0.8em 4em;
  text-decoration: none;
  transition: all 0.4s ease 0s;
}
@media screen and (max-width: 767px) {
  .wpcf7-submit {
    width: 100%;
  }
}
.wpcf7-submit:hover, .wpcf7-submit:focus {
  outline: none;
}
.wpcf7-submit:hover {
  transition: all 0.4s ease 0s;
  background-color: #146467;
  color: #fff;
}
.wpcf7-submit::-moz-foucus-inner {
  border: none;
  padding: 0;
}

.required {
  display: inline-block;
  color: #e31d23;
  font-size: 14px;
  line-height: 1;
  margin-left: 4px;
}
@media screen and (max-width: 767px) {
  .required {
    font-size: 12px;
  }
}

/******************************** 
   固定ページ
*********************************/
.page__content {
  margin-top: 60px;
  word-break: break-all;
}
.page__content p {
  margin-bottom: 1.8em;
}
.page__content h1 {
  line-height: 1.8;
  font-size: 2em;
  margin: 0 0 0.7em;
}
@media screen and (max-width: 767px) {
  .page__content h1 {
    font-size: 1.7em;
  }
}
.page__content h2 {
  line-height: 1.8;
  font-size: 1.5em;
  margin: 2.5em 0 0.7em;
}
.page__content h3 {
  line-height: 1.8;
  font-size: 1.17em;
  margin: 2.6em 0 0.9em;
  padding: 0px 0 0px 10px;
  border-left: 2px solid #146467;
}
.page__content a {
  color: #146467;
  text-decoration: underline;
}
.page__content figure {
  margin: 0 0 1em;
}

/******************************** 
   404ページ
*********************************/
.not-found-page .not-found {
  margin-top: 80px;
}
.not-found-page .not-found-title {
  font-size: 38px;
  font-weight: 600;
  color: #146467;
  text-align: center;
}
.not-found-page .not-found-text {
  margin-top: 20px;
  text-align: center;
  font-size: 20px;
  line-height: 1.8;
}
.not-found-page .not-found__link {
  margin: 60px auto;
  transition: all 0.4s ease 0s;
}
.not-found-page .not-found__link:hover {
  transition: all 0.4s ease 0s;
  opacity: 0.7;
}
