@charset "UTF-8";
body {
  font-size: 16px;
  font-family: "Noto Sans JP", Helvetica, sans-serif;
  font-weight: normal;
  width: 100%;
  height: 100%;
  background-image: url("../images/mainBG.jpg");
  background-position: right top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  body {
    background: none;
  }
}
@media screen and (min-width: 2048px) {
  body {
    background-image: url("../images/mainBGBIG.jpg");
  }
}
@media screen and (max-width: 1380px) {
  body {
    background-image: url("../images/mainBGSmall.jpg");
  }
}

@media screen and (min-width: 1025px) {
  .sp_only {
    display: none;
  }
}

.pc_only {
  display: none;
}
@media screen and (min-width: 1025px) {
  .pc_only {
    display: block;
  }
}

#allFrame {
  width: 580px;
  margin-left: 170px;
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  #allFrame {
    width: auto;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }
}
@media screen and (min-width: 1301px) {
  #allFrame {
    width: 680px;
    margin-left: 160px;
  }
}
@media screen and (min-width: 1501px) {
  #allFrame {
    width: 760px;
    margin-left: 200px;
  }
}
@media screen and (min-width: 1701px) {
  #allFrame {
    width: 880px;
    margin-left: 200px;
  }
}
@media screen and (min-width: 1921px) {
  #allFrame {
    width: 980px;
    margin-left: 200px;
  }
}

div.pcTitleLine {
  width: 150px;
  position: fixed;
  top: 1.2%;
  left: 40px;
}
div.pcTitleLine p.namePosition {
  padding-left: 4%;
  font-size: 1.6rem;
  font-weight: bold;
}
div.pcTitleLine p.pcName {
  color: #004098;
  font-size: 1.2rem;
  writing-mode: vertical-lr;
  padding-left: 10px;
  letter-spacing: 0.4rem;
}
div.pcTitleLine p.pcName span {
  font-size: 3.8rem;
  line-height: 120%;
  font-weight: bold;
}
div.pcTitleLine p.pcName a {
  color: #004098;
}
div.pcTitleLine p.pcCatchCopy {
  margin-top: 15%;
  font-size: 5rem;
  font-weight: bold;
  color: #004098;
  writing-mode: vertical-lr;
  line-height: 90%;
  /*    -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;*/
  z-index: 5;
}
div.pcTitleLine p.pcCatchCopy span {
  font-size: 2.5rem;
}
div.pcTitleLine p.pcLinks {
  margin-top: 12px;
  font-size: 1rem;
  font-weight: bold;
}
div.pcTitleLine p.pcLinks a {
  color: #fff;
  display: block;
  margin: 3% 5%;
  border-radius: 8px;
  text-align: left;
  background-color: #004098;
  border-radius: 50%;
  width: 76px;
  height: 76px;
  padding-top: 28px;
  text-align: center;
}
div.pcTitleLine p.pcLinks a:hover {
  background-color: #0054a7;
}
div.pcTitleLine p.pcLinks a.secondline {
  line-height: 130%;
  padding-top: 20px;
}
div.pcTitleLine p.pcLinksSns {
  margin-top: 30%;
}
div.pcTitleLine p.pcLinksSns a {
  display: block;
}
div.pcTitleLine p.pcLinksSns a img {
  width: 40px;
}

#frame {
  width: 100%;
  margin: 0px;
  padding: 0px;
  font-weight: normal;
}
@media screen and (min-width: 1025px) {
  #frame {
    max-width: 400px;
    margin: 0px auto 0px;
    display: none;
  }
}

div.header {
  margin: 0px;
  padding: 1% 5% 2%;
  z-index: 90;
  display: flex;
}
@media screen and (min-width: 1025px) {
  div.header {
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 84, 167, 0.9);
    width: 100%;
  }
}
div.header div.nameArea {
  color: #004098;
  font-weight: bold;
  height: 50px;
  padding-top: 24px;
  z-index: 900;
}
div.header div.nameArea img {
  width: 120px;
}

div#slider2 .splide__slide {
  margin: 2%;
}
@media screen and (max-width: 1024px) {
  div#slider2 .splide__slide {
    max-width: 90%;
    margin: 2% 2%;
  }
}

div#fixed-header {
  z-index: 99;
  position: fixed;
  top: -80px;
  width: 100%;
  height: 70px;
  font-size: 2em;
  text-align: center;
  color: #fff;
  background-color: rgba(0, 84, 167, 0.9);
  box-sizing: border-box;
  transition: 0.5s;
  padding-top: 1%;
}
div#fixed-header div.nameArea {
  font-size: 1rem;
}
div#fixed-header div.nameArea h1 {
  font-size: 1.5rem;
}

#fixed-header.is-show {
  top: 0;
}

/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}

.scroll_up.on {
  transform: translateY(0);
  opacity: 1;
}

/*----------------------------
scroll_left ｜左から出現
----------------------------*/
.scroll_left {
  transition: 0.8s ease-in-out;
  transform: translateX(-30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}

.scroll_left.on {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  transform: translateX(0);
}

/*----------------------------
scroll_right ｜右から出現
----------------------------*/
.scroll_right {
  transition: 0.8s ease-in-out;
  transform: translateX(30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}

.scroll_right.on {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  transform: translateX(0);
}

div.mainimage {
  z-index: 2;
}

section#splider1 {
  width: 100%;
  margin: 0px auto 0px;
}
section#splider1 img {
  width: 100%;
}

/*メッセージエリア*/
div.messageArea {
  width: 100%;
  margin: 0% auto 0%;
  padding: 15% 0 15%;
  text-align: center;
  background-color: #ffffff;
}
@media screen and (max-width: 1024px) {
  div.messageArea {
    padding-top: 25%;
  }
}
@media screen and (min-width: 1401px) {
  div.messageArea {
    width: 100%;
  }
}
div.messageArea div.messageFrame {
  margin: 0px auto 0px;
  width: 660px;
}
@media screen and (max-width: 1024px) {
  div.messageArea div.messageFrame {
    width: 100%;
  }
}
div.messageArea div.messageFrame h2 {
  color: #333333;
  font-size: 3rem;
}
@media screen and (max-width: 1024px) {
  div.messageArea div.messageFrame h2 {
    font-size: 2rem;
  }
}
div.messageArea div.messageFrame hr {
  border: 1px solid #333;
  width: 15%;
}
div.messageArea div.messageFrame h3 {
  font-size: 2rem;
  margin-top: 1rem;
  color: #f39800;
}
div.messageArea div.messageFrame div.messageText {
  margin: 9%;
  font-size: 1.1em;
  text-align: left;
  line-height: 190%;
  padding-left: 1rem;
}
@media screen and (max-width: 1024px) {
  div.messageArea div.messageFrame div.messageText {
    font-size: 1.1rem;
    margin: 10% 5%;
    line-height: 170%;
  }
}
@media screen and (min-width: 1401px) {
  div.messageArea div.messageFrame div.messageText {
    font-size: 1.2rem;
    margin: 9%;
    line-height: 170%;
  }
}
div.messageArea div.messageFrame div.messageText p.moreArea {
  margin: 1rem 0 1rem 4rem;
}
@media screen and (max-width: 1024px) {
  div.messageArea div.messageFrame div.messageText p.moreArea {
    margin-left: 10%;
  }
}
div.messageArea div.messageFrame div.messageText p.moreArea span.messageIndent {
  margin-left: -1.5rem;
}
div.messageArea div.messageFrame div.messageText p.moreArea span.moreText {
  font-weight: bold;
  font-size: 1.8rem;
  color: #242424;
}
div.messageArea div.messageFrame div.messageText p.moreArea span.moreText span.moreFirst {
  color: #00abeb;
}
div.messageArea p.sig {
  text-align: right;
  margin-right: 10%;
}
div.messageArea p.sig img {
  max-width: 180px;
}
@media screen and (min-width: 1401px) {
  div.messageArea p.sig img {
    max-width: 230px;
  }
}

div.profileArea {
  background-color: #efefef;
  width: 100%;
  margin: 0px auto 0px;
  padding: 10% 2% 15%;
  background-image: url("../images/profileBg.png");
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 80%;
  /*
  div.profileText::first-letter {
    @media screen and (max-width: 1024px) {
      margin-left: -5%;
    }
  }*/
}
@media screen and (max-width: 1024px) {
  div.profileArea {
    padding-top: 25%;
  }
}
div.profileArea div.profileFrame {
  display: flex;
}
@media screen and (max-width: 1024px) {
  div.profileArea div.profileFrame {
    background-image: none;
    display: block;
  }
}
div.profileArea div.profileFrame div.profileTitle {
  font-size: 2rem;
  text-align: left;
  writing-mode: vertical-lr;
  color: #004098;
  font-weight: bold;
  line-height: 100%;
  width: 4%;
}
@media screen and (max-width: 1024px) {
  div.profileArea div.profileFrame div.profileTitle {
    writing-mode: horizontal-tb;
    width: 100%;
    margin-left: 5%;
  }
}
div.profileArea div.profileFrame div.profileTitle span.profileEng {
  font-size: 1.4rem;
}
div.profileArea div.profileFrame img {
  margin-top: 20%;
  width: 200px;
}
div.profileArea div.profileText {
  margin-left: 15%;
  font-size: 1rem;
  line-height: 180%;
  color: #333;
  text-align: left;
  width: 75%;
}
@media screen and (max-width: 1024px) {
  div.profileArea div.profileText {
    margin: 10% 0 10% 10%;
    font-size: 1rem;
    width: 85%;
  }
}
@media screen and (min-width: 1401px) {
  div.profileArea div.profileText {
    font-size: 1.1rem;
  }
}
div.profileArea div.profileText span.profileNow {
  display: block;
  margin-bottom: 1rem;
  font-size: 1.6rem;
  font-weight: bold;
}
div.profileArea div.profileText span.profileNow span.profileYears {
  font-size: 1rem;
}
div.profileArea div.profileText span.circle {
  color: #004098;
  margin-left: -1rem;
}
div.profileArea div.profileText hr {
  border-width: 80%;
  margin: 10% auto 10%;
  border-color: #004098;
}
div.profileArea div.profileText p.profileTopic {
  font-size: 1rem;
  margin: 10% 0 2% -5%;
}
@media screen and (max-width: 1024px) {
  div.profileArea div.profileText p.profileTopic {
    font-size: 1rem;
  }
}
div.profileArea div.profileText span.porifleTextLarge {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 5%;
  font-weight: bold;
}
div.profileArea div.profileText p.profileSpPhoto {
  margin: 0px;
  padding: 0px;
  line-height: 100%;
}
div.profileArea div.profileText p.profileSpPhoto img {
  width: 100%;
  margin: 2% 0;
}
div.profileArea div.profileText details summary.profileAccordion {
  border: 2px solid #004098;
  color: #004098;
  background-color: #fff;
  border-radius: 8px;
  padding: 2% 5%;
  text-align: center;
}
div.profileArea div.profileText details ul.detailsTextArea {
  font-size: 1rem;
  list-style-type: disc;
  margin-top: 5%;
  margin-left: 1.5rem;
  margin-bottom: 0px;
}
div.profileArea div.profileText details ul.detailsTextArea li {
  line-height: 150%;
  margin-bottom: 2%;
}
div.profileArea div.profileText details ul.detailsPlusArea {
  padding: 0 0 5% 1rem;
  font-size: 1rem;
  list-style-type: disc;
  margin-left: 0.5rem;
}
div.profileArea div.profileText details ul.detailsPlusArea li {
  line-height: 150%;
  margin-bottom: 2%;
}

div.profileDetail {
  margin-top: 15%;
  line-height: 220%;
  padding: 3%;
}
@media screen and (max-width: 1024px) {
  div.profileDetail {
    padding: 4%;
  }
}
div.profileDetail div.historyTitle {
  font-size: 3rem;
  font-weight: bold;
  color: #004098;
}
div.profileDetail div.historyTitleEn {
  font-size: 1.4rem;
  font-weight: bold;
  margin-top: 1%;
  color: #004098;
  letter-spacing: 0.2rem;
}
div.profileDetail div.historyDetailFrame {
  margin: 3% 0 3%;
  display: flex;
}
div.profileDetail div.historyDetailFrame div.historyPhotoArea {
  width: 120px;
  max-width: 20%;
}
div.profileDetail div.historyDetailFrame div.historyText {
  margin: 2% 4%;
  color: #333;
  font-size: 1rem;
  max-width: 70%;
  line-height: 150%;
}
@media screen and (max-width: 1024px) {
  div.profileDetail div.historyDetailFrame div.historyText {
    font-size: 1rem;
    width: 80%;
  }
}
div.profileDetail div.historyDetailFrame div.historyText span.historyPoint {
  color: #004098;
  font-size: 1.6rem;
  font-weight: bold;
  display: block;
  margin-bottom: 3%;
}
@media screen and (max-width: 1024px) {
  div.profileDetail div.historyDetailFrame div.historyText span.historyPoint {
    font-size: 2rem;
  }
}

div.activityArea {
  padding: 15% 0 5%;
  text-align: center;
  background-color: #004098;
  color: #fff;
  background-image: url("../images/infographicsBG.png");
  background-position: bottom right;
  background-size: 90%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1024px) {
  div.activityArea {
    padding-top: 20%;
  }
}
div.activityArea h2 {
  font-size: 3rem;
  margin-bottom: 5%;
}
@media screen and (max-width: 1024px) {
  div.activityArea h2 {
    font-size: 2rem;
  }
}
div.activityArea h2 span.activityTitleSmall {
  font-size: 2rem;
  display: block;
  padding: 0px;
  margin-bottom: -5px;
}
@media screen and (max-width: 1024px) {
  div.activityArea h2 span.activityTitleSmall {
    font-size: 1.4rem;
  }
}
div.activityArea a.activitySubLead {
  margin: 8% auto 5%;
  padding: 2% 5%;
  display: block;
  border-radius: 8px;
  border: 3px solid #004098;
  width: 80%;
  font-size: 1.2em;
  font-weight: bold;
  background-color: #fff;
  color: #262d57;
}
@media screen and (max-width: 1024px) {
  div.activityArea a.activitySubLead {
    font-size: 1.1rem;
    margin: 8% auto 15%;
  }
}
div.activityArea a.activitySubLead:hover {
  background-color: #00abeb;
  color: #fff;
}
div.activityArea p.activitySubLead {
  margin-bottom: 10%;
}
div.activityArea a.infographicsArea {
  display: block;
  background-color: #fff;
  border-radius: 8px;
  width: 70%;
  margin: 2% auto 5%;
}
div.activityArea a.infographicsArea span.infographicsTitle {
  color: #004098;
  font-weight: bold;
  font-size: 1rem;
  display: block;
  padding: 5% 0 5%;
}
@media screen and (min-width: 1301px) {
  div.activityArea a.infographicsArea span.infographicsTitle {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 1501px) {
  div.activityArea a.infographicsArea span.infographicsTitle {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 1601px) {
  div.activityArea a.infographicsArea span.infographicsTitle {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1701px) {
  div.activityArea a.infographicsArea span.infographicsTitle {
    font-size: 1.5rem;
  }
}
div.activityArea a.infographicsArea span.infographicsBody {
  color: #333;
  font-size: 1rem;
  display: block;
  text-align: left;
  padding: 5%;
}

div.stanceArea2 {
  background-color: #64a4dc;
  width: 100%;
  text-align: center;
  padding: 15% 2% 10%;
  background-image: url("../images/stanceBg.png");
  background-position: top right;
  background-size: 100%;
  background-repeat: repeat-y;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  div.stanceArea2 {
    display: block;
  }
}
div.stanceArea2 h3 {
  width: 100%;
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  div.stanceArea2 h3 {
    font-size: 2rem;
  }
}
div.stanceArea2 div.stanceAreaPoint {
  margin: 1% 0;
  width: 50%;
}
@media screen and (max-width: 1024px) {
  div.stanceArea2 div.stanceAreaPoint {
    width: 100%;
    margin: 5% 0;
  }
}
div.stanceArea2 div.stanceAreaPoint div.stancePointCover {
  width: 94%;
  margin: 3% auto 3%;
  background-color: #fff;
  border-radius: 8px;
  padding: 0;
  position: relative;
}
div.stanceArea2 div.stanceAreaPoint div.stancePointCover span.notRelease {
  display: none;
}
div.stanceArea2 div.stanceAreaPoint div.stancePointCover p.stancePointTitle {
  width: 100%;
  text-align: center;
  font-size: 0.9rem;
  background-color: #0054a7;
  color: #fff;
  padding: 2%;
  font-weight: bold;
  z-index: 5;
}
@media screen and (max-width: 1024px) {
  div.stanceArea2 div.stanceAreaPoint div.stancePointCover p.stancePointTitle {
    font-size: 1.1rem;
  }
}
@media screen and (min-width: 1201px) {
  div.stanceArea2 div.stanceAreaPoint div.stancePointCover p.stancePointTitle {
    font-size: 0.9rem;
  }
}
@media screen and (min-width: 1301px) {
  div.stanceArea2 div.stanceAreaPoint div.stancePointCover p.stancePointTitle {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1501px) {
  div.stanceArea2 div.stanceAreaPoint div.stancePointCover p.stancePointTitle {
    font-size: 1.1rem;
  }
}
@media screen and (min-width: 1601px) {
  div.stanceArea2 div.stanceAreaPoint div.stancePointCover p.stancePointTitle {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 1701px) {
  div.stanceArea2 div.stanceAreaPoint div.stancePointCover p.stancePointTitle {
    font-size: 1.3rem;
  }
}
div.stanceArea2 div.stanceAreaPoint div.stancePointCover div.stancePointFrame p.stancePointPic {
  width: 100%;
  padding-top: 2%;
}
div.stanceArea2 div.stanceAreaPoint div.stancePointCover div.stancePointFrame ul.stancePointText {
  width: 94%;
  padding: 1% 3% 3%;
  font-size: 1rem;
  text-align: left;
  list-style-type: none;
  margin-left: 1rem;
}
@media screen and (max-width: 1024px) {
  div.stanceArea2 div.stanceAreaPoint div.stancePointCover div.stancePointFrame ul.stancePointText {
    padding-top: 2%;
  }
}
@media screen and (min-width: 1025px) {
  div.stanceArea2 div.stanceAreaPoint div.stancePointCover div.stancePointFrame ul.stancePointText {
    font-size: 0.7rem;
  }
}
@media screen and (min-width: 1301px) {
  div.stanceArea2 div.stanceAreaPoint div.stancePointCover div.stancePointFrame ul.stancePointText {
    font-size: 0.8rem;
  }
}
@media screen and (min-width: 1601px) {
  div.stanceArea2 div.stanceAreaPoint div.stancePointCover div.stancePointFrame ul.stancePointText {
    font-size: 0.9rem;
  }
}
@media screen and (min-width: 1701px) {
  div.stanceArea2 div.stanceAreaPoint div.stancePointCover div.stancePointFrame ul.stancePointText {
    font-size: 1rem;
  }
}
div.stanceArea2 div.stanceAreaPoint div.stancePointCover div.stancePointFrame ul.stancePointText li {
  padding-left: -3em;
  text-indent: -1em;
}
div.stanceArea2 div.stanceAreaPoint div.stancePointCover div.stancePointFrame ul.stancePointText li::before {
  content: "・";
}
div.stanceArea2 div.stanceAreaPoint div.stancePointCover .stancePointBtn {
  bottom: 0;
  left: 0;
  text-align: center;
  display: block;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  color: #204483;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 2%;
  border-radius: 0px 0px 8px 8px;
  border-top: 1px solid #cccccc;
}
div.stanceArea2 div.stanceAreaPoint div.stancePointCover a.stancePointBtn:hover {
  background-color: #004098;
  color: #fff;
}
div.stanceArea2 div.stanceAreaPoint div.stancePointCover details.stanceAccordion {
  margin: 0px;
  padding: 0%;
  font-size: 1rem;
  border-radius: 0px 0px 8px 8px;
}
div.stanceArea2 div.stanceAreaPoint div.stancePointCover details.stanceAccordion summary {
  font-weight: bold;
  background-color: #64a4dc;
  padding: 1%;
  color: #fff;
  border-radius: 0px 0px 8px 8px;
}
div.stanceArea2 div.stanceAreaPoint div.stancePointCover details.stanceAccordion div.summarySet {
  width: 90%;
  margin: 5% auto;
  text-align: left;
}
div.stanceArea2 div.stanceAreaPoint div.stancePointCover details.stanceAccordion div.summarySet p.summaryTitle {
  font-size: 1.3rem;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  div.stanceArea2 div.stanceAreaPoint div.stancePointCover details.stanceAccordion div.summarySet p.summaryTitle {
    font-size: 1.1rem;
  }
}
div.stanceArea2 div.stanceAreaPoint div.stancePointCover details.stanceAccordion div.summarySet p.summaryBody {
  padding: 4% 0;
}
div.stanceArea2 a.stanceDetailBtn {
  border: 3px solid #fff;
  background-color: rgba(0, 84, 167, 0.9);
  color: #fff;
  padding: 2%;
  display: block;
  border-radius: 8px;
  width: 90%;
  margin: 5% auto;
  font-size: 1.1rem;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  div.stanceArea2 a.stanceDetailBtn {
    font-size: 1.1rem;
  }
}
@media screen and (min-width: 1401px) {
  div.stanceArea2 a.stanceDetailBtn {
    margin-top: 13%;
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 1601px) {
  div.stanceArea2 a.stanceDetailBtn {
    font-size: 1.4rem;
  }
}
div.stanceArea2 a.stanceDetailBtn:hover {
  background-color: #00abeb;
}

div.review {
  background-color: #fff;
  text-align: center;
  line-height: 180%;
  padding: 20% 0 5%;
}
div.review div.reviewTitle {
  font-size: 3rem;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  div.review div.reviewTitle {
    font-size: 2rem;
  }
}
div.review div.reviewTitle span.reviewTitleSmall {
  font-size: 2rem;
  display: block;
  margin-top: 3%;
}
@media screen and (max-width: 1024px) {
  div.review div.reviewTitle span.reviewTitleSmall {
    font-size: 1.4rem;
  }
}
div.review div.reviewPointTitle {
  background-color: #004098;
  color: #fff;
  font-size: 3rem;
  display: block;
  font-weight: bold;
  margin: 5% auto 5%;
  padding: 2% 3%;
  line-height: 100%;
  width: 40%;
  letter-spacing: 0.5rem;
}
@media screen and (max-width: 1024px) {
  div.review div.reviewPointTitle {
    font-size: 2rem;
  }
}
div.review div.reviewPointPercent {
  font-size: 8rem;
  font-weight: bold;
  margin-top: 14%;
  color: #004098;
}
@media screen and (max-width: 1024px) {
  div.review div.reviewPointPercent {
    margin-top: 15%;
    font-size: 7rem;
  }
}
@media screen and (min-width: 1401px) {
  div.review div.reviewPointPercent {
    font-size: 10rem;
  }
}
@media screen and (min-width: 1601px) {
  div.review div.reviewPointPercent {
    font-size: 11rem;
  }
}
@media screen and (min-width: 1601px) {
  div.review div.reviewPointPercent {
    font-size: 12rem;
  }
}
div.review div.reviewPointPercent span.percentText {
  font-size: 5rem;
}
@media screen and (max-width: 1024px) {
  div.review div.reviewPointPercent span.percentText {
    font-size: 3rem;
  }
}
div.review div.reviewPointNumber {
  margin: 10% auto 3%;
  font-size: 3rem;
  font-weight: bold;
  color: #004098;
}
@media screen and (max-width: 1024px) {
  div.review div.reviewPointNumber {
    font-size: 3rem;
  }
}
div.review div.reviewPointSub {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}
@media screen and (max-width: 1024px) {
  div.review div.reviewPointSub {
    font-size: 1rem;
  }
}
div.review div.reviewerArea {
  width: 90%;
  margin: 5% auto 5%;
  padding-top: 3%;
  background-color: #efefef;
}
div.review div.reviewerArea div.reviewerTop {
  text-align: center;
  padding: 3% 0px 2%;
  font-size: 1.4rem;
  font-weight: bold;
  background-color: #fff;
  width: 90%;
  margin: 1% auto 1%;
}
@media screen and (max-width: 1024px) {
  div.review div.reviewerArea div.reviewerTop {
    font-size: 1rem;
  }
}
div.review div.reviewerArea div.reviewerFrame {
  display: flex;
  padding: 7% 5% 0;
}
div.review div.reviewerArea div.reviewerFrame div.reviewerPhoto {
  width: 50%;
}
div.review div.reviewerArea div.reviewerFrame div.reviewerPhoto img {
  width: 200px;
}
@media screen and (max-width: 1024px) {
  div.review div.reviewerArea div.reviewerFrame div.reviewerPhoto img {
    width: 130px;
  }
}
div.review div.reviewerArea div.reviewerFrame div.reviewerNames {
  width: 50%;
  text-align: left;
  padding-top: 5%;
}
div.review div.reviewerArea div.reviewerFrame div.reviewerNames span.katagaki {
  font-size: 1.4rem;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  div.review div.reviewerArea div.reviewerFrame div.reviewerNames span.katagaki {
    font-size: 1.2rem;
    line-height: 100%;
  }
}
div.review div.reviewerArea div.reviewerFrame div.reviewerNames span.reviewerName {
  font-size: 2rem;
  font-weight: bold;
  display: block;
  margin-top: 2%;
}
@media screen and (max-width: 1024px) {
  div.review div.reviewerArea div.reviewerFrame div.reviewerNames span.reviewerName {
    font-size: 1.8rem;
    margin-top: -5%;
  }
}
div.review div.reviewerArea div.reviewerFrame div.reviewerNames span.reviewerName span.reviewerNameSub {
  font-size: 1.5rem;
}
@media screen and (max-width: 1024px) {
  div.review div.reviewerArea div.reviewerFrame div.reviewerNames span.reviewerName span.reviewerNameSub {
    font-size: 1.1rem;
  }
}
div.review div.reviewerArea div.reviewerFrame div.reviewerNames span.kana {
  font-size: 1.1rem;
}
@media screen and (max-width: 1024px) {
  div.review div.reviewerArea div.reviewerFrame div.reviewerNames span.kana {
    font-size: 1rem;
  }
}
div.review div.reviewerArea div.reviewerProfileArea {
  width: 90%;
  margin: 0px auto;
  padding-bottom: 3%;
}
div.review div.reviewerArea div.reviewerProfileArea hr {
  border: 1px solid #333;
}
div.review div.reviewerArea div.reviewerProfileArea div.reviewerProfile {
  padding: 2% 0;
  font-size: 1.1rem;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  div.review div.reviewerArea div.reviewerProfileArea div.reviewerProfile {
    font-size: 1rem;
    line-height: 140%;
  }
}
div.review a.reviewerBtn {
  border: 3px solid #fff;
  background-color: #004098;
  color: #fff;
  padding: 2%;
  display: block;
  border-radius: 8px;
  width: 80%;
  margin: 5% auto;
  font-size: 1.4rem;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  div.review a.reviewerBtn {
    font-size: 1.1rem;
  }
}
div.review a.reviewerBtn:hover {
  background-color: #00abeb;
}

div.officeArea {
  background-color: #efefef;
  padding: 10% 5% 5%;
}
@media screen and (max-width: 1024px) {
  div.officeArea {
    padding: 25% 5% 10%;
  }
}
div.officeArea div.officeInfo {
  margin: 0px auto 0px;
  max-width: 1000px;
  display: block;
}
div.officeArea div.officeInfo div.officeTitle {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
}
div.officeArea div.officeInfo div.officeData {
  margin: 5% 10% 15%;
}
@media screen and (max-width: 1024px) {
  div.officeArea div.officeInfo div.officeData {
    margin-left: 10%;
  }
}
div.officeArea div.officeInfo div.officeData div {
  border-bottom: 1px solid #666;
  padding-bottom: 3%;
  font-size: 1rem;
  margin-top: 5%;
}
div.officeArea div.officeMap {
  max-width: 1000px;
  margin: 8% auto 8%;
}

div#footer {
  background-color: #004098;
  padding: 4% 2% 2%;
  text-align: center;
  color: #fff;
}
div#footer .footer_logo {
  font-size: 1.6rem;
}
@media screen and (max-width: 1024px) {
  div#footer .footer_logo img {
    height: 60px;
  }
}
div#footer div.footerNameTaku {
  margin: 2% auto 2%;
  font-size: 1.6rem;
}
div#footer div.footerNameTaku span.honninName {
  font-size: 3.4rem;
  font-weight: bold;
}
div#footer div.footerSnsArea {
  margin-top: 2% auto 2%;
}
div#footer div.footerSnsArea img {
  height: 40px;
}
div#footer div.footerMenu {
  margin: 0px auto 0px;
  padding: 0px;
  text-align: center;
  font-size: 1.2rem;
}
@media screen and (max-width: 1024px) {
  div#footer div.footerMenu {
    font-size: 0.8rem;
  }
}
div#footer div.footerMenu a {
  color: #fff;
}
div#footer div.copyright {
  text-align: center;
  margin-top: 2%;
  font-size: 0.9rem;
}
@media screen and (max-width: 1024px) {
  div#footer div.copyright {
    font-size: 0.8rem;
  }
}

.accordion {
  margin: 2em 0;
}

.accordion__summary {
  background: #b2e5ff; /* アコーディオンの見出しの背景色 */
  font-weight: bold;
  position: relative;
  display: block;
  cursor: pointer;
  padding: 10px 38px 10px 10px;
}

.accordion__summary::after {
  content: "+";
  font-size: 1.4em; /* 記号のサイズ */
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.accordion input:checked ~ .accordion__summary::after {
  content: "−";
}

.accordion input {
  display: none;
}

.accordion__detail {
  display: none;
  background: #fff;
  padding: 4px 10px;
  margin: 10px 0;
}

.accordion input:checked ~ .accordion__detail {
  display: block;
}

.accordion__text {
  margin: 0;
}

div.credit {
  font-size: 0.8rem;
  text-align: right;
  padding-right: 5%;
}
div.credit a {
  color: #333333;
}/*# sourceMappingURL=yamanaka.css.map */