@charset "utf-8";
/* COMMON
-------------------------------------------------------------- */
html {
  font-size: 62.5%;
}
:root {
  --white: #fff;
  --black: #383838;
  --gray: #c0c0c0;
  --lightgray: #d2d2d2;
  --blue: #0091d5;
  --turquoise: #006ea2;
  --yellow: #efbf00;
}
body {
  position: relative;
  overflow-x: hidden;
  color: var(--black);
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
}
.serif {
  font-family: "Noto Serif JP", serif;
}
.meiryo {
  font-family: 'Meiryo', 'メイリオ', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'Segoe UI', 'Helvetica Neue',
    Arial, sans-serif;
}
main {
  position: relative;
  margin-top: 110px;
  z-index: 1;
}
.wrapper {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}
a:hover {
  color: inherit;
  opacity: .7;
}
a:focus {
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}
.container.wide {
  max-width: 100%;
}
.invisible {
  visibility: hidden;
}
.hidden_pc {
  display: none;
}
.hidden_sp {
  display: block;
}
.flex {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width:768px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: auto;
  }
}
@media (max-width:767px) {
  body {
    font-size: 1.4rem;
  }
  main {
    margin-top: 60px;
  }
  .hidden_pc {
    display: block;
  }
  .hidden_sp {
    display: none;
  }
}
/* common style
-------------------------------------------------------------- */
.hr01 {
  margin: 0;
  border: none;
  height: 2px;
  background-color: var(--lightgray);
}
.hr02 {
  margin: 0;
  border: none;
  height: 1px;
  background-color: var(--gray);
}
.line {
  position: relative;
  width: 100%;
  height: 2px;
  background-color: var(--lightgray);
}
.line::after {
  position: absolute;
  width: 36.6%;
  height: 2px;
  background-color: var(--yellow);
  content: "";
}
.line01::after {
  left: 0;
}
.line02::after {
  right: 0;
}
.styleH2 {
  position: relative;
  align-items: center;
  margin-bottom: 30px;
  margin-left: calc((100% - 1100px) / 2);
}
.styleH2::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 50%;
  height: 2px;
  background: var(--blue);
  content: "";
}
.styleH2 span {
  display: inline-block;
  width: 50%;
  position: relative;
  background: var(--white);
  color: var(--blue);
  font-size: 5rem;
  font-weight: 700;
  letter-spacing: 5px;
  z-index: 1;
}
.styleH2 span::first-letter {
  color: var(--yellow);
}
.styleH2 strong {
  display: inline-block;
  position: relative;
  padding-right: 60px;
  background: var(--white);
  font-size: 2rem;
  z-index: 1;
}
@media (max-width:1200px) {
  .styleH2 {
    margin-left: 5%;
  }
}
@media (max-width:767px) {
  .styleH2 {
    margin: 0 0 20px 5%;
  }
  .styleH2::after {
    content: none;
  }
  .styleH2 span {
    display: inline-block;
    background-color: transparent;
    width: 100%;
    font-size: 3.2rem;
    letter-spacing: 3px;
    line-height: 1.5;
  }
  .styleH2 span::after {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--blue);
    content: "";
  }
  .styleH2 strong {
    padding: 20px 0 0;
    background-color: transparent;
    width: 50%;
    font-size: 1.6rem;
  }
}

/* header
-------------------------------------------------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  z-index: 10;
}
header a {
  display: block;
}
header .logo {
  padding: 0 30px;
  font-size: 2.3rem;
  font-weight: 700;
  letter-spacing: 2px;
}
header .logo span {
  color: var(--blue);
  font-weight: 700;
}
.hamburger {
  display: none;
}
header .headWrap {
  position: relative;
  justify-content: space-between;
  align-items: center;
  padding: 35px 0;
}
header .global-nav {
  width: calc(100% - 310px);
}
header .global-nav ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
header .global-nav li {
  position: relative;
}
header .global-nav li::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 1px;
  height: 16px;
  background: var(--black);
  content: "";
}
header .global-nav li:first-child::before {
  content: none;
}
header .global-nav li a {
  padding: 5px 30px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1;
}
header .global-nav li a::after{
  position: absolute;
  bottom: 0;
  left: 50%;
  content: '';
  width: 0;
  height: 2px;
  background-color: var(--blue);
  transition: .3s;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 10;
}
header .global-nav li a:hover::after,
header .global-nav li span:hover::after {
  width: 100%;
}
.floatingMenu {
  position: fixed;
  top: 30%;
  right: 0;
  z-index: 100;
}
.floatingMenu li a {
  padding: 15px 0 15px 15px;
  width: 50px;
  box-sizing: border-box;
  border-radius: 15px 0 0 15px;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  writing-mode: vertical-lr;
  line-height: 1;
  letter-spacing: 2px;
}
.floatingMenu li.contact a {
  background: linear-gradient(180deg, #008aa0 0%, #009fb9 100%);
}
.floatingMenu li.tel a {
  background: linear-gradient(180deg, #f09100 0%, #f4a62d 100%);
  text-orientation: upright;
}
@media (max-width:1200px) {
  header .headWrap {
    padding: 37px 0;
  }
  header .logo {
    padding: 0;
    font-size: 2rem;
  }
  header .global-nav {
    width: calc(100% - 220px);
  }
  header .global-nav li a {
    padding: 0 15px;
  }
}
@media (max-width:900px) {
  header .headWrap {
    padding: 41px 0;
  }
  header .logo {
    font-size: 1.6rem;
  }
  header .global-nav {
    width: calc(100% - 220px);
  }
  header .global-nav li a {
    padding: 0 10px;
    font-size: 1.4rem;
  }
}
@media (max-width:767px) {
  header .headWrap {
    padding: 14px 0;
  }
  header .logo {
    font-size: 1.8rem;
  }
  header .global-nav {
    position: fixed;
    right: 0;
    top: 60px;
    padding: 20px 5% 100px;
    width: 100%;
    height: 100vh;
    background: var(--blue);
    z-index: 100;
    overflow-y: auto;
    display: none;
  }
  .hamburger {
    display: block;
    position: fixed;
    right: 0;
    top: 0;
    background: var(--blue);
    width: 60px;
    height: 60px;
    text-align: center;
    font-size: 3rem;
    line-height: 1;
    cursor: pointer;
    z-index: 300;
    transition: all 0.5s ease-in-out;
  }
  header .global-nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  header .global-nav li {
    width: 100%;
    border-bottom: 1px solid #fff;
  }
  header .global-nav li::before {
    content: none;
  }
  header .global-nav li a {
    padding: 20px;
    color: var(--white);
    font-size: 1.6rem;
  }
  header .global-nav li a::after {
    top: 0;
    left: auto;
    right: 8px;
    bottom: 0;
    margin: auto;
    background: url(img/common/arrow_w.svg) no-repeat center / contain;
    width: 13px;
    height: 5px;
    transform: translateX(0px);
  }
  .hamburger__line {
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    width: 34px;
    height: 3px;
    background-color: var(--white);
    border-radius: 10px;
    transition: all 0.6s;
  }
  .hamburger__line--1 {
    top: 18px;
  }
  .hamburger__line--2 {
    top: 28px;
  }
  .hamburger__line--3 {
    top: 38px;
  }
  /* 表示された時用のCSS */
  .nav-open .global-nav {
    display: block;
  }
  .nav-open .hamburger__line--1 {
    transform: rotate(45deg);
    top: 28px;
  }
  .nav-open .hamburger__line--2 {
    width: 0;
    left: 50%;
  }
  .nav-open .hamburger__line--3 {
    transform: rotate(-45deg);
    top: 28px;
  }
  .floatingMenu {
    top: auto;
    bottom: 0;
    right: 0;
    width: 100%;
  }
  .floatingMenu ul {
    display: flex;
  }
  .floatingMenu li {
    width: 50%;
  }
  .floatingMenu li a {
    display: block;
    padding: 12px;
    width: 100%;
    border-radius: 10px 10px 0 0;
    text-align: center;
    font-size: 1.6rem;
    writing-mode: horizontal-tb;
  }
}

/* mv
-------------------------------------------------------------- */
#mv {
  position: relative;
  z-index: 1;
}
#mv h2 {
  position: absolute;
  left: 6%;
  bottom: 10%;
  color: var(--white);
  font-size: 8rem;
  font-weight: 700;
  text-shadow: 0px 0px 9px rgba(56, 56, 56, 1), 0px 0px 9px rgba(56, 56, 56, 0.8), 0px 0px 9px rgba(56, 56, 56, 0.5);
  letter-spacing: 6px;
}
#mv img {
  width: 100%;
}
@media (max-width:767px) {
  #mv h2 {
    left: 6%;
    bottom: 10%;
    font-size: 2.6rem;
    line-height: 1.4;
    letter-spacing: 2px;
  }
}

/* advantage
-------------------------------------------------------------- */
.advantage {
  position: relative;
  padding: 120px 0 180px;
}
.advantage .txtLead {
  padding-bottom: 50px;
  font-size: 5rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 1px;
}
.advantage .txtLead span {
  font-weight: 700;
  color: var(--yellow);
}
.advantage .txtLead strong {
  font-size: 7rem;
}
.advantage figure {
  margin-bottom: 180px;
}
.tab {
  position: relative;
  margin: 100px 0;
  padding: 50px;
  gap: 40px;
  background: var(--white);
  border: 2px solid var(--lightgray);
  border-radius: 20px;
  width: 100%;
  z-index: 1;
}
.tab li {
  position: relative;
  justify-content: center;
  align-items: center;
  width: calc((100% - 80px) / 3);
  height: 100px;
  border-radius: 10px;
  background: var(--white);
  color: var(--blue);
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
.tab li.active {
  background: url(../img/index/bg.png);
  color: var(--white);
}
.tab li:hover {
  background: url(../img/index/bg.png);
  color: var(--white);
}
.tab li::after {
  position: absolute;
  top: 0;
  right: -20px;
  width: 1px;
  height: 100%;
  background: var(--lightgray);
  content: "";
}
.tab li:last-child:after {
  content: none;
}
.tab li strong {
  font-size: 2.2rem;
}
.tabContent {
  display: none;
  position: relative;
  width: 100%;
}
.tabContent::after {
  position: absolute;
  top: -35%;
  left: 0;
  width: 100%;
  height: 135%;
  background: #f9f9f9;
  content: "";
}
.tabContent.active {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-left: calc((100% - 1100px) / 2);
}
.tabContent .txtArea {
  position: relative;
  width: 44%;
  z-index: 1;
}
.tabContent figure {
  position: relative;
  width: 49%;
  z-index: 1;
}
.tabContent figure img {
  width: 100%;
}
.tabContent h3 {
  position: relative;
  margin-bottom: 50px;
  padding-bottom: 30px; 
  color: var(--turquoise);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.tabContent h3::after {
  position: absolute;
  bottom: 0;
  left: -9999px; 
  right: 0;
  height: 2px;
  background: var(--lightgray);
  content: "";
}
@media (max-width:1200px) {
  .tabContent.active {
    padding-left: 5%;
  }
}
@media (max-width:767px) {
  .advantage {
    padding: 60px 0 90px;
  }
  .advantage .txtLead {
    padding-bottom: 30px;
    font-size: 2.4rem;
    text-align: center;
    line-height: 1.5;
  }
  .advantage .txtLead strong {
    font-size: 3rem;
  }
  .advantage figure {
    margin-bottom: 90px;
  }
  .tab {
    margin: 50px 0;
    padding: 15px;
    gap: 20px;
    border-radius: 10px;
  }
  .tab li {
    width: calc((100% - 40px) / 3);
    height: 80px;
    border-radius: 5px;
  }
  .tab li::after {
    position: absolute;
    top: 0;
    right: -10px;
  }
  .tab li strong {
    text-align: center;
    font-size: 1.6rem;
    line-height: 1.4;
  }
  .tabContent::after {
    top: -20%;
    height: 120%;
  }
  .tabContent .txtArea {
    padding-bottom: 30px;
    width: 100%;
  }
  .tabContent figure {
    margin-bottom: 20px;
    width: 100%;
    order: -1;
  }
  .tabContent figure img {
    width: 100%;
  }
  .tabContent h3 {
    margin-bottom: 30px;
    padding-bottom: 20px; 
    font-size: 2rem;
  }
}
/* service
-------------------------------------------------------------- */
#service {
  margin-bottom: 250px;
}
#service .ttlArea {
  margin-bottom: 60px;
}
#service li {
  padding: 100px 0 100px 80px;
  width: 50%;
}
#service li:first-child {
  padding: 100px 80px 100px 0;
  border-right: 2px solid var(--lightgray)
}
#service li img {
  width: 100%;
}
#service li h3 {
  position: relative;
  margin: -20px 5% 50px;
  padding: 15px;
  background: var(--blue);
  color: var(--white);
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1;
}
#service li h4 {
  padding-bottom: 20px;
  color: var(--turquoise);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.7;
}
@media (max-width:767px) {
  #service {
    margin-bottom: 80px;
  }
  #service .ttlArea {
    margin-bottom: 30px;
  }
  #service ul {
    width: 100%;
  }
  #service li {
    padding: 50px 40px;
    width: 100%;
  }
  #service li:first-child {
    padding: 50px 30px;
    border-right: none;
    border-bottom: 2px solid var(--lightgray)
  }
  #service li h3 {
    margin: -20px 5% 30px;
    padding: 15px;
    font-size: 1.8rem;
  }
  #service li h4 {
    padding-bottom: 10px;
    font-size: 2rem;
  }
}
/* plan
-------------------------------------------------------------- */
#plan .tableScroll {
  margin: 100px auto 80px;
  padding-bottom: 20px;
  overflow-x: auto;
}
#plan .planWrap {
  gap: 35px;
  min-width: 1100px;
}
#plan .planBox {
  width: calc((100% - 105px) / 4);
  border: 1px solid var(--lightgray);
  border-radius: 20px;
  overflow: hidden;
}
#plan .planBox .ttl {
  padding: 40px 20px;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 1px;
}
#plan .planBox.plan01 .ttl {
  background: #efefef;
}
#plan .planBox.plan02 .ttl {
  background: #8ad4f6;
}
#plan .planBox.plan03 .ttl {
  background: #40a8d8;
  color: var(--white);
}
#plan .planBox.plan04 .ttl {
  background: #0088c7;
  color: var(--white);
}
#plan .planBox .detail {
  padding: 0 20px;
  text-align: center;
}
#plan .planBox .detail dl {
  padding: 35px 0;
  border-bottom: 1px solid var(--lightgray);
}
#plan .planBox .detail dt {
  letter-spacing: 1px;
  line-height: 1;
}
#plan .planBox .detail dt span {
  font-size: 1.8rem;
  font-weight: 500;
}
#plan .planBox .detail dd {
  padding-top: 30px;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 1px;
}
#plan .planBox .detail dd span {
  padding: 0 5px;
  font-size: 2.8rem;
  font-weight: 700;
}
#plan .planBox .detail dd small {
  display: inline-block;
  margin-top: 10px;
  font-size: 1.6rem;
}
#plan .planBox .detail .op {
  min-height: 180px;
}
#plan .planBox .detail .plus {
  padding-bottom: 70px;
  border-bottom: none;
}
#plan .planBox .detail .plus dt {
  font-size: 1.8rem;
  font-weight: 500;
}
#plan .planBox .detail .plus dd {
  font-size: 2.5rem;
  font-weight: 700;
}
#plan .planBox .detail .plus dd strong {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  border-radius: 5px;
  background: #ffe760;
  font-size: 1.6rem;
  font-weight: 500;
}
#plan .txtNote {
  margin-bottom: 70px;
}
#plan .txtNote li {
  position: relative;
  padding-left: 20px;
  font-size: 2rem;
  font-weight: 500;
}
#plan .txtNote li span {
  position: absolute;
  top: 0;
  left: 0;
}
#plan .optionBox {
  margin-bottom: 70px;
  border: 1px solid var(--lightgray);
  border-radius: 20px;
  overflow: hidden;  
}
#plan .optionBox .ttl {
  padding: 30px 20px;
  background: #9ed6a7;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 1px;
}
#plan .optionBox .detail {
  padding: 40px;
  text-align: center;
}
#plan .optionBox .detail dl {
  width: 50%;
}
#plan .optionBox .detail dl:first-child {
  border-right: 1px dashed var(--lightgray);
}
#plan .optionBox .detail dt {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
}
#plan .optionBox .detail dd {
  margin-top: 10px;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 1px;
}
#plan .optionBox .detail dd small {
  display: inline-block;
  padding-right: 10px;
  font-size: 1.8rem;
  font-weight: 500;
}
#plan .optionBox .detail dd span {
  display: inline-block;
  font-size: 2.8rem;
  font-weight: 700;
}
#plan .option2Box {
  margin-bottom: 160px;
  border: 1px solid var(--lightgray);
  border-radius: 20px;
  overflow: hidden;  
}
#plan .option2Box .ttl {
  padding: 40px 20px;
  background: var(--yellow);
  text-align: center;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 1px;
}
#plan .option2Box .detail {
  padding: 40px;
  text-align: center;
}
#plan .option2Box .detail dt {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}
#plan .option2Box .detail dd {
  margin-top: 10px;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1.2;
}
@media (max-width:767px) {
  #plan .tableScroll {
    margin: 50px auto 80px;
    padding-bottom: 20px;
  }
  #plan .planWrap {
    gap: 20px;
    min-width: 800px;
  }
  #plan .planBox {
    width: calc((100% - 60px) / 4);
    border-radius: 10px;
  }
  #plan .planBox .ttl {
    padding: 40px 10px;
    font-size: 1.8rem;
  }
  #plan .planBox .detail {
    padding: 0 10px;
  }
  #plan .planBox .detail dl {
    padding: 20px 0;
  }
  #plan .planBox .detail dt span {
    font-size: 1.5rem;
  }
  #plan .planBox .detail dd {
    padding-top: 10px;
    font-size: 1.8rem;
  }
  #plan .planBox .detail dd span {
    font-size: 2rem;
  }
  #plan .planBox .detail dd small {
    font-size: 1.3rem;
  }
  #plan .planBox .detail .op {
    min-height: 110px;
  }
  #plan .planBox .detail .plus {
    padding-bottom: 30px;
  }
  #plan .planBox .detail .plus dt {
    font-size: 1.5rem;
  }
  #plan .planBox .detail .plus dd {
    font-size: 1.8rem;
  }
  #plan .planBox .detail .plus dd strong {
    margin-top: 10px;
    padding: 10px;
    font-size: 1.4rem;
  }
  #plan .txtNote {
    margin-bottom: 30px;
  }
  #plan .txtNote li {
    padding-left: 16px;
    font-size: 1.6rem;
  }
  #plan .optionBox {
    margin-bottom: 30px;
    border-radius: 10px;
  }
  #plan .optionBox .ttl {
    padding: 20px 10px;
    font-size: 1.8rem;
  }
  #plan .optionBox .detail {
    padding: 20px;
    gap: 20px;
  }
  #plan .optionBox .detail dl {
    width: 100%;
  }
  #plan .optionBox .detail dl:first-child {
    padding-bottom: 10px;
    border-right: none;
    border-bottom: 1px dashed var(--lightgray);
  }
  #plan .optionBox .detail dt {
    font-size: 1.5rem;
  }
  #plan .optionBox .detail dd {
    margin-top: 5px;
    font-size: 1.6rem;
  }
  #plan .optionBox .detail dd small {
    font-size: 1.5rem;
  }
  #plan .optionBox .detail dd span {
    font-size: 2rem;
  }
  #plan .option2Box {
    margin-bottom: 80px;
    border-radius: 10px;
  }
  #plan .option2Box .ttl {
    padding: 20px 10px;
    font-size: 1.8rem;
  }
  #plan .option2Box .detail {
    padding: 20px;
  }
  #plan .option2Box .detail dt {
    font-size: 1.8rem;
  }
  #plan .option2Box .detail dd {
    margin-top: 5px;
    font-size: 1.6rem;
  }
}
/* philosophy
-------------------------------------------------------------- */
#philosophy {
  margin: 190px 0 150px;
}
#philosophy .txt {
  margin-top: 80px;
  padding: 50px;
  border: 2px solid var(--yellow);
  border-radius: 20px;
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 2px;
}
#philosophy .txt span {
  color: var(--turquoise);
  font-weight: 900;
}
@media (max-width:767px) {
  #philosophy {
    margin: 80px 0 70px;
  }
  #philosophy .txt {
    margin-top: 40px;
    padding: 20px;
    border-radius: 10px;
    font-size: 2.2rem;
  }
}
/* management
-------------------------------------------------------------- */
#management {
  padding: 100px 0 50px;
  background: var(--blue);
}
#management .styleH2::after {
  background: var(--white);
}
#management .styleH2 span {
  background: var(--blue);
  color: var(--white);
}
#management .styleH2 strong {
  background: var(--blue);
}
#management dl {
  margin-bottom: 50px;
  padding: 40px 50px;
  background: var(--white);
  border-radius: 20px;
}
#management dt {
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--turquoise);
  color: var(--turquoise);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 2px;
}
#management dd {
  font-size: 2rem;
}
@media (max-width:767px) {
  #management {
    padding: 50px 0 30px;
  }
  #management dl {
    margin-bottom: 30px;
    padding: 20px 30px;
    border-radius: 10px;
  }
  #management dt {
    padding-bottom: 5px;
    margin-bottom: 15px;
    font-size: 1.8rem;
  }
  #management dd {
    font-size: 1.6rem;
  }
}
/* message
-------------------------------------------------------------- */
#message {
  position: relative;
  margin-top: 200px;
  z-index: 2;
}
#message .messageWrap {
  margin-top: 130px;
  justify-content: space-between;
  margin-left: calc((100% - 1100px) / 2);
}
#message .messageWrap figure {
  width: 27%;
}
#message .messageWrap .txtArea {
  justify-content: flex-end;
  padding: 70px 50px;
  padding-right: calc((100% - 1100px) / 2);
  border-radius: 30px 0 0 30px;
  width: 68%;
  background: var(--white);
  box-shadow: 0px 0px 9px 1px rgba(56, 56, 56, 0.2);
}
#message .messageWrap .txtArea h3 {
  padding-bottom: 30px;
  color: var(--turquoise);
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: 2px;
}
#message .messageWrap .txtArea p {
  width: 100%;
}
#message .messageWrap .txtArea .name {
  padding-top: 50px;
  margin-top: 80px;
  border-top: 2px solid var(--lightgray);
  width: 70%;
  color: var(--blue);
  text-align: right;
  font-weight: 700;
}
@media (max-width:1200px) {
  #message .messageWrap {
    margin-left: 5%;
  }
}
@media (max-width:767px) {
  #message {
    margin-top: 100px;
  }
  #message .messageWrap {
    margin-top: 70px;
  }
  #message .messageWrap figure {
    margin: 0 auto 20px;;
    width: 60%;
  }
  #message .messageWrap .txtArea {
    padding: 30px 20px;
    border-radius: 15px 0 0 15px;
    width: 100%;
  }
  #message .messageWrap .txtArea h3 {
    padding-bottom: 20px;
    width: 100%;
    font-size: 2.4rem;
  }
  #message .messageWrap .txtArea .name {
    padding-top: 30px;
    margin-top: 40px;
    width: 80%;
  }
}
/* profile
-------------------------------------------------------------- */
#profile {
  position: relative;
  padding: 100px 0 150px;
  margin-bottom: 200px;
  z-index: 1;
}
#profile::after {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 120%;
  background: #f9f9f9;
  content: "";
  z-index: -1;
}
#profile .inner {
  position: relative;
  z-index: 1;
}
#profile .styleH2 span,
#profile .styleH2 strong {
  background: #f9f9f9;
}
#profile dl {
  margin-top: 50px;
  padding: 50px 60px;
  background: var(--white);
  border-radius: 20px;
  font-size: 2rem;
}
#profile dt {
  padding: 30px 0;
  font-weight: 700;
  color: var(--turquoise);
  width: 22%;
}
#profile dd {
  padding: 30px 10px;
  font-weight: 500;
  width: 78%;
}
#profile .dlLine {
  border-bottom: 1px solid var(--lightgray);
}
@media (max-width:767px) {
  #profile {
    padding: 50px 0 70px;
    margin-bottom: 100px;
  }
  #profile::after {
    top: -10%;
    height: 110%;
  }
  #profile .styleH2 span,
  #profile .styleH2 strong {
    background: transparent;
  }
  #profile dl {
    margin-top: 30px;
    padding: 20px 30px;
    border-radius: 10px;
    font-size: 1.6rem;
  }
  #profile dt {
    padding: 15px 0 0;
    width: 100%;
    border: none!important;
  }
  #profile dd {
    padding: 0 0 15px;
    font-weight: 500;
    width: 100%;
  }
}
/* office
-------------------------------------------------------------- */
#office {
  margin-bottom: 200px;
}
#office dl {
  margin-top: 60px;
  padding: 30px 60px;
  border: 1px solid var(--lightgray);
  border-radius: 30px;
}
#office dt {
  padding: 30px 50px;
  font-weight: 700;
  color: var(--turquoise);
  width: 30%;
}
#office dd {
  padding: 30px 10px;
  font-weight: 500;
  width: 70%;
}
#office dd span {
  padding-right: 20px;
  color: var(--blue);
  font-weight: 700;
}
#office .dlLine {
  border-bottom: 1px solid var(--lightgray);
}
#office .address {
  justify-content: space-between;
}
#office .address .txt {
  padding-right: 20px;
  width: 40%;
}
#office .address .map {
  width: 60%;
}
@media (max-width:767px) {
  #office {
    margin-bottom: 100px;
  }
  #office dl {
    margin-top: 30px;
    padding: 20px 30px;
    border-radius: 10px;
  }
  #office dt {
    padding: 15px 0 0;
    width: 100%;
    border: none!important;
  }
  #office dd {
    padding: 0 0 15px;
    font-weight: 500;
    width: 100%;
  }
  #office .address .txt {
    padding: 0 0 10px;
    width: 100%;
  }
  #office .address .map {
    width: 100%;
  }
}
/* contact
-------------------------------------------------------------- */
#contact {
  padding: 200px 0;
  background: var(--blue);
}
#contact h2 {
  text-align: center;
}
#contact h2 span {
  background: var(--blue);
  color: var(--white);
}
#contact .txt {
  padding-bottom: 70px;
  text-align: center;
  font-weight: 700;
}
#contact form {
  padding: 50px;
  background: var(--white);
  border-radius: 20px;
}
#contact input::placeholder {
  color: #aaa;
}
#mfp_hidden {
  display: none;
}
div.mfp_err {
	clear: both;
	display: none;
	text-align: left;
	margin: 5px 0px 0px 0px;
	padding: 3px 0px 5px 17px;
	color: #F00;
	font-size: 12px;
	line-height: normal;
}
.mailform .mfp {
  border-top: 1px solid var(--lightgray);
}
.mailform dt {
  position: relative;
  padding: 30px 0 30px 100px;
  width: 25%;
  text-align: right;
}
.mailform dd {
  padding: 30px;
  width: 75%;
}
.mailform .must {
  position: absolute;
  top: 30px;
  left: 0;
  padding: 6px 20px;
  border-radius: 15px;
  background: var(--blue);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}
.mailform input[type="text"],
.mailform input[type="number"],
.mailform input[type="email"],
.mailform input[type="tel"] {
  padding: 5px 10px;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--gray);
}
.mailform select {
  padding: 8px 10px;
  width: 170px;
  box-sizing: border-box;
  border: 1px solid var(--gray);
}
.mailform textarea {
  padding: 5px 10px;
  width: 100%!important;
  height: 150px!important;
  box-sizing: border-box;
  border: 1px solid var(--gray);
}
.mailform input[type="radio"] {
  width: 20px;
  height: 20px;
  vertical-align: -.3rem;
}
.mailform .inp01 {
  max-width: 300px;
}
.mailform .inp02 {
  max-width: 120px;
}
.mailform .inp03 {
  max-width: 250px;
}
.mailform label {
  display: block;
  padding-bottom: 5px;
}
.mailform .name {
  gap: 10px;
}
.mailform .address {
  justify-content: flex-start;
  align-items: center;
}
.mailform .address:nth-child(2) {
  padding: 10px 0;
}
.mailform .address dt {
  padding: 0 20px 0 0;
  width: auto;
}
.mailform .address dd {
  padding: 0;
}
#contact .btnWrap,
.mfp_buttons {
  padding-top: 100px;
  display: flex;
  justify-content: center;
  gap: 120px;
}
#contact .btnWrap button,
.mfp_element_button {
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px 20px 70px;
  width: 288px;
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
  font-size: 1.8rem;
  border-radius: 35px;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
.mfp_element_button {
  padding: 20px;
}
#contact .btnWrap button:hover {
  opacity: .7;
}
.btnSubmit,
#mfp_button_send {
  color: var(--white);
  border: 1px solid var(--yellow);
  background: var(--yellow);
}
.btnReset,
#mfp_button_cancel {
  color: var(--gray);
  border: 1px solid var(--gray);
  background: var(--white);
}
div#mfp_phase_confirm {
  clear: both;
}
div#mfp_phase_confirm h4 {
  padding: 10px 0;
  text-align: center;
}
div#mfp_phase_confirm div#mfp_phase_confirm_inner {
}
table#mfp_confirm_table {
	border-spacing: 0px;
	border-collapse: collapse;
	width: 100%;
}
table#mfp_confirm_table tr.mfp_colored {
	background-color: #F6F7F9;
}
table#mfp_confirm_table tr.mfp_achroma {
	background-color: #FFF;
}
table#mfp_confirm_table tr th,table#mfp_confirm_table tr td {
	text-align: left;
	border-top: solid 1px #CCC;
	padding: 10px;
}
table#mfp_confirm_table tr th {
	white-space: nowrap;
	width: 200px;
}
table#mfp_confirm_table tr td {
	line-height: 1.5em;
	word-break: break-all;
}
ul#mfp_phase_stat {
	padding: 10px;
	text-align: center;
}
ul#mfp_phase_stat li {
	display: inline-block;
	padding: 8px 15px;
	border-radius: 5px;
	margin: 0px 5px;
	list-style: none;
	font-size: 14px;
}
ul#mfp_phase_stat li.mfp_phase_arrow {
	box-shadow: none;
	color: #999;
	padding: 8px 0px;
}
ul#mfp_phase_stat li.mfp_active_phase {
	box-shadow: 0px 1px 6px #000;
	background-image: url(_images/mfp_header.png);
	background-size: 100% 100%;
	background-color: #0068B7;
	border: solid 2px #0068B7;
	font-weight: bolder;
	color: #FFF;
	text-shadow: 0px 1px 3px #000;
}
ul#mfp_phase_stat li.mfp_inactive_phase {
	background-image: url(_images/mfp_header.png);
	background-size: 100% 100%;
	background-color: #EEE;
	border: solid 2px #EEE;
	color: #999;
	box-shadow: 0px 1px 6px #CCC;
}
.thanks h2 {
  padding: 50px 0;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
}
.thanks .btn a {
  align-items: center;
  justify-content: space-between;
  margin: 100px auto 0;
  padding: 20px 30px 20px 70px;
  width: 288px;
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
  color: var(--white);
  background: var(--yellow);
  border: none;
  font-size: 1.8rem;
  border-radius: 35px;
  transition: all 0.5s ease-in-out;
}
@media (max-width:900px) {
  .mailform dt {
    position: relative;
    padding: 70px 0 30px;
    width: 25%;
    text-align: right;
  }
  #contact .btnWrap,
  .mfp_buttons {
    gap: 30px;
  }
  #contact .btnWrap button,
  .mfp_element_button {
    width: 260px;
  }
}
@media (max-width:767px) {
  #contact {
    padding: 100px 0;
  }
  #contact .txt {
    padding-bottom: 30px;
  }
  #contact form {
    padding: 20px;
    border-radius: 10px;
  }
  .mailform dt {
    padding: 20px 0 10px 80px;
    width: 100%;
    text-align: left;
  }
  .mailform dd.mfp {
    border: none;
  }
  .mailform dd {
    padding: 0 0 20px;
    width: 100%;
  }
  .mailform .must {
    top: 20px;
    font-size: 1.2rem;
  }
  #contact .btnWrap,
  .mfp_buttons {
    padding-top: 20px;
    gap: 10px;
  }
  #contact .btnWrap button,
  .mfp_element_button {
    padding: 10px 10px 10px 20px;
    max-width: 140px;
    font-size: 1.4rem;
  }
  .mfp_element_button {
    padding: 10px;
  }
  .thanks h2 {
    padding: 30px 0;
    font-size: 2rem;
  }
  .thanks p {
    padding-bottom: 20px;
  }
  .thanks .btn a {
    margin: 0 auto;
    padding: 10px 20px 10px 40px;
    max-width: 200px;
    font-size: 1.6rem;
  }
  table#mfp_confirm_table tr th {
		white-space: nowrap;
		width: 100px;
	}
	div#mfp_thanks {
		text-align: center;
		font-size: 18px;
		padding: 20px 0px;
	}
	div#mfp_thanks strong {
		color: #C00;
		font-size: 24px;
		display: block;
	}
	table#mfp_confirm_table tr th,table#mfp_confirm_table tr td {
		display: block;
		width: 100%;
	}
}
/* footer
-------------------------------------------------------------- */
footer {
  padding-top: 100px;
}
footer .sitemap {
  gap: 30px;
  margin-bottom: 70px;
}
footer .sitemap strong {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 1.8rem;
  letter-spacing: 1px;
}
footer .sitemap li {
  position: relative;
  margin-right: 50px;
  padding-right: 50px;
}
footer .sitemap li:last-child: {
  margin: 0;
}
footer .sitemap li::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 1px;
  height: 16px;
  background: var(--black);
  content: "";
}
footer .sitemap li:last-child::after {
  content: none;
}
footer .info {
  padding: 50px 0;
  align-items: center;
  justify-content: space-between;
}
footer .info .logo {
  position: relative;
  padding: 15px 0;
  width: 34%;
  font-size: 2.3rem;
  font-weight: 700;
  letter-spacing: 2px;
}
footer .info .logo span {
  color: var(--blue);
  font-weight: 700;
}
footer .info .logo::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: -9999px;
  border-radius: 0 40px 40px 0;
  background: #f5f5f5;
  z-index: -1;
}
footer .info .txtArea {
  width: 58%;
}
footer .info .txtArea address {
  margin-bottom: 10px;
  font-style: normal;
  font-size: 1.5rem;
  line-height: 1.7;
}
footer .info .txtArea .tel a {
  margin-top: 10px;
  color: var(--yellow);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
footer .copy {
  padding: 20px 0;
  text-align: right;
  font-size: 1.2rem;
}
/*page-top*/
#Pagetop {
  position: fixed;
  bottom: 5%;
  right: 3%;
  cursor: pointer;
  z-index: 90;
}
@media (max-width: 1200px) {
  footer .sitemap li {
    margin-right: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 767px) {
  #Pagetop {
    max-width: 30px;
    bottom: 50px;
  }
  footer {
    padding: 50px 0;
  }
  footer .sitemap {
    gap: 20px;
    margin-bottom: 30px;
  }
  footer .sitemap strong {
    margin-bottom: 5px;
    font-size: 1.6rem;
  }
  footer .sitemapWrap {
    width: 100%;
  }
  footer .sitemap li {
    font-size: 1.3rem;
  }
  footer .sitemap li::after {
    height: 14px;
  }
  footer .info {
    padding: 20px 0;
  }
  footer .info .logo {
    padding: 10px 0;
    width: 70%;
    font-size: 1.8rem;
  }
  footer .info .txtArea {
    width: 100%;
  }
  footer .info .txtArea address {
    margin-bottom: 10px;
    font-style: normal;
    font-size: 1.3rem;
  }
  footer .info .txtArea .tel a {
    margin-top: 5px;
    font-size: 1.8rem;
  }
  footer .copy {
    padding: 10px 0;
    font-size: 1.1rem;
  }
}