@charset "utf-8";

/****************初期設定*********************/
* {
  padding: 0;
  margin: 0;
  outline: none;
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

a img {
  border: 0;
}

img {
  max-width: 100%;
  width: 100%;
}

.pc,
#pc {
  display: block;
}

.sp,
#sp,
.spbr360,
.open {
  display: none;
}

@media (max-width: 880px) {

  .sp,
  #sp,
  .open {
    display: block;
  }
}

a {
  text-decoration: none;
}

a:hover {
  opacity: .9;
}

a[href^="tel:"],
a.nolink {
  pointer-events: none;
}

.fade {
  transition: all 2000ms;
  opacity: 0;
  visibility: hidden;
  transform: translate(0px, 50px);
}

.fadein {
  opacity: 1;
  visibility: visible;
  transform: translate(0px, 0px);
}

/*FONT****************************************/
Source Han Sans JP Regular {
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 400;
  font-style: normal;
}

Source Han Sans JP Medium {
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 500;
  font-style: normal;
}

Source Han Sans JP Bold {
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 700;
  font-style: normal;
}

Source Han Sans JP Heavy {
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 900;
  font-style: normal;
}

p {
  font-family: "tahoma", "Hiragino Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  word-wrap: break-word;
  line-height: 1.8em;
}

p.read_text_Top {
  font-size: 1.7rem;
  margin-bottom: 30px;
}

p.read_text {
  font-size: 1.7rem;
}

p.read_text--white {
  color: #fff;
  font-weight: 500;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Hiragino Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.1em;
}


/****************初期設定*********************/
/****************body設定*********************/
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  margin: 0 !important;
  font-size: 62.5%;
  scroll-behavior: smooth;
  overflow-x: hidden;

}

body {
  color: #202020;
  font-size: 1.6rem;
  font-family: "tahoma", "Hiragino Sans", sans-serif;
  line-height: 1;
  font-feature-settings: 'palt' 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: .06em;
  background-color: #fff;
  animation: loading 1s;
}

@keyframes loading {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

#wrapper {
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.Header_Top {
  display: flex;
  position: relative;
  top: 0;
  right: 0;
  left: 0;
  z-index: 199999;
  height: 130px;
  padding: 0;
  overflow: hidden;
}


.Header_content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-top: 1em;
  padding-left: 1em;
  padding-right: 1em;
}

.Header_Logo {
  width: 40rem;
  height: 8rem;
  text-align: left;
  background-image: url(../images/logo_bg.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 0;
  padding-left: 2.3rem;
  padding-top: 1.3rem;
}

@media (max-width: 530px) {
  .Header_Logo {
    width: 34rem;
  }
}

.Navi_List li a {
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
}

.Navi_List li a span.logo {
  width: 50%;
}

.Navi_List li a span.rec {
  width: 28%;
  margin-left: 4%;
}

.entry-box {
  width: 33rem;
  height: 6rem;
  margin-right: 1.5rem;
  margin-top: 1.5rem;
}

@media (max-width: 540px) {
  .entry-box {
    display: none;
  }
}

.entry {
  overflow: hidden;
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #181818;
  text-align: center;
  border-radius: 3rem;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}


.entry::after {
  background-color: #9a002b;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}

.entry:hover::after {
  transform: scale(1, 1);
}

.entry h4 {
  color: #fff;
  line-height: 5.6rem;
  letter-spacing: .1em;
}


#mainContent_block {
  width: 100%;
  height: 100vh;
  margin-top: -130px;
}

#content_Main_Top {
  position: relative;
  width: 100%;
  height: 100%;
}

#content_Main_Top>h1 {
  position: absolute;
  color: #fff;
  right: 0;
  bottom: 25rem;
  z-index: 1;
  font-size: 10rem;
  font-weight: 900;
  text-shadow: 2px 2px 7px #555,
    -2px 2px 7px #555,
    2px -2px 7px #555,
    -2px -2px 7px #555;
}

#content_Main_Top .h1-read {
  position: absolute;
  bottom: 9rem;
  right: 0;
  width: 55%;
  z-index: 1;
}

.spbr {
  display: none;
}

@media (max-width: 1024px) {
  #content_Main_Top .h1-read {
    width: 90%;
  }

  #content_Main_Top>h1 {
    font-size: 9rem;
  }
}


@media (max-width: 820px) {
  .spbr {
    display: block;
  }

  #content_Main_Top>h1 {
    text-align: right;
    right: 5%;
    bottom: 20%;
  }

  #content_Main_Top .h1-read {
    bottom: 8rem;
    width: 94%;
  }
}

@media (max-width: 540px) {
  #content_Main_Top .h1-read {
    display: none;
  }

  #content_Main_Top>h1 {
    font-size: 7rem;
  }
}

@media (max-width: 430px) {
  #content_Main_Top>h1 {
    font-size: 6.4rem;
    bottom: 10%;
  }
}

@media (max-width: 393px) {
  #content_Main_Top>h1 {
    font-size: 5.4rem;
    bottom: 15%;
  }
}

#content_Main_Top .movie {
  z-index: 0;
  position: absolute;
  width: 100%;
  height: 100%;
}

#content_Main_Top .movie video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}


.content_block {
  max-width: 1200px;
  margin: 0 auto;
  width: 96%;
}


.content_block--flex {
  display: flex;
  align-items: center;
}

.content_block--flex.linkbtn {
  justify-content: center;
  flex-wrap: wrap;
}

.flex-left {
  width: 50%;
  padding: 10em 4em 10em 0em;
  text-align: left;
}

.flex-left p {
  font-size: 2.6rem;
  color: #bfbfbe;
  font-family: "tahoma", sans-serif;
  font-weight: 700;
  letter-spacing: -.005em;
}

.flex-right {
  width: 50%;
  padding: 10em 1em 10em 0;
  text-align: left;
}

.flex-right p {
  font-size: 2.3rem;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .content_block--flex {
    flex-direction: column;
  }

  .flex-left {
    width: 90%;
    padding: 6em 0em 5em 0em;
    margin: 0 5%;
  }

  .flex-left p {
    text-align: center;
  }

  .flex-right {
    width: 90%;
    padding: 0em 0em 6em 0;
    margin: 0 5%;
  }
}

@media (max-width: 540px) {
  .flex-left {
    width: 100%;
    margin: 0 0;
  }

  .flex-left p {
    font-size: 2.2rem;
    margin-top: .5em;
    width: 90%;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 430px) {
  .flex-left {
    padding: 4em 0em 4em 0em;
  }

  .flex-left p {
    width: 80%;
    margin-top: 1em;
    line-height: 1.2em;
  }

  .flex-right p {
    font-size: 2.0rem;
  }
}

@media (max-width: 403px) {
  .flex-left p {
    width: 90%;
    margin-top: 1em;
    line-height: 1.2em;
  }

}

h2 {
  font-size: 6rem;
  font-weight: 900;
  line-height: 1.4em;
  letter-spacing: .05em;
}

h2 span {
  font-size: 13rem;
}

@media (max-width: 540px) {
  h2 {
    font-size: 5rem;
  }

  h2 span {
    font-size: 10rem;
  }
}

@media (max-width: 430px) {
  h2 {
    font-size: 5.6rem;
    line-height: 1.2em;
    letter-spacing: -0.02em;
  }

  h2 span {
    font-size: 7rem;
    line-height: 1;
  }
}

@media (max-width: 403px) {

  h2 span {
    font-size: 9rem;
  }
}

@media (max-width: 393px) {
  h2 {
    font-size: 5.0rem;
    letter-spacing: -0.015em;
  }

  h2 span {
    font-size: 8.4rem;
  }
}

@media (max-width: 375px) {
  h2 {
    font-size: 4.6rem;
    line-height: 1.4em;
  }

}

.gradient__wrap {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}


.gradient__title {
  animation: AnimationTitle 5s ease infinite;
  /*background: linear-gradient(to right, #833ab4, #fd1d1d, #fcb045);*/
  background: linear-gradient(to right, #fcb045, #3ab45a, #ce20c4);
  background-size: 200% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

@keyframes AnimationTitle {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}


.section_bg {
  width: 100%;
  text-align: center;
}

.section_bg--prevnext {
  background: linear-gradient(110deg, #e9eaeb 0%, #e9eaeb 55%, #f2f3f4 50%, #f2f3f4 100%);
  padding-top: 7em;
  padding-bottom: 8em;
}

@media (max-width: 768px) {
  .section_bg--prevnext {
    padding-top: 5em;
    padding-bottom: 5em;
  }
}

@media (max-width: 540px) {
  .section_bg--prevnext {
    padding-bottom: 0em;
  }
}

.section_bg--linkbtn {
  padding-bottom: 15em;
}

@media (max-width: 1024px) {
  .section_bg--linkbtn {
    padding-bottom: 12em;
  }
}

@media (max-width: 768px) {
  .section_bg--linkbtn {
    padding-bottom: 10em;
  }
}

@media (max-width: 430px) {
  .section_bg--linkbtn {
    padding-bottom: 7em;
  }
}

h2.ttl {
  color: #111;
  font-size: 5.0rem;
  font-family: "tahoma", "Hiragino Sans", sans-serif;
  text-align: center;
  margin-bottom: 1.5em;
}

h2.ttl#bosyuu {
  margin-bottom: 0.5em;
}

.h2_bosyuu_read {
  margin-bottom: 3em;
  font-size: 1.7rem;
  font-weight: 500;
  color: #111;
}

@media (max-width: 768px) {
  h2.ttl {
    line-height: 1.2em;
  }

  .h2_bosyuu_read {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 540px) {
  h2.ttl {
    font-size: 4.0rem;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 450px) {
  h2.ttl {
    margin-bottom: 1.5em;
  }
}

h2.ttl.white {
  color: #fff;
  margin-bottom: .5em;
}

h2.ttl span {
  color: #005b38;
  font-size: 5.0rem;
}

@media (max-width: 540px) {
  h2.ttl span {
    font-size: 4.0rem;
  }
}

h2.ttl p {
  font-family: "tahoma", "Hiragino Sans", sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  margin-top: .5em;
}

@media (max-width: 430px) {
  h2.ttl p {
    font-size: 2.2rem;
  }
}

div.sought {
  background: #fff;
  padding: .2em .5em .3em;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3em;
}

p.sought {
  font-family: "tahoma", "Hiragino Sans", sans-serif;
  text-align: center;
  font-weight: 600;
  font-size: 2.0rem;
  background: linear-gradient(-45deg, #ce8d9c, #bd88bc, #a988bd, #8da9ce, #8dbcce, #8dcec7);
  background-size: 500% 500%;
  animation: bgAnime 8s linear infinite;
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  color: transparent;
  line-height: 1.4em;
}

p.sought_tp {
  font-family: "tahoma", "Hiragino Sans", sans-serif;
  text-align: center;
  font-weight: 600;
  font-size: 2.0rem;
  background: linear-gradient(-45deg, #71804a, #4e804a, #4a8076, #4a6980, #6d83b1, #b1af6d);
  background-size: 500% 500%;
  animation: bgAnime 8s linear infinite;
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  color: transparent;
  line-height: 1.4em;
}

@media (max-width: 540px) {
  div.sought {
    width: 90%;
  }

  p.sought_tp,
  p.sought {
    font-weight: 900;
    font-size: 1.6rem;
  }
}

.prev-area,
.next-area {
  position: relative;
  width: 100%;
  max-width: 100%;
  max-height: 1050px;
  left: 0;
  right: 0;
  overflow: visible;
}

.timeline-circle {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
}

#timeline_right.timeline-circle {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  margin-left: auto;
  margin-right: 0;
}

/*.enkaku {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 700px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}*/

.enkaku {
  display: flex;
  flex-direction: column;
  width: auto;
  flex-wrap: wrap;
  justify-content: space-around;
  position: absolute;
  z-index: 100;
  margin-left: 18.5rem;
  height: 1000px;
  padding-right: 2rem;
}

.future {
  display: flex;
  flex-direction: column;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-around;
  position: absolute;
  z-index: 100;
  padding-right: 29.2rem;
  padding-left: 2rem;
  height: 1000px;
}

.enkaku li {
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.enkaku li:nth-child(2) {
  margin-left: 17rem;
}

.enkaku li:nth-child(3) {
  margin-left: 25rem;
}

.enkaku li:nth-child(4) {
  margin-left: 29.2rem;
}

.enkaku li:nth-child(5) {
  margin-left: 29rem;
}

.enkaku li:nth-child(6) {
  margin-left: 25rem;
}

.enkaku li:nth-child(7) {
  margin-left: 17rem;
}

.enkaku li:nth-child(8) {
  margin-left: 1rem;
}

.future li {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.future li:nth-child(2) {
  margin-right: 15rem;
}

.future li:nth-child(3) {
  margin-right: 18.5rem;
}

.future li:nth-child(4) {
  margin-right: 13.5rem;
}

.future li:nth-child(5) {
  margin-right: -2rem;
}

.ft_detail {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.ft_detail p {
  padding-left: 1em;
  text-indent: -.6em;
  margin-bottom: .3em;
}

.future li .ft_detail {
  max-width: 700px;
}

.future li .ft_detail p:before {
  content: '●';
  color: #003c1d;
}

.enkaku li .text-wrap {
  /*flex: 1;*/
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
}

.enkaku li span.aicon,
.future li span.aicon {
  width: 80px;
}

.enkaku li span.aicon img,
.future li span.aicon img {
  width: 80px;
  max-width: 80px;
  min-width: 80px;
}

.enkaku li span.aicon {
  margin-right: 1.5rem;
}

.future li span.aicon {
  margin-left: 1.5rem;
}

.enkaku li span.year,
.future li span.year {
  font-size: 2.6rem;
  color: #202020;
  font-weight: 700;
  font-family: "tahoma", sans-serif;
}

.enkaku li span.year {
  margin-right: 1.5rem;
  width: 10rem;
}

.enkaku li span.year small,
.future li span.year small {
  font-size: 55%;
  font-family: "Hiragino Sans", sans-serif;
}

.future li span.year {
  padding-right: 1.5rem;
  width: 13.5rem;
}

.sp1024 {
  display: none;
}

@media (max-width: 1024px) {
  .sp1024 {
    display: block;
  }

  .enkaku li span.year small,
  .future li span.year small {
    font-size: 50%;
  }

  .future li span.year {
    width: 16rem;
  }

  .future {
    padding-right: 30rem;
  }

  .future li:nth-child(3) {
    margin-right: 17.5rem;
  }

  .future li:nth-child(4) {
    margin-right: 10.0rem;
  }

  .future li:nth-child(5) {
    margin-right: -6rem;
  }

  .enkaku li:nth-child(6) {
    margin-left: 26rem;
  }
}

.enkaku li p,
.future li p {
  font-size: 2.0rem;
  color: #202020;
  line-height: 1.4em;
  text-align: left;
  /*width: 100%;*/
}

.future li p {
  max-width: 700px;
}


.enkaku li span.images,
.future li span.images {
  width: 18rem;
}

.enkaku li span.images {
  margin-left: 2rem;
}

.future li span.images {
  margin-right: 2rem;
}

.enkaku li span img,
.future li span img {
  width: 100%;
  height: auto;
}


@media (max-width: 912px) {
  .enkaku {
    margin-left: 8.5rem;
  }

  .enkaku li:nth-child(8) {
    margin-left: 0rem;
  }

  .enkaku li:nth-child(7) {
    margin-left: 16rem;
  }

  .future {
    padding-right: 13.5rem;
  }

  .prev-area,
  .next-area {
    min-height: 1050px;
  }
}

@media (max-width: 820px) {
  .enkaku {
    margin-left: 8.0rem;
  }

  .enkaku li:nth-child(2) {
    margin-left: 14rem;
  }

  .enkaku li:nth-child(3) {
    margin-left: 23rem;
  }

  .enkaku li:nth-child(6) {
    margin-left: 24.5rem;
  }

  .enkaku li:nth-child(7) {
    margin-left: 14rem;
  }

  .future li:nth-child(1) {
    margin-right: 1rem;
  }

  .future li:nth-child(2) {
    margin-right: 16rem;
  }
}

.pcblock {
  display: block;
}

.spblock {
  display: none;
}

@media (max-width: 768px) {
  .pcblock {
    display: none;
  }

  .spblock {
    display: block;
  }


  .enkaku {
    padding-left: 3.5rem;
    margin-left: 0;
    padding-right: 0;
  }

  .enkaku li {
    align-items: flex-start;
  }

  .enkaku li .text-wrap {
    max-width: 90%;
    align-items: flex-start;
    flex-direction: column;
  }

  .enkaku li .text-wrap br {
    display: none;
  }

  .enkaku li span.year {
    text-align: left;
    margin-bottom: .5rem;
    width: 100%;
  }


  .enkaku li:nth-child(2),
  .enkaku li:nth-child(3),
  .enkaku li:nth-child(4),
  .enkaku li:nth-child(5),
  .enkaku li:nth-child(6),
  .enkaku li:nth-child(7) {
    margin-left: 0;
  }

  .future {
    padding-right: 2.5rem;
    padding-left: 3.5rem;
  }

  .future li {
    flex-wrap: wrap;
    flex-grow: inherit;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .future li span.year {
    width: 50%;
    text-align: left;
    padding-right: 0;
    margin-bottom: .5rem;
    order: 2;
    margin-left: 1.5rem;
  }

  .future li span.aicon {
    margin-left: 0;
  }

  .future li:nth-child(2),
  .future li:nth-child(3),
  .future li:nth-child(4),
  .future li:nth-child(5) {
    margin-right: 0;
  }

  .future li .ft_detail {
    max-width: 100%;
    width: 100%;
    order: 3;
    padding-left: 5.5rem;
  }

  .enkaku li span.aicon,
  .future li span.aicon {
    margin-top: .7rem;
  }

  .future li span.order {
    order: 1;
  }

  .enkaku li span.aicon,
  .future li span.aicon {
    width: 40px;
  }

  .enkaku li span.aicon img,
  .future li span.aicon img {
    width: 40px;
    max-width: 40px;
    min-width: 40px;
  }
}

h3 {
  font-size: 10rem;
  color: transparent;
  -webkit-text-stroke: 3px #005f2e;
  font-family: "tahoma", "Hiragino Sans", sans-serif;
}

@media (max-width: 768px) {
  h3 {
    font-size: 7rem;
  }
}

@media (max-width: 540px) {
  h3 {
    font-size: 6rem;
  }
}

h3.left {
  text-align: left;
  padding-left: 0.5em;
  margin-bottom: .5em;
}

h3.left span {
  color: #003c1d;
  -webkit-text-stroke: aliceblue;
  font-family: "tahoma", "Hiragino Sans", sans-serif;
}

h3.right {
  text-align: right;
  padding-right: 0.5em;
  margin-bottom: .5em;
}

h3.right span {
  color: #003c1d;
  -webkit-text-stroke: aliceblue;
  font-family: "tahoma", "Hiragino Sans", sans-serif;
}

h3.left span {
  display: inline-block;
  font-size: 9.4rem;
  font-weight: 900;
  opacity: .5;
  padding-left: 2rem;
}

h3.right span {
  display: inline-block;
  font-size: 9.4rem;
  font-weight: 900;
  opacity: .5;
  text-align: left;
  padding-right: 2rem;
}

@media (max-width: 912px) {

  h3.left,
  h3.right {
    margin-bottom: .5em;
  }
}

@media (max-width: 768px) {
  h3.left span {
    padding-right: 2rem;
  }

  h3.right span {
    padding-left: 2rem;
  }
}

@media (max-width: 540px) {

  .enkaku {
    padding-right: 2rem;
  }

  h3.left,
  h3.right {
    letter-spacing: -.01em;
  }

  h3.left span {
    font-size: 5rem;
    padding-left: 1rem;
  }

  h3.right span {
    font-size: 5rem;
    padding-right: 1rem;
  }
}

@media (max-width: 450px) {
  .future li span.year {
    margin-bottom: .8rem;
  }

  .enkaku {
    padding-left: 2.5rem;
  }

  .next-area {
    min-height: 1250px;
  }

  .next-area {
    max-height: 1200px;
  }

  .future {
    height: 1200px;
    padding-left: 2.5rem;
  }

  .enkaku li p,
  .future li p {
    font-size: 1.7rem;
  }

  h3.left,
  h3.right {
    font-size: 5rem;
    letter-spacing: -.02em;
    margin-bottom: 1.0em;
  }

  h3.left span,
  h3.right span {
    font-size: 3.6rem;
  }
}

@media (max-width: 412px) {

  h3.left,
  h3.right {
    font-size: 6rem;
    margin-bottom: 1.0em;
    width: 94%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }

  h3.right {
    display: flex;
    flex-direction: column;
  }

  h3.left span {
    font-size: 5rem;
    padding-left: 0;
  }

  h3.right span {
    font-size: 5rem;
    order: 2;
    text-align: right;
  }
}

@media (max-width: 412px) {
  h3.left {
    margin-bottom: .5em;
  }

  h3.right {
    margin-bottom: .2em;
  }

  .enkaku {
    padding-left: 2rem;
  }

  .future {
    padding-right: 2.2rem;
    padding-left: 2rem;
  }
}

.sp360 {
  display: none;
}

.sp393 {
  display: none;
}

@media (max-width: 393px) {
  .sp393 {
    display: block;
  }
}

@media (max-width: 360px) {
  .sp360 {
    display: block;
  }
}

@media (max-width: 380px) {
  h2.ttl {
    margin-bottom: 1.0em;
  }

  h2.ttl+p.sought {
    width: 94%;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -.01em;
  }

  h3.left,
  h3.right {
    letter-spacing: -.04em;
  }

  .future {
    height: 1250px;
  }

  .next-area {
    min-height: 1300px;
    max-height: 1500px;
  }
}

.rotatenext {
  position: absolute;
  top: 0;
  right: 0;
  width: 1000px;
  height: 1000px;
  z-index: 1;
  transform: translateX(50%);
  pointer-events: none;
}

.rotate {
  position: absolute;
  top: 0;
  left: 0;
  width: 1000px;
  height: 1000px;
  z-index: 1;
  transform: translateX(-50%);
  pointer-events: none;
}

.rotate::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: url('../images/prev.png') center center / cover no-repeat;
  animation: rotate 20s linear infinite;
}

.rotatenext::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: url('../images/next.png') center center / cover no-repeat;
  animation: rotate 20s linear infinite;
}

@media (max-width: 912px) {
  .rotate::before {
    left: -10%;
  }

  .rotatenext {
    right: -20%;
  }
}

@media (max-width: 768px) {
  .rotate {
    opacity: 0.3;
  }

  .rotatenext {
    opacity: 0.3;
  }

}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.section_bg--blue {
  background: linear-gradient(-45deg, #71804a, #4e804a, #4a8076, #4a6980, #6d83b1, #b1af6d);
  background-size: 500% 500%;
  animation: bgAnime 8s linear infinite;
  padding-top: 7em;
  padding-bottom: 8em;
}


.section_bg--red {
  background: linear-gradient(-45deg, #ce8d9c, #bd88bc, #a988bd, #8da9ce, #8dbcce, #8dcec7);
  background-size: 500% 500%;
  animation: bgAnime 8s linear infinite;
  padding-top: 7em;
  padding-bottom: 8em;
}

.section_bg--yellow {
  background: #f4f4f4;
  padding-top: 7em;
  padding-bottom: 8em;
  margin-bottom: 6em;
}

.section_bg--gray {
  background: #f4f4f4;
  padding-top: 7em;
  padding-bottom: 7em;
}

@media (max-width: 768px) {

  .section_bg--blue,
  .section_bg--yellow,
  .section_bg--red {
    padding-top: 5em;
    padding-bottom: 5em;
  }

  .section_bg--gray {
    padding-top: 5em;
    padding-bottom: 3em;
  }
}

@media (max-width: 380px) {

  .section_bg--blue,
  .section_bg--yellow,
  .section_bg--red {
    padding-top: 4em;
    padding-bottom: 4em;
  }

  .section_bg--gray {
    padding-top: 4em;
    padding-bottom: 3em;
  }
}

@keyframes bgAnime {
  0% {
    background-position: 0% 50%
  }

  50% {
    background-position: 100% 50%
  }

  100% {
    background-position: 0% 50%
  }
}

.content_block--defo {
  max-width: 1300px;
  margin: 0 auto;
}

@media (max-width: 1310px) {
  .content_block--defo {
    width: 90%;
  }
}

.personnerl-area {
  width: 100%;
  display: flex;
  align-items: center;
}

.personnerl-area.left {
  padding-right: 10em;
  justify-content: flex-start;
}

.personnerl-area.right {
  padding-left: 10em;
  justify-content: flex-end;
}


.personnerl-area .image {
  margin-right: 2em;
  position: relative;
  width: 32rem;
  height: 32rem;
  z-index: 1;
  overflow: hidden;
  border-radius: 50%;
}

@media (max-width: 1310px) {
  .personnerl-area.left {
    padding-right: 5em;
  }

  .personnerl-area.right {
    padding-left: 5em;
  }

  .personnerl-area .image {
    width: 32rem;
    height: 32rem;
  }
}

@media (max-width: 1024px) {
  .personnerl-area {
    width: 100%;
    margin-right: 0%;
    margin-left: 0%;
  }

  .personnerl-area.left {
    padding-right: 0em;
  }

  .personnerl-area.right {
    padding-left: 0;
  }

  .personnerl-area .image {
    width: 30rem;
    height: 30rem;
  }
}

.personnerl-area.right .image {
  margin-right: 0em;
  margin-left: 2em;
}

.personnerl-area .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.personnerl-area .detail {
  width: 60%;
  text-align: left;
  color: #fff;
  flex: 1;
  padding-right: 2em;
}

.personnerl-area.right .detail {
  padding-right: 0em;
  padding-left: 2em;
}

@media (max-width: 912px) {
  .personnerl-area {
    margin-bottom: 2em;
  }

  .personnerl-area .detail {
    padding-right: 0;
  }

  .personnerl-area.right .detail {
    padding-left: 0em;
  }

  .personnerl-area .image {
    width: 25rem;
    height: 25rem;
  }
}

@media (max-width: 820px) {
  .personnerl-area {
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
    flex-direction: column;
    margin-bottom: 5em;
  }

  .personnerl-area:last-child {
    margin-bottom: 0;
  }

  .personnerl-area.left {
    padding-right: 0em;
  }

  .personnerl-area.right .image {
    margin-right: 0em;
    margin-left: 0em;
  }

  .personnerl-area.right {
    padding-left: 0em;
  }

  .personnerl-area .detail {
    width: 100%;
    padding-right: 0;
  }

  .personnerl-area .image {
    margin-right: 0em;
    margin-left: 0em;
    margin-bottom: 2em;
  }

  .personnerl-area .image.order {
    order: 1;
  }

  .personnerl-area .detail.order {
    order: 2;
  }

  .personnerl-area .detail {
    width: 100%;
    padding-right: 0em;
  }

  .personnerl-area.right .detail {
    padding-right: 0em;
    padding-left: 0;
  }
}

@media (max-width: 430px) {
  .personnerl-area .image {
    width: 20rem;
    height: 20rem;
  }
}

.detail h4 {
  font-size: 2.6rem;
  margin-bottom: 1em;
  font-weight: 700;
  line-height: 1.4em;
  padding-left: 1em;
  text-indent: -1em;
}

.detail p {
  font-size: 1.7rem;
  font-weight: 500;
}

.section_bg--recruit {
  padding-top: 8em;
  padding-bottom: 8em;
}

.sph4 {
  display: none;
}

@media (max-width: 820px) {
  .detail h4 {
    text-align: center;
  }

  .section_bg--recruit {
    padding-top: 5em;
    padding-bottom: 5em;
  }
}

@media (max-width: 430px) {
  .detail h4 {
    font-size: 2.4rem;
  }

  .detail p {
    font-size: 1.6rem;
  }

  .sph4 {
    display: block;
  }
}

.recruit-box {
  max-width: 1130px;
  margin-left: auto;
  margin-right: auto;
  background-color: #f2f3f4;
  border-radius: 4rem;
  text-align: center;
  padding: 5em 6em;
  margin-bottom: 5em;
}

.firstTxt {
  text-align: left;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

.entry-form {
  max-width: 1130px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: 5em 6em 0 6em;
  margin-bottom: 0em;
}

.recruit-box:last-child {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .recruit-box {
    width: 90%;
    padding: 4em 3em;
    margin-bottom: 4em;
  }

  .entry-form {
    padding: 4em 3em 0 3em;
  }
}

@media (max-width: 540px) {
  .recruit-box {
    padding: 3em 1.5em;
    border-radius: 2rem;
    margin-bottom: 0em;
  }

  .entry-form {
    padding: 3em 1.5em 0 1.5em;
  }
}

@media (max-width: 430px) {
  .recruit-box {
    width: 100%;
    padding: 3em 1em;
    border-radius: 0;
  }

  .entry-form {
    padding: 0em 1em 0 1em;
  }
}

.example-4 {
  outline-width: 1px;
  outline-offset: 0;
  outline-color: rgba(57, 156, 105, 0.75);
  outline-style: solid;
  animation: animateOutline 4s ease infinite;
}

@keyframes animateOutline {
  0% {
    outline-width: 1px;
    outline-offset: 0;
    outline-color: rgba(0, 130, 206, 0);
  }

  10% {
    outline-color: rgba(57, 156, 105, 0.75);
  }

  /* The animation finishes at 50% */
  50% {
    outline-width: 7px;
    outline-offset: 4px;
    outline-color: rgba(57, 156, 105, 0);
  }

  100% {
    outline-width: 7px;
    outline-offset: 4px;
    outline-color: rgba(102, 102, 102, 0);
  }
}

h5 {
  color: #005b38;
  text-align: center;
  margin-bottom: 0em;
  font-size: 2.4rem;
}

h5.entryTtl {
  margin-bottom: 1.5em;
}

h5 span {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: .9em;
  width: 50px;
  height: 5px;
  background-color: #005b38;
}

p.default-message,
p.thanks-message {
  font-size: 1.7rem;
  text-align: left;
  margin-bottom: 2em;
  font-weight: 500;
}

@media (max-width: 540px) {
  .example-4 {
    animation: none;
    outline-width: 0;
  }
}

@media (max-width: 430px) {
  h5 {
    font-size: 2.4rem;
  }

  h5+p {
    font-size: 1.6rem;
  }

  h5 span {
    width: 30px;
    line-height: 1.5em;
  }

}

h5+p a {
  color: #005b38;
}

.recruit-table {
  border-collapse: collapse;
  width: 100%;
}

.recruit-table th,
.recruit-table td {
  border-bottom: 4px solid #b4b4b4;
  padding: 1.5em 1em;
  font-size: 1.5rem;
  text-align: left;
  line-height: 1.6em;
  font-weight: 500;
}

@media (max-width: 430px) {

  .recruit-table th,
  .recruit-table td {
    font-size: 1.6rem;
  }
}

.recruit-table th {
  border-bottom: 10px solid #005f2e;
  font-weight: bold;
  width: 30%;
}

@media (max-width: 768px) {

  .recruit-table th,
  .recruit-table td {
    width: 100%;
    display: block;
  }

  .recruit-table td {
    padding: 1.0em 0em 1.5em;
    border-bottom: 2px solid #b4b4b4;
  }

  .recruit-table th {
    border-bottom: 6px solid #005f2e;
    width: 50%;
    padding: 1.5em 1em .5em 0;
    font-weight: 700;
  }
}

@media (max-width: 430px) {
  .recruit-table th {
    width: 45%;
  }
}

.policy {
  text-align: center;
  margin-bottom: 3em;
  font-size: 1.7rem;
  margin-top: 3em;
}

@media (max-width: 430px) {
  .policy {
    font-size: 1.6rem;
  }
}

i {
  display: inline-block;
}

i img {
  width: 18px;
  margin-left: 15px;
}

.link_btn a {
  width: 530px;
  margin-left: 10px;
  margin-right: 10px;
  text-align: center;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
  overflow: hidden;
  position: relative;
  z-index: 1;
  border: #181818 solid 1px;
  display: block;
  font-size: 1.7rem;
  line-height: 108px;
  background-color: #fff;
  color: #181818;
}

@media (max-width: 1024px) {
  .link_btn {
    width: 100%;
    margin-bottom: 1.5em;
  }

  .link_btn a {
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
    font-size: 1.7rem;
  }
}


@media (max-width: 430px) {
  .link_btn a {
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
    line-height: 80px;
    font-size: 1.7rem;
  }
}

.link_btn a::after {
  background-color: #181818;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}

.link_btn a:hover {
  color: #fff;
}

.link_btn a:hover::after {
  transform: scale(1, 1);
}

.link_btn a span {
  font-weight: 900;
}

span.red {
  color: #9a002b;
}

span.green {
  color: #005b38;
}

a:hover span.green,
a:hover span.red {
  color: #fff;
}

/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}

.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}

/*----------------------------
scroll_left ｜左から出現
----------------------------*/
.scroll_left {
  -webkit-transition: 0.8s ease-in-out;
  -moz-transition: 0.8s ease-in-out;
  -o-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  transform: translateX(-30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}

.scroll_left.on {
  opacity: 1.0;
  filter: alpha(opacity=100);
  -moz-opacity: 1.0;
  transform: translateX(0);
}

/*----------------------------
scroll_right ｜右から出現
----------------------------*/
.scroll_right {
  -webkit-transition: 0.8s ease-in-out;
  -moz-transition: 0.8s ease-in-out;
  -o-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  transform: translateX(30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}

.scroll_right.on {
  opacity: 1.0;
  filter: alpha(opacity=100);
  -moz-opacity: 1.0;
  transform: translateX(0);
}

[type=text],
[type=tel],
[type=email],
[type=date],
[type=number],
[type=submit],
[type=button],
button,
textarea,
select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input,
select {
  vertical-align: middle;
}

select {
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 1.7rem;
}

select::-ms-expand {
  display: none;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit],
[role=button] {
  cursor: pointer;
}

[type=text],
[type=email],
[type=tel] {
  border: 1px solid #ccc;
  height: 50px;
  width: 100%;
  padding: 0.5em 1em;
}

[type=radio] {
  width: 22px;
  height: 22px;
  margin-right: 5px;
}

input#zip {
  width: 120px;
  margin-bottom: 15px;
}


@media screen and (min-width: 768px) {

  [type=text],
  [type=email],
  [type=tel] {
    height: 60px;
    font-size: 3.2vw;
  }
}

@media screen and (min-width: 1024px) {

  [type=text],
  [type=email],
  [type=tel] {
    height: 50px;
    font-size: 1.7rem;
  }
}

[type=checkbox] {
  border: 1px solid #ccc;
  border-radius: 0;
  margin-right: 10px;
  width: 22px;
  height: 22px;
}

textarea {
  border: 1px solid #ccc;
  height: 370px;
  width: 100%;
  padding: 15px;
  line-height: 1.5em;
}

::placeholder {
  color: #A5A5A5;
}

.send {
  width: 480px;
  margin-left: auto;
  margin-right: auto;
  height: 80px;
  border-radius: 40px;
  background-color: #c8b306;
  cursor: pointer;
}

.submit-btn {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
}

.submit-btn::after {
  position: absolute;
  content: url('../images/yajirusi.png');
  width: 80px;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
}

[type=submit] {
  display: block;
  width: 100%;
  color: #fff;
  text-align: center;
  line-height: 78px;
  font-size: 2.0rem;
  font-weight: 700;
}

.sp540 {
  display: none;
}

@media (max-width: 540px) {
  .send {
    width: 100%;
  }

  .sp540 {
    display: block;
  }
}

@media (max-width: 450px) {
  .send {
    width: 100%;
    height: 70px;
    border-radius: 35px;
  }

  .submit-btn::after {
    content: '';
    width: 0px;
    right: 0px;
  }

  [type=submit] {
    font-size: 1.7rem;
    line-height: 68px;
  }

  .mw_wp_form .horizontal-item+.horizontal-item,
  .mwform-radio-field horizontal-item {
    margin-left: 0 !important;
    margin-bottom: 5px !important;
    display: block !important;
  }

  .mwform-checkbox-field label,
  .mwform-radio-field label {
    margin-bottom: 5px !important;
    display: block !important;
  }
}

.footer_menu {
  position: fixed;
  display: flex;
  align-items: stretch;
  left: 0;
  bottom: 0;
  width: 100%;
  transform: translateY(100%);
  transition: .3s;
  z-index: 10000;
}

.footer_menu li {
  width: 50%;
}

.footer_menu li a {
  display: block;
  font-size: 2.0rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  text-decoration: none;
  padding: 1.5em 2em;
  line-height: 1.4em;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer_menu li.left {
  background: #9a002b;
}

.footer_menu li.right {
  background: #181818;
}

.active {
  transform: translate(0);
}


@media (max-width: 540px) {
  .footer_menu li a {
    font-size: 1.4rem;
    padding: 1em 1em;
    text-align: left;
  }
}


@media (max-width: 393px) {
  h3 {
    font-size: 5rem;
  }
}

.spsm {
  display: none;
}

@media (max-width: 360px) {
  .spsm {
    display: block;
  }
}


#second_h2_ttl {
  padding-bottom: 5em;
  text-align: center;
  width: 100%;
  background-color: #005b38;
  margin-top: -130px;
  padding-top: 7em;
}

h2#second_ttl {
  font-size: 4.0rem;
  line-height: 1.3em;
  color: #fff;
}


.team-area,
.fukuri-area {
  display: flex;
  justify-content: space-between;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  flex-wrap: wrap;
  align-items: stretch;
}

.team-area::after {
  content: "";
  display: block;
  width: 31%;
}

.team.full {
  width: 100%;
  display: flex;
}

.team {
  width: 31%;
  text-align: center;
  background: #fff;
  box-shadow: 2px 2px 7px #e1e1e1;
  border-top-left-radius: 5rem;
  border-bottom-right-radius: 5rem;
  margin-bottom: 3em;
}

.team.fukuri {
  width: 48%;
  padding: 2.5em 2.0em;
}

.team.fukuri h5 {
  margin-bottom: .5em;
  text-align: center;
}

.team.fukuri .naiyou h5 span {
  font-size: 80%;
  display: inline;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  width: auto;
  height: auto;
  background-color: unset;
}

.team.fukuri h5 img {
  display: block;
  margin-left: auto;
  width: auto;
  margin-right: auto;
  margin-top: 15px;
  margin-bottom: 5px;
  height: 46px;
}

.team.type02 {
  width: 31%;
  text-align: center;
  background: #fff;
  box-shadow: 2px 2px 7px #e1e1e1;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  margin-bottom: 3em;
}


@media (max-width: 1024px) {
  .team.fukuri h5 img {
    display: block !important;
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
  }
}

.team.fukuri h5+p {
  font-size: 1.7rem;
  margin-bottom: 0em;
  text-align: center;
  line-height: 1.6em;
}

.team.fukuri h5+p span {
  font-size: 80%;
  display: block;
  text-align: left;
}

.fukuri-other {
  max-width: 1200px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding: 2.0em;
  text-align: left;
  border: 1px solid #181818;
}

.fukuri-other p {
  font-size: 1.7rem;
  line-height: 1.6em;
}

.fukuri-other p:nth-child(2) {
  margin-bottom: 1em;
}

.fukuri-other p:last-child {
  margin-top: 1em;
}

.fukuri-other p.green {
  color: #005b38;
  font-weight: 700;
}

@media (max-width: 540px) {
  .team.fukuri {
    width: 100%;
    padding: 2.0em 1.5em;
  }
}

@media (max-width: 430px) {
  .fukuri-other {
    padding: 1.5em;
  }

  .team.fukuri {
    width: 100%;
    padding: 2em 1.5em;
  }

  .fukuri-other p {
    font-size: 1.6rem;
  }

  .team.fukuri h5+p {
    font-size: 1.6rem;
    text-align: left;
  }
}


@media (max-width: 768px) {
  #second_h2_ttl {
    padding-top: 5em;
    padding-bottom: 2em;
  }

  h2#second_ttl {
    font-size: 3.0rem;
  }


  .team,
  .team.full,
  .team.type02 {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .team.full {
    flex-direction: column;
  }
}

.team-image {
  width: 20rem;
  height: 20rem;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2em;
}

.team-image.type02 {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0em;
}

.team-image img {
  object-fit: cover;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}

.team-image.type02 img {
  object-fit: contain;
  border-radius: 10px 10px 0 0%;
  width: 100%;
  height: auto;
}

.team-image .name {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
}

.team-image.full {
  max-width: 500px;
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-left: 2em;
  margin-right: auto;
  margin-top: 2em;
  text-align: center;
}

.face {
  max-width: 300px;
  width: 24vw;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}

.face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-image .name span {
  display: block;
  font-size: 80%;
  color: #003c1d;
}

.team-image .yakusyoku {
  margin-top: 1em;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.6em;
}

.team-detail {
  padding: 2.5em;
  display: flex;
  flex-direction: column;
}

.team-detail.full {
  padding: 2.5em;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.team-detail.full .comment {
  flex: auto;
}


.team-detail.type02 {
  padding: 2.0em 2.5em 2.5em;
}

@media (max-width: 768px) {
  .team-detail .comment {
    font-size: 1.6rem;
  }

  .team-image.full {
    margin-left: auto;
    margin-right: auto;
  }

  .team-detail.full {
    padding: 2em 1.5em;
  }

  .face {
    width: 20rem;
    height: 20rem;
  }

  .team-detail {
    padding: 2.0em 1.5em;
    display: flex;
    flex-direction: column;
  }

}

@media (max-width: 540px) {
  .team-area {
    width: 100%;
  }

  .team-detail.full {
    padding: 2.0em 1.5em;
  }

  .team-detail {
    padding: 2.0em 1.5em;
  }

}

.team-detail .name {
  font-size: 2.0rem;
  line-height: 1.4em;
  font-weight: 700;
  margin-bottom: 1em;
}

.team-detail .name span {
  font-size: 1.6rem;
  color: #ccc;
  font-weight: 700;
  display: block;
  font-family: "tahoma", "Hiragino Sans", sans-serif;
  margin-top: .2em;
}

.team-detail .yakusyoku {
  font-size: 1.7rem;
  margin-bottom: 1em;
  font-weight: 700;
}

.team-detail .yakusyoku.min {
  font-size: 1.6rem;
}

.team-detail .name span.sm {
  font-size: 1.4rem;
}

.team-detail .comment {
  font-size: 1.6rem;
  text-align: left;
  flex-grow: 1;
}

@media (max-width: 393px) {
  #second_h2_ttl {
    padding-top: 5.5em;
  }
}

.mwform-radio-field.horizontal-item {
  display: block;
  margin-bottom: 5px;
}

.mw_wp_form .horizontal-item+.horizontal-item {
  margin-left: 0px !important;
}

.instabtn {
  width: 150px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2em;
}

.instabtn img {
  border-radius: 0;
}