@charset "UTF-8";
/*=================================

Common　共通

===================================*/
/*=================================

Module　モジュール

===================================*/
/* Header
-----------------------------------*/
.Header {
  position: fixed;
  top: 0;
  left: 0;
  box-sizing: border-box;
  width: 260px;
  height: 100%;
  padding: 2em 1.3em 0;
  box-shadow: 2px 0px 2px 0px rgba(0, 0, 0, 0.1);
  background: #fff; }
  @media screen and (max-width: 1280px), screen and (max-height: 880px) {
    .Header {
      width: 200px;
      padding: 1em 1.25% 0; } }
  @media screen and (max-width: 1024px) {
    .Header {
      position: static;
      width: 100%;
      padding: 0.5em 2%; } }
  .Header__Inner {
    background: #fff; }
    @media screen and (max-width: 1024px) {
      .Header__Inner {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999;
        width: 100%;
        max-width: 200px;
        height: 100%;
        padding: 5em 2% 2em;
        transition: 0.2s;
        transform: translate(-200px); } }
    @media screen and (max-width: 768px) {
      .Header__Inner {
        max-width: none;
        padding-top: 2em;
        transform: translate(-100%);
        overflow-y: auto; } }
  .Header__Inner.open {
    transform: translate(0); }
  .Header__Logo {
    position: relative;
    width: 100%;
    margin-bottom: 10%;
    padding-top: 68.75%; }
    @media screen and (max-width: 1024px) {
      .Header__Logo {
        max-width: 110px;
        margin-bottom: 0;
        padding-top: 0; } }
    @media screen and (max-width: 768px) {
      .Header__Logo {
        max-width: 70px; } }
  .Header__Logo img {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%; }
    @media screen and (max-width: 1024px) {
      .Header__Logo img {
        position: static;
        height: inherit; } }
  .Header__Tel {
    margin-bottom: 5%;
    font-size: 32px;
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.2;
    color: #F06049; }
    @media screen and (max-width: 1280px), screen and (max-height: 880px) {
      .Header__Tel {
        font-size: 23px;
        font-size: 2.3rem;
        margin-bottom: 2.5%; } }
    @media screen and (max-width: 768px) {
      .Header__Tel {
        text-align: center; } }
  .Header__Tel span {
    display: block;
    font-size: 15px;
    font-size: 1.5rem; }
    @media screen and (max-width: 1280px), screen and (max-height: 880px) {
      .Header__Tel span {
        font-size: 14px;
        font-size: 1.4rem; } }
  .Header__Contact {
    display: block;
    width: 100%;
    max-width: 210px;
    margin: 0 auto 15%;
    padding: 0.5em 0 0.25em;
    text-align: center;
    color: #fff;
    border-radius: 5px;
    background: #F06049; }
  .Header__Contact::before {
    display: inline-block;
    content: "";
    width: 20px;
    height: 14px;
    margin-right: 0.4em;
    vertical-align: middle;
    background: url("../img/index/contact_mail_icon.gif") center no-repeat;
    background-size: contain; }
		
  .Header__Information {
    font-size: 12px;
    font-size: 1.2rem; 
		position: absolute;
		bottom : 2em ;
		left: 20px;
		}
		
    @media screen and (max-width: 768px) {
      .Header__Information {
        padding-top: 1em;
        text-align: center;
        border-top: 1px solid #ccc; } }
  .Header__Menu {
    display: none;
    position: fixed;
    top: 2.5%;
    right: 1em;
    height: 32px;
    z-index: 1000;
    cursor: pointer; }
    @media screen and (max-width: 1024px) {
      .Header__Menu {
        display: block; } }
    @media screen and (max-width: 768px) {
      .Header__Menu {
        top: 2%; } }
    .Header__Menu > div {
      position: relative;
      width: 36px; }
    .Header__Menu span {
      width: 100%;
      height: 3px;
      left: 0;
      display: block;
      border-radius: 3px;
      background: #F7931E;
      position: absolute;
      transition: transform .4s ease-in-out, top .3s ease; }
      .Header__Menu span:nth-child(1) {
        top: 0; }
      .Header__Menu span:nth-child(2) {
        top: 14px; }
      .Header__Menu span:nth-child(3) {
        top: 28px; }
  .Header__Menu.active span:nth-child(1) {
    top: 15px;
    transform: rotate(45deg); }
  .Header__Menu.active span:nth-child(2) {
    top: 15px;
    width: 0;
    left: 50%; }
  .Header__Menu.active span:nth-child(3) {
    top: 15px;
    transform: rotate(-45deg); }

/* Nav
-----------------------------------*/
.Nav {
  margin-bottom: 35%; }
  @media screen and (max-width: 768px) {
    .Nav {
      margin-bottom: 15%; } }
  .Nav-List__Item {
    margin-bottom: 12%;
    font-size: 14px;
    font-size: 1.4rem; }
    @media screen and (max-width: 768px) {
      .Nav-List__Item {
        margin-bottom: 8%; } }
  .Nav-List__Item:nth-last-of-type(1) {
    margin-bottom: 0; }
  .Nav-List__Item a {
    display: block;
    position: relative;
    width: 100%;
    background: url("../img/share/nav_arow.png") center right no-repeat;
    background-size: 8px 13px; }
  .Nav-List__Item:hover a {
    background: url("../img/share/nav_arow_hover.png") center right no-repeat; }
  .Nav-List__Item a::before {
    display: inline-block;
    content: "";
    width: 30px;
    height: 30px;
    vertical-align: middle;
    margin-right: 1em; }
    @media screen and (max-width: 1280px) {
      .Nav-List__Item a::before {
        width: 25px;
        height: 25px;
        margin-right: 0.5em; } }
  .Nav-List__Item:nth-of-type(1) a::before {
    background: url("../img/share/nav_icon01.png") center no-repeat;
    background-size: contain; }
  .Nav-List__Item:nth-of-type(1):hover a::before {
    background: url("../img/share/nav_icon01_hover.png") center no-repeat;
    background-size: contain; }
  .Nav-List__Item:nth-of-type(2) a::before {
    background: url("../img/share/nav_icon02.png") center no-repeat;
    background-size: contain; }
  .Nav-List__Item:nth-of-type(2):hover a::before {
    background: url("../img/share/nav_icon02_hover.png") center no-repeat;
    background-size: contain; }
  .Nav-List__Item:nth-of-type(3) a::before {
    background: url("../img/share/nav_icon03.png") center no-repeat;
    background-size: contain; }
  .Nav-List__Item:nth-of-type(3):hover a::before {
    background: url("../img/share/nav_icon03_hover.png") center no-repeat;
    background-size: contain; }
  .Nav-List__Item:nth-of-type(4) a::before {
    background: url("../img/share/nav_icon04.png") center no-repeat;
    background-size: contain; }
  .Nav-List__Item:nth-of-type(4):hover a::before {
    background: url("../img/share/nav_icon04_hover.png") center no-repeat;
    background-size: contain; }
  .Nav-List__Item:nth-of-type(5) a::before {
    background: url("../img/share/nav_icon05.png") center no-repeat;
    background-size: contain; }
  .Nav-List__Item:nth-of-type(5):hover a::before {
    background: url("../img/share/nav_icon05_hover.png") center no-repeat;
    background-size: contain; }
  .Nav-List__Item:nth-of-type(6) a::before {
    background: url("../img/share/nav_icon06.png") center no-repeat;
    background-size: contain; }
  .Nav-List__Item:nth-of-type(6):hover a::before {
    background: url("../img/share/nav_icon06_hover.png") center no-repeat;
    background-size: contain; }
  .Nav-List__Item:nth-of-type(7) a::before {
    background: url("../img/share/nav_icon07.png") center no-repeat;
    background-size: contain; }

/* Main
-----------------------------------*/
.Section__Inner {
  width: 90%;
  margin: auto; }
.Section__Title {
  font-size: 14px;
  font-size: 1.4rem; }
.Section__Title b {
  font-family: futura-pt, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 42px;
  font-size: 4.2rem;
  line-height: 1.2; }
  @media screen and (max-width: 1024px) {
    .Section__Title b {
      font-size: 35px;
      font-size: 3.5rem; } }
.Section__Title span {
  display: block; }
.Section__Title::before {
  display: inline-block;
  content: "";
  width: 31px;
  height: 31px; }

.Top {
  position: relative;
  box-sizing: border-box;
  padding: 4% 2%;
  background-image: linear-gradient(-45deg, #ffffff 25%, #ffeedb 25%, #ffeedb 50%, #ffffff 50%, #ffffff 75%, #ffeedb 75%, #ffeedb);
  background-size: 30px 30px; }
  @media screen and (max-width: 1280px), screen and (max-height: 880px) {
    .Top {
      padding: 1em 2%; } }
  .Top__Inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 95%;
    max-width: 1280px;
    margin: auto; }
    @media screen and (max-height: 880px) {
      .Top__Inner {
        max-width: 840px; } }
  .Top__Item {
    width: 24%;
    margin: 0 0.5% 0.5em; }
    @media screen and (max-width: 768px) {
      .Top__Item {
        width: 32%; } }
  .Top__Item-Large {
    width: 49%; }
    @media screen and (max-width: 768px) {
      .Top__Item-Large {
        width: 65%; } }
  .Top__Item img {
    display: block;
    width: 100%; }

.News {
  padding: 5em 0; }
  .News__Inner {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 900px; }
    @media screen and (max-width: 1280px) {
      .News__Inner {
        display: block; } }
  @media screen and (max-width: 1280px) {
    .News__Title {
      margin-bottom: 1em;
      text-align: center; } }
  .News__Title span {
    margin-left: 40px; }
    @media screen and (max-width: 1280px) {
      .News__Title span {
        margin-left: 0; } }
  .News__Title::before {
    margin-right: 0.5em;
    background: url("../img/index/news_head_icon.gif") center no-repeat;
    background-size: contain; }
    @media screen and (max-width: 1280px) {
      .News__Title::before {
        display: block;
        margin: auto; } }
  .News-List {
    width: 100%;
    max-width: 693px;
    min-height: 180px; }
    @media screen and (max-width: 1280px) {
      .News-List {
        margin: 0 auto 3em;
        min-height: inherit; } }
  .News-List__Title {
    float: left;
    padding: 1em 0 0.8em;
    color: #F7931E; }
  .News-List__Content {
    padding: 1em 0 0.8em 6em;
    border-bottom: 1px dashed #999; }
  .News-List__Content span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; }
  .News__Button {
    display: block;
    position: absolute;
    top: 45%;
    left: 0;
    width: 100%;
    max-width: 117px;
    padding: 0.6em 0;
    font-size: 14px;
    font-size: 1.4rem;
    text-align: center;
    line-height: 1;
    color: #fff;
    border-radius: 18px;
    background: #F7931E; }
    @media screen and (max-width: 1280px) {
      .News__Button {
        position: static;
        margin: auto; } }
  .News__Button::after {
    display: inline-block;
    content: "";
    width: 18px;
    height: 18px;
    margin-left: 0.25em;
    vertical-align: text-bottom;
    background: url("../img/index/button_arrow.gif") center no-repeat;
    background-size: contain; }
  .News__Wrapper {
    width: 95%;
    max-width: 693px;
    margin: 0 auto; }
  .News__Inner-detail {
    margin-bottom: 5em; }
  .News__Title-detail {
    margin-bottom: 5em;
    text-align: center; }
  .News__Title-detail span {
    display: block;
    margin-left: 0; }
  .News__Title-detail::before {
    display: block;
    margin: auto; }
  .News__Head {
    position: relative;
    max-width: 912px;
    margin: auto;
    padding-bottom: 0.5em;
    border-bottom: 1px solid #d2d2d2; }
  .News__Day {
    color: #F7931E; }
    @media screen and (max-width: 768px) {
      .News__Day {
        display: block;
        position: static;
        margin-bottom: 0.5em; } }
  .News__SubTitle {
    font-size: 21px;
    font-size: 2.1rem; }
  .News__Body {
    max-width: 912px;
    margin: auto;
    padding: 2em 0 0; }
  .News-Detail__Photo {
    position: relative;
    max-width: 560px;
    min-height: 285px;
    margin-bottom: 2.5em;
    background: #ccc; }
    @media screen and (max-width: 768px) {
      .News-Detail__Photo {
        min-height: 220px; } }
  .News-Detail__Text {
    margin-bottom: 3.5em; }
  .News__Button-detail {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: auto;
    padding: 1em 0 0.8em;
    font-size: 14px;
    font-size: 1.4rem;
    text-align: center;
    color: #fff;
    border-radius: 25px;
    background: #F7931E; }
  .News__Button-detail::after {
    display: inline-block;
    content: "";
    width: 18px;
    height: 18px;
    margin-left: 0.25em;
    vertical-align: text-bottom;
    background: url("../img/index/button_arrow.gif") center no-repeat;
    background-size: contain; }

.Message {
  max-width: 950px;
  margin: auto;
  padding: 5em 0;
  border-radius: 17px;
  background: #f7fafc; }
  .Message__Inner {
		display: flex;
		justify-content: space-around;
    width: 80%;
    max-width: 735px;
    margin: auto; }
		@media screen and (max-width: 768px) { .Message__Inner { display: block; } }
  .Message__Title {
    margin-bottom: 3em;
    text-align: center; }
  .Message__Title::before {
    display: block;
    margin: auto;
    background: url("../img/index/message_head_icon.gif") center no-repeat;
    background-size: contain; }
	.Message__Photo { width: 36%; }
	@media screen and (max-width: 768px) { .Message__Photo { width: 50%; max-width: 250px; margin: 0 auto 2em; } }
	.Message__Photo img { display: block; width: 100%; }
	.Message__TextBox { width: 58%;}
	@media screen and (max-width: 768px) { .Message__TextBox { width: 100%; max-width: 435px; margin: auto;} }
  .Message__Text {
    margin-bottom: 1.5em; }
	@media screen and (max-width: 768px) { .Message__Text-br { display: none; } }
  .Message__Name {
    margin-top: 3em;
    text-align: right; }
  .Message__Name span {
    display: inline-block;
    font-size: 12px;
    font-size: 1.2rem;
    margin-right: 1.5em; }
  .Message__Name img {
    display: inline-block;
    vertical-align: middle; }

.Company {
  padding: 5em 0; }
  .Company__Inner {
    display: flex;
    justify-content: space-between;
    max-width: 950px; }
    @media screen and (max-width: 1280px) {
      .Company__Inner {
        display: block; } }
  .Company__List {
    width: 45%;
    max-width: 380px; }
    @media screen and (max-width: 1280px) {
      .Company__List {
        width: 90%;
        max-width: none;
        margin: 0 auto 2em; } }
  .Company__Head {
    float: left;
    clear: left;
    width: 6em;
    padding: 1.2em 0 1em;
    color: #F7931E; }
  .Company__Content {
    padding: 1.2em 0 1.2em 5em;
    border-bottom: 1px dashed #999; }
  .Company__Content:nth-last-of-type(1) {
    border-bottom: none; }
  .Company__Map {
    width: 50%;
    max-width: 522px;
    height: 480px; }
  .Company__Map iframe {
    display: block;
    width: 100%;
    height: 100%;}
    @media screen and (max-width: 1280px) {
      .Company__Map {
        width: 90%;
        max-width: none;
        height: 300px;
        margin: 0 auto 2em; } }

.Service {
  padding: 6em 0;
  background: #FFEEDB; }
  .Service__Inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 950px; }
  .Service__Title {
    margin-bottom: 3em;
    text-align: center; }
  .Service__Title::before {
    display: block;
    margin: auto;
    background: url("../img/index/service_head_icon.gif") center no-repeat;
    background-size: contain; }
  .Service__Item {
    display: flex;
    width: 47%;
    max-width: 458px;
    margin: 0 1.5% 2em;
    background: #fff; }
    @media screen and (max-width: 1024px) {
      .Service__Item {
        display: block;
        padding: 2em 1.5%; } }
    @media screen and (max-width: 599px) {
      .Service__Item {
        width: 100%;
        max-width: 458px;
        margin: 0 auto 2em;
        padding: 1.2em 1.5%; } }
  .Service-Item__Photo {
    position: relative;
    width: 35%;
    padding-top: 35%; }
    @media screen and (max-width: 1024px) {
      .Service-Item__Photo {
        width: 90%;
        max-width: 180px;
        margin: 0 auto 0.5em;
        padding-top: 0; } }
    @media screen and (max-width: 1024px) {
      .Service-Item__Photo {
        max-width: 120px; } }
  .Service-Item__Photo img {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%; }
    @media screen and (max-width: 1024px) {
      .Service-Item__Photo img {
        position: static;
        height: inherit; } }
  .Service-Item__TextBox {
    width: 65%;
    margin: 0 auto;
    padding: 0.8em 5%; }
    @media screen and (max-width: 1024px) {
      .Service-Item__TextBox {
        width: 90%;
        margin: auto; } }
  .Service-Item__Head {
    margin-bottom: 0.5em;
    font-size: 20px;
    font-size: 2rem;
    color: #F7931E;
    border-bottom: 1px dashed #999; }
    @media screen and (max-width: 1024px) {
      .Service-Item__Head {
				font-size: 18px; font-size: 1.8rem;
        text-align: center; } }
  .Service-Item__Text {
    margin-bottom: 1em;
    font-size: 12px;
    font-size: 1.2rem; }
  .Service-Item__Button {
    display: block;
    width: 100%;
    padding: 0.25em 0 0.25em;
    font-size: 14px;
    font-size: 1.4rem;
    text-align: center;
    line-height: 1;
    color: #fff;
    border-radius: 10px;
    background: #F7931E; }
  .Service-Item__Button::after {
    display: inline-block;
    content: "";
    width: 18px;
    height: 18px;
    margin-left: 0.25em;
    vertical-align: text-bottom;
    background: url("../img/index/button_arrow.gif") center no-repeat;
    background-size: contain; }

.Price {
  padding: 8em 0; }
  .Price__Inner {
    max-width: 700px; }
  .Price__Title {
    margin-bottom: 3em;
    text-align: center; }
  .Price__Title::before {
    display: block;
    margin: auto;
    background: url("../img/index/price_head_icon.gif") center no-repeat;
    background-size: contain; }
  .Price-List__Head {
    cursor: pointer;
    position: relative;
    padding: 0.8em 0 0.5em;
    text-align: center;
    border: 1px solid #000;
    background: #F7FAFC; }
  .Price-List__Head::after {
    display: block;
    content: "";
    position: absolute;
    top: 14px;
    right: 5px;
    width: 18px;
    height: 18px;
    background: url("../img/index/price_arrow.gif") center;
    background-size: contain; }
  .Price-List__Head.active::after {
    background: url("../img/index/price_arrow_active.gif") center;
    background-size: contain; }
  .Price-List__Content {
    display: none;
    overflow: hidden;
    border: solid #000;
    border-width: 0 1px; }
  .Price-List__Content:nth-last-of-type(1) {
    border-width: 0 1px 1px; }
  .Price-List__Inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; }
  .Price-List__HeadInner, .Price-List__ContentInner {
    display: flex;
    align-items: center;
    width: 50%;
    padding: 1em 5%;
    font-size: 14px;
    font-size: 1.4rem; }
  .Price-List__HeadInner {
    border-right: 1px solid #000;
    border-bottom: 1px dashed #999; }
  .Price-List__HeadInner:nth-last-of-type(1) {
    border-bottom: none; }
  .Price-List__ContentInner {
    color: #F06049;
    border-bottom: 1px dashed #999; }
  .Price-List__ContentInner:nth-last-of-type(1) {
    border-bottom: none; }
  .Price__Text {
    text-align: right; }

.Voice {
  padding: 5em 0; }
  .Voice__Title {
    width: 90%;
    margin: 0 auto 3em;
    text-align: center; }
  .Voice__Title::before {
    margin-right: 0.5em;
    background: url("../img/index/voice_head_icon.gif") center no-repeat;
    background-size: contain; }
    @media screen and (max-width: 1280px) {
      .Voice__Title::before {
        display: block;
        margin: 0 auto; } }
  .Voice__Slide {
    position: relative;
    overflow: hidden; }
    @media screen and (max-width: 768px) {
      .Voice__Slide {
        width: 80%;
        max-width: 363px;
        margin: auto; } }
  .Voice__Slide li img {
    display: block;
    width: 100%; }
  .Voice__Button {
    position: static !important;
    margin-top: 1em; }

.Question {
  padding: 5em 0; }
  .Question__Title {
    width: 90%;
    max-width: 880px;
    margin: 0 auto 3em; }
    @media screen and (max-width: 1280px) {
      .Question__Title {
        text-align: center; } }
  .Question__Title::before {
    margin-right: 0.5em;
    background: url("../img/index/question_head_icon.gif") center no-repeat;
    background-size: contain; }
    @media screen and (max-width: 1280px) {
      .Question__Title::before {
        display: block;
        margin: 0 auto; } }
  .Question__Title span {
    display: inline-block;
    margin-left: 0.8em; }
    @media screen and (max-width: 1280px) {
      .Question__Title span {
        display: block;
        margin-left: 0; } }
  .Question__Inner {
    max-width: 670px; }
  .Question-List {
    margin-bottom: 1em; }
  .Question-List__Head {
    cursor: pointer;
    position: relative;
    padding: 0.2em 5% 0.15em;
    border-radius: 7px;
    background: #FBB03B; }
  .Question-List__Head:hover::before {
    display: block;
    content: "回答を見る";
    position: absolute;
    top: 13px;
    right: 6em;
    color: #fff; }
    @media screen and (max-width: 768px) {
      .Question-List__Head:hover::before {
        display: none; } }
  .Question-List__Head::after {
    display: block;
    content: "";
    position: absolute;
    bottom: 14px;
    right: 20px;
    width: 18px;
    height: 18px;
    background: url("../img/index/question_arrow.gif") center;
    background-size: contain; }
    @media screen and (max-width: 768px) {
      .Question-List__Head::after {
        position: absolute;
        bottom: 8px;
        right: 5px; } }
  .Question-List__Head.active::after {
    background: url("../img/index/question_arrow_active.gif") center; }
  .Question-List__Head span {
    display: inline-block;
    margin-right: 1em;
    font-family: futura-pt, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 24px;
    font-size: 2.4rem;
    vertical-align: middle; }
    @media screen and (max-width: 768px) {
      .Question-List__Head span {
        display: block; } }
  .Question-List__Content {
    display: none;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    margin: -0.5em 0 0;
    padding: 2em 10%;
    border: solid #FBB03B;
    border-width: 0 5px 5px;
    border-radius: 0 0 10px 10px; }
  .Question-List__Content span {
    display: block;
    float: left;
    margin: -0.35em 1em 0 0;
    font-family: futura-pt, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 24px;
    font-size: 2.4rem;
    color: #FBB03B; }
    @media screen and (max-width: 768px) {
      .Question-List__Content span {
        float: none; } }
  .Question-List__Content p {
    overflow: hidden;
    max-width: 480px; }

/*Pagenation*/
.pagenation {
  width: 90%;
  margin: 5em auto;
  text-align: center; }

.pagenation:after, .pagenation ul:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden; }

.pagenation ul {
  margin: 0; }

.pagenation li {
  display: inline-block;
  list-style: none outside none;
  margin: 0 5px;
  overflow: hidden;
  border: 1px solid #ccc;
  border-radius: 3px; }

.pagenation li.current {
  color: #444;
  cursor: default;
  background-color: #ccc; }

.pagenation li a {
  border-radius: 3px;
  color: #444;
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2); }

.pagenation li:hover {
  background-color: #ccc;
  opacity: 0.8;
  transition-duration: 500ms;
  transition-property: all;
  transition-timing-function: ease; }

.Popup-Detail {
  position: relative;
  width: 95%;
  max-width: 760px;
  margin: 0 auto;
  padding: 2em 2%;
  border-radius: 25px;
  border: 3px solid #fff;
  background: #F7931E; }
  .Popup-Detail2 {
    padding: 5em 2% 2em;
    max-width: 810px; }
  .Popup-Detail__Image {
    display: block;
    width: 95%;
    max-width: 650px;
    margin: 0 auto 3em; }
  .Popup-Detail__Image2 {
    display: block;
    width: 95%;
    max-width: 680px; }
  .Popup-Detail__Image img {
    display: block;
    width: 100%; }
  .Popup-Detail__Close {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer; }
  .Popup-Detail__Button {
    display: block;
    width: 80%;
    max-width: 292px;
    margin: 0 auto 3em;
    padding: 0.5em 0;
    font-size: 14px;
    font-size: 1.4rem;
    text-align: center;
    color: #F7931E;
    border-radius: 20px;
    background: #fff; }
    @media screen and (max-width: 768px) {
      .Popup-Detail__Button {
        max-width: 220px;
        margin-bottom: 2em; } }
  .Popup-Detail__Button2 {
    margin: 0 4% 3em auto; }
    @media screen and (max-width: 768px) {
      .Popup-Detail__Button2 {
        margin: 0 auto 2em; } }
