@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600&family=Zen+Kaku+Gothic+New:wght@500;700;900&display=swap");
:root {
  --vw: 1vw;
}

/*===========================================================
+-----+// font rem
===========================================================*/
/*
------------------------
用途：個別にhover要素付けたい時用
------------------------
例）
div {
    width:100px;
    height:100px;
    @include hover;
}
*/
/*
------------------------
用途：良く使うflexを1行に短縮
------------------------
例）
div {
    @include flex(b,w);
}
↑これは↓これを一行で書いた例
div {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
*/
/*--------------------------------------------------------------
	reset
---------------------------------------------------------------*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video,
input,
button {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

sup {
  vertical-align: super;
}

sub {
  vertical-align: sub;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  color: inherit;
  text-decoration: none;
  /*display: block;*/
  box-sizing: border-box;
  transition: 0.2s;
}

img {
  vertical-align: bottom;
  border: none;
  width: 100%;
}

#header img{	
width: auto;	
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
  font-size: 14px;
}

* {
  box-sizing: border-box;
}

/*
html {
  @include media(pc) {
    font-size: getvwPc(10);
  }
  @include media(pc-l) {
    font-size: 62.5%;
  }
  @include media(sp) {
    font-size: getvw(10);
  }
}
*/
html {
  font-size: 65.5%;
}
body {
  color: #000;
  line-height: 1.8;
  font-family: "ヒラギノ角ゴ Pro W3", "メイリオ", "Hiragino Kaku Gothic Pro", Meiryo, Verdana, sans-serif;
  position: relative;
  word-break: break-word;
  width: 100%;
  font-weight: 400;
  /*background: url(../img/bg.png) left top repeat;*/
  -moz-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
  /*font-size: 1.6rem;*/
  font-size:14px;
}
@media only screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}

.mainSection {
  margin-top: 90px;
}
@media only screen and (max-width: 768px) {
  .mainSection {
    margin-top: 60px;
  }
}

.container {
  overflow: hidden;
}

.pc {
  display: block;
}
@media only screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

/*
.btn {
	display: inline-block;
	width: 220px;
	height: 55px;
	line-height: 1.5;
	text-align: center;
	text-decoration: none;
	outline: none;
	transition: all 0.3s;
	background-color: $m_color;
	border: 1px solid $m_color;
	color: #fff;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 40px;

	@include media(sp) {
		width: 60%;
		margin: 30px auto 0;
	}

	&:after {
		content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
    right: 20px;
    position: absolute;
    transition: 0.3s;
	}

	&:hover {
		background-color: #fff;
		border-color: $m_color;
		color: $m_color;

		&:after {
			right: 18px;
			border-color: $m_color;
		}
	}
	& span{
		display: block;
	}
}
*/
a {
  transition: 0.3s;
}
a:hover {
  opacity: 0.7;
}

a img {
  transition: 0.3s;
}

a img:hover {
  opacity: 0.6;
}

@media only screen and (min-width: 769px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
.sec_in {
  max-width: 980px;
  padding: 0 15px;
  width: 100%;
  margin: 0 auto;
}

.topic_path {
  display: flex;
  margin: 10px auto 50px;
  width: 1100px;
}
@media only screen and (max-width: 768px) {
  .topic_path {
    max-width: inherit;
    display: none;
  }
}
.topic_path li {
  margin-right: 10px;
  font-size: 12px;
  padding-left: 15px;
  box-sizing: border-box;
  position: relative;
}
.topic_path li:before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 2.5px);
  left: 0;
}
.topic_path li:first-child {
  padding-left: 0;
}
.topic_path li:first-child:before {
  display: none;
}
.topic_path li a {
  display: block;
  font-size: 12px;
}
.topic_path li a:hover {
  text-decoration: underline;
}

.effect_01,
.effect_01_group .effect {
  transition: all 1s;
  opacity: 0;
  position: relative;
  top: 25px;
}
.effect_01.active,
.effect_01_group .effect.active {
  opacity: 1;
  top: 0;
}

.effect_02 {
  transition: all 1s;
  opacity: 0;
  position: relative;
  top: -50px;
}
.effect_02.active {
  opacity: 1;
  top: 0;
}

.effect_03 {
  transition: all 1s;
  opacity: 0;
  position: relative;
  left: 50px;
}
.effect_03.active {
  opacity: 1;
  left: 0;
}

.effect_04 {
  transition: all 1s;
  opacity: 0;
  position: relative;
  right: 50px;
}
.effect_04.active {
  opacity: 1;
  right: 0;
}

.inview {
  opacity: 0;
  position: relative;
}
.inview.animate {
  -webkit-animation: inview_slide_up 1.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 0.2s;
  animation: inview_slide_up 1.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 0.2s;
}

.inview-group .inview-list {
  opacity: 0;
  position: relative;
}
.inview-group .inview-list.animate {
  -webkit-animation: inview_slide_up 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.2s;
  animation: inview_slide_up 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.2s;
}

@-webkit-keyframes inview_slide_up {
  0% {
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes inview_slide_up {
  0% {
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=submit] {
  -webkit-appearance: none;
}

textarea {
  resize: none;
  width: auto;
  height: auto;
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.txt_c {
  text-align: center !important;
}

.txt_r {
  text-align: right !important;
}

.txt_l {
  text-align: left !important;
}

.txt_w {
  color: #fff;
}

.txt_b {
  color: #000;
}

.f-serif {
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
}

#infographic_main {
  max-width: 940px;
  margin: 0 auto;
  font-size: 1.6rem;
}
#infographic_main h2 {
  text-align: center;
  font-size: 2.8rem;
  font-weight: normal;
  color: #fff;
  line-height: 1.4;
  background: #d75c6f;
  border-radius: 14px;
  padding: 30px 10px 20px;
  position: relative;
  display: inline-block;
}
#infographic_main h2:before {
  content: "";
  position: absolute;
  left: 30px;
  bottom: -23px;
  width: 26px;
  height: 37px;
  background: url(../img/bg_ttl.svg) left top no-repeat;
  background-size: 100% auto;
  z-index: 2;
}
@media only screen and (max-width: 960px) {
  #infographic_main {
    padding: 0 10px;
  }
  #infographic_main h2 {
    font-size: 2.4rem;
    width: 100%;
    padding: 20px 5px 10px;
  }
}

.detail_btn {
  margin-bottom: 130px;
}
.detail_btn a {
  width: 63.8%;
  max-width: 600px;
  margin: 0 auto;
  display: block;
  background: #d75c6f;
  border-radius: 36px;
  text-align: center;
  color: #fff;
  padding: 15px 80px 10px;
  font-size: 2.8rem;
  position: relative;
  text-decoration: none;
}
.detail_btn a::before {
  content: "";
  display: block;
  width: 8%;
  height: 1px;
  background: #fff;
  position: absolute;
  right: 30px;
  top: 50%;
}
.detail_btn a::after {
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  background: #fff;
  position: absolute;
  right: 30px;
  top: calc(50% - 3px);
  transform: rotate(35deg);
}
@media only screen and (max-width: 768px) {
  .detail_btn {
    margin-bottom: 100px;
  }
  .detail_btn a {
    font-size: 2rem;
    width: 100%;
    padding: 15px 20px 10px;
  }
  .detail_btn a::before {
    width: 4%;
    right: 10px;
  }
  .detail_btn a::after {
    width: 8px;
    right: 10px;
  }
}

#sec_kv {
  background: url(../img/bg_circle.svg) no-repeat, linear-gradient(0deg, rgb(233, 216, 208) 0%, rgb(248, 236, 236) 100%);
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  padding: 55px 60px;
  margin-bottom: 30px;
}
#sec_kv h1 {
  width: 73%;
  margin-bottom: 65px;
}
@media only screen and (max-width: 768px) {
  #sec_kv {
    background: url(../img/bg_circle_sp.svg) no-repeat, linear-gradient(0deg, rgb(233, 216, 208) 0%, rgb(248, 236, 236) 100%);
    background-position: right -50px top;
    padding: 30px 10px;
    margin-bottom: 45px;
  }
  #sec_kv h1 {
    width: 100%;
    max-width: 480px;
    margin: 0 auto 50px;
  }
}

#graphic_filters {
  width: 100%;
}
#graphic_filters h2 {
  width: 100%;
  background-color: #3864a3;
  text-align: center;
  font-size: 14px;
  line-height: 30px;
  font-weight: 600;
  letter-spacing: 0.5em;
  color: #fff;
}
#graphic_filters .graphic_filters_wrapper {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}
@media only screen and (max-width: 414px) {
  #graphic_filters .graphic_filters_wrapper {
    max-width: 369px;
    justify-content: start;
  }
}
@media only screen and (max-width: 768px) {
  #graphic_filters .graphic_filters_wrapper.sp_closed {
    max-height: 244px;
    overflow: hidden;
  }
}
#graphic_filters .graphic_filters_wrapper > div.filter {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 115px;
  height: 45px;
  margin: 8px 4px;
  padding: 1px 15px;
  border: 2px solid #3864a3;
  border-radius: 50px;
  background-color: #fff;
  cursor: pointer;
}
@media only screen and (max-width: 414px) {
  #graphic_filters .graphic_filters_wrapper > div.filter {
    width: min(33.33vw - 8px, 115px);
  }
}
#graphic_filters .graphic_filters_wrapper > div.filter:hover {
  opacity: 0.8;
}
#graphic_filters .graphic_filters_wrapper > div.filter.disabled {
  opacity: 0.7;
  border: 2px solid #ddd;
  pointer-events: none;
  cursor: default;
}
#graphic_filters .graphic_filters_wrapper > div.filter.disabled span {
  color: #ddd;
}
#graphic_filters .graphic_filters_wrapper > div.filter span {
  display: inline-block;
  color: #3864a3;
  font-size: 14px;
  font-weight: 600;
  line-height: 15px;
  text-align: center;
  user-select: none;
}
@media only screen and (max-width: 414px) {
  #graphic_filters .graphic_filters_wrapper > div.filter span {
    font-size: min(3.7333333333vw, 14px);
    line-height: min(4vw, 15px);
  }
}
#graphic_filters .graphic_filters_wrapper > div.filter.selected {
  background-color: #3864a3;
}
#graphic_filters .graphic_filters_wrapper > div.filter.selected span {
  color: #fff;
}
#graphic_filters .sp_filter_open_button {
  display: none;
}
@media only screen and (max-width: 768px) {
  #graphic_filters .sp_filter_open_button {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 100;
    height: 60px;
    background: linear-gradient(transparent, #fff);
  }
}
#graphic_filters .sp_filter_close_button {
  display: none;
}
@media only screen and (max-width: 768px) {
  #graphic_filters .sp_filter_close_button.active {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 8px 0;
  }
}
#graphic_filters .sp_filter_open_button button,
#graphic_filters .sp_filter_close_button button {
  justify-content: center;
  border: none;
  width: 100px;
  height: 40px;
  border: none;
  border-radius: 50px;
  background-color: #c3bab0;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  user-select: none;
  cursor: pointer;
}
#graphic_filters .sp_filter_open_button span,
#graphic_filters .sp_filter_close_button span {
  position: relative;
  display: inline-block;
  margin: 0 25px;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background-color: #c3bab0;
}
#graphic_filters .sp_filter_open_button span::before, #graphic_filters .sp_filter_open_button span::after,
#graphic_filters .sp_filter_close_button span::before,
#graphic_filters .sp_filter_close_button span::after {
  position: absolute;
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background-color: #c3bab0;
  content: "";
}
#graphic_filters .sp_filter_open_button span:before,
#graphic_filters .sp_filter_close_button span:before {
  left: -10px;
}
#graphic_filters .sp_filter_open_button span:after,
#graphic_filters .sp_filter_close_button span:after {
  right: -10px;
}

#graphic_panels {
  width: 100%;
  margin: 5px 0 100px;
}
@media only screen and (max-width: 768px) {
  #graphic_panels {
    margin: 5px 0 80px;
  }
}
#graphic_panels .graphic_panels_wrapper {
  display: flex;
  flex-wrap: wrap;
}
#graphic_panels .graphic_panels_wrapper > div {
  width: 20%;
}
@media only screen and (max-width: 768px) {
  #graphic_panels .graphic_panels_wrapper > div {
    width: 50%;
  }
}

#sec_slider {
  margin-bottom: 90px;
}
#sec_slider div {
  margin: 0 2px 1px;
}
@media only screen and (max-width: 768px) {
  #sec_slider {
    position: relative;
    left: -10px;
    width: calc(100% + 20px);
    margin-bottom: 45px;
  }
}

#sec_con01 {
  background: url(../img/bg_con01.svg) left top no-repeat #f1f0ee;
  background-size: cover;
  border-radius: 24px;
  padding: 20px 0 25px;
  margin-bottom: 90px;
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  align-items: flex-start;
  position: relative;
}
#sec_con01 .txt {
  width: 35.4%;
  margin-top: 70px;
  margin-left: 3.4%;
}
#sec_con01 .txt h2 {
  margin-bottom: 80px;
}
#sec_con01 .txt p {
  padding: 0 20px 0 10px;
}
#sec_con01 figure {
  width: 63.8%;
  max-width: 600px;
  position: relative;
  margin-top: 1.2%;
}
@media only screen and (max-width: 768px) {
  #sec_con01 {
    background: #f1f0ee;
    padding: 10px 10px 0;
    display: block;
    border-radius: 16px;
    margin-bottom: 45px;
  }
  #sec_con01 .txt {
    width: 100%;
    margin: 0;
  }
  #sec_con01 .txt h2 {
    margin-bottom: 0px;
  }
  #sec_con01 .txt p {
    width: calc(100% + 20px);
    position: relative;
    left: -10px;
    background: #e9d8d0;
    padding: 40px 20px 50px;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
  }
  #sec_con01 figure {
    width: calc(100% + 20px);
    max-width: calc(100% + 20px);
    left: -10px;
    margin: 0 auto;
    z-index: 1;
  }
}

#sec_con02 {
  background: url(../img/bg_con02.svg) left bottom no-repeat #f1f0ee;
  background-size: auto 180px;
  border-radius: 24px;
  padding: 0 0 180px;
  margin-bottom: 90px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  align-items: flex-start;
  position: relative;
}
#sec_con02 .txt {
  order: 2;
  width: 38.3%;
  margin-left: -2.6%;
  padding-top: 60px;
  position: relative;
  z-index: 2;
}
#sec_con02 .txt h2 {
  width: 100%;
  margin-bottom: 30px;
  letter-spacing: -2px;
}
#sec_con02 .txt p {
  padding: 0 0 0 45px;
}
#sec_con02 figure {
  order: 1;
  width: 58%;
  max-width: 564px;
  position: relative;
  z-index: 0;
  margin-top: 30px;
  margin-bottom: -86px;
}
@media only screen and (max-width: 768px) {
  #sec_con02 {
    background: #f1f0ee;
    padding: 10px 10px 0;
    display: block;
    border-radius: 16px;
    margin-bottom: 45px;
  }
  #sec_con02 .txt {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  #sec_con02 .txt h2 {
    margin-bottom: 0px;
  }
  #sec_con02 .txt p {
    width: calc(100% + 20px);
    position: relative;
    left: -10px;
    background: #e2cbc3;
    padding: 20px 20px 50px;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
  }
  #sec_con02 figure {
    width: calc(100% + 20px);
    max-width: calc(100% + 20px);
    left: -10px;
    margin: 0 auto;
  }
}

#sec_con03 {
  background: #f1f0ee;
  border-radius: 24px;
  margin-bottom: 90px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  position: relative;
}
#sec_con03 .txt {
  width: 45.7%;
  padding-top: 60px;
  position: relative;
  z-index: 2;
  margin-left: 6.9%;
}
#sec_con03 .txt h2 {
  padding: 30px 5px 20px;
  margin-bottom: 50px;
  letter-spacing: -2px;
}
#sec_con03 .txt p {
  width: 78%;
}
#sec_con03 .txt div {
  background: #e9d8d0;
  margin-left: -65px;
  width: 219%;
}
#sec_con03 figure {
  width: 54.3%;
  max-width: 510px;
  position: relative;
  z-index: 1;
  margin-left: -6.9%;
}
#sec_con03 figure img {
  border-top-right-radius: 24px;
}
#sec_con03 .txt2 {
  padding: 50px 65px;
  background: #e9d8d0;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}
#sec_con03 .txt2 p:nth-child(1) {
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  #sec_con03 {
    background: #f1f0ee;
    padding: 10px 10px 0;
    display: block;
    border-radius: 16px;
    margin-bottom: 45px;
  }
  #sec_con03 .txt {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  #sec_con03 .txt h2 {
    margin-bottom: 0px;
    font-size: 2.2rem;
  }
  #sec_con03 .txt p {
    width: calc(100% + 20px);
    position: relative;
    left: -10px;
    background: #e9d8d0;
    padding: 40px 20px 20px;
  }
  #sec_con03 .txt2 {
    width: calc(100% + 20px);
    position: relative;
    left: -10px;
    background: #e9d8d0;
    padding: 0 20px 50px;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
  }
  #sec_con03 figure {
    width: calc(100% + 20px);
    max-width: calc(100% + 20px);
    left: -10px;
    margin: 0 auto;
  }
}

#sec_overseas,
#sec_onepoint {
  background: linear-gradient(0deg, rgb(233, 216, 208) 0%, rgb(248, 236, 236) 100%);
  margin-bottom: 130px;
  position: relative;
  border-radius: 24px;
}
#sec_overseas h2,
#sec_onepoint h2 {
  width: 74.5%;
  margin: 0 auto 30px;
  display: block;
  position: relative;
  top: -45px;
}
#sec_overseas h2::before,
#sec_onepoint h2::before {
  left: 40%;
}
#sec_overseas .card,
#sec_onepoint .card {
  padding: 0 0 30px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
#sec_overseas .card article,
#sec_onepoint .card article {
  width: 28.7%;
  max-width: 270px;
  margin-left: 3.4%;
  margin-bottom: 3.4%;
  background: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}
@media only screen and (max-width: 768px) {
  #sec_overseas,
  #sec_onepoint {
    margin-bottom: 50px;
    padding: 10px;
    border-radius: 16px;
  }
  #sec_overseas h2,
  #sec_onepoint h2 {
    width: 100%;
    margin-bottom: 50px;
    top: 0;
  }
  #sec_overseas h2::before,
  #sec_onepoint h2::before {
    left: 45%;
  }
  #sec_overseas .card,
  #sec_onepoint .card {
    padding: 0 0 60px;
    display: block;
    width: 100%;
    position: relative;
  }
  #sec_overseas .card .slide,
  #sec_onepoint .card .slide {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    box-shadow: none;
  }
  #sec_overseas .card .slide article,
  #sec_onepoint .card .slide article {
    width: 46%;
    max-width: 100%;
    margin: 0 2% 4%;
  }
  #sec_overseas .slick-arrow,
  #sec_onepoint .slick-arrow {
    position: absolute;
    bottom: 15px;
    width: 13px;
    height: 20px;
    text-indent: -9999px;
  }
  #sec_overseas .slick-prev,
  #sec_onepoint .slick-prev {
    left: calc(50% - 40px);
    background: url(../img/arrow_l.svg) left top no-repeat;
  }
  #sec_overseas .slick-next,
  #sec_onepoint .slick-next {
    right: calc(50% - 40px);
    background: url(../img/arrow_r.svg) left top no-repeat;
  }
}

#sec_onepoint {
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  #sec_onepoint h2 {
    font-size: 1.8rem;
  }
}

#modal_wrap {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  background: rgba(0, 0, 0, 0.8);
  display: none;
}
#modal_wrap #modal {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  position: relative;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding: 50px 20px;
  top: 10vh;
}
#modal_wrap #modal .iframe {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  height: 70vh;
}
#modal_wrap #modal .iframe iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
#modal_wrap .close {
  width: 48px;
  position: absolute;
  right: -24px;
  top: -24px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
  cursor: pointer;
}
#modal_wrap .close img {
  transition: 0.3s;
}
#modal_wrap .close:hover img {
  opacity: 0.7;
}
@media only screen and (max-width: 960px) {
  #modal_wrap .close {
    right: 24px;
  }
}
@media only screen and (max-width: 768px) {
  #modal_wrap {
    padding: 10px;
  }
  #modal_wrap #modal {
    padding: 0;
    top: 2vh;
    border-radius: 16px;
  }
  #modal_wrap #modal .iframe {
    height: 85vh;
  }
  #modal_wrap #modal .iframe iframe {
    border-radius: 16px;
  }
  #modal_wrap .close {
    width: 32px;
    right: 10px;
    top: -16px;
    z-index: 2;
  }
}

#modal_page #modal_con {
  padding: 0 60px;
}
#modal_page #modal_con h1 {
  margin-bottom: 30px;
}
#modal_page #modal_con p {
  margin-bottom: 30px;
}
#modal_page .detail_btn {
  margin-bottom: 30px;
}
#modal_page .detail_btn a {
  font-size: 1.8rem;
  max-width: 560px;
}
#modal_page .detail_btn a::before {
  width: 50px;
  right: 20px;
}
#modal_page .detail_btn a::after {
  right: 20px;
}
#modal_page .sns_area {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
}
#modal_page .sns_area li {
  width: 40px;
  margin: 0 10px;
}
@media only screen and (max-width: 599px) {
  #modal_page {
    padding: 0 10px;
  }
  #modal_page #modal_con {
    padding: 0;
  }
  #modal_page #modal_con h1 {
    margin-bottom: 30px;
  }
  #modal_page #modal_con p {
    padding: 0 10px;
    margin-bottom: 30px;
  }
  #modal_page .detail_btn {
    margin: 0 10px 20px;
  }
  #modal_page .detail_btn a {
    font-size: 1.6rem;
    padding-left: 30px;
    text-align: left;
    border-radius: 16px;
  }
  #modal_page .detail_btn a::before {
    width: 20px;
    right: 20px;
  }
  #modal_page .detail_btn a::after {
    right: 20px;
  }
  #modal_page .sns_area {
    padding-bottom: 30px;
  }
}


/*2024年5月27日追加*/
#infographic #header a:link,
#infographic #header a:active {
        color: #666;
        text-decoration: underline;
    }
#infographic #header a:hover {
	color: #666;
	text-decoration: none;
}
#infographic #header a:visited {
        color: #333;
        text-decoration: none;
    }
.note_infographic {	
font-size: 85%;	
color: #666;	
text-align: right;	
padding: 40px 0;	
}	
#infographic #footer a {	
color: #666;	
text-decoration: underline;	
}	
#infographic #footer a:hover {	
text-decoration: none;	
}	
#infographic #pagetop a {	
color: #fff;	
text-decoration: none;	
}
#topicpath a{
 text-decoration: underline;
}
#topicpath a:hover{
 text-decoration: none;;
}
.detail_btn{
margin-bottom: 40px!important;
}
@media only screen and (max-width: 768px) {	
#infographic .logo {	
width: 83%!important;	
}	
.note_infographic {	
padding:40px 0 30px 0;	
}	
#infographic .bottom-sticky-nav ul li a {	
display: -webkit-box;	
display: -ms-flexbox;	
display: flex;	
-webkit-box-orient: vertical;	
-webkit-box-direction: normal;	
-ms-flex-direction: column;	
flex-direction: column;	
-webkit-box-align: center;	
-ms-flex-align: center;	
align-items: center;	
height: 71px;	
padding: 11px 3px 10px 3px;	
color: #ffffff;	
text-decoration: none;	
}	
#infographic #pagetop_sp a {	
color: #fff;	
text-decoration: none;	
}	
#infographic .sns_button {	
position:fixed;	
top: auto;	
bottom: 90px;	
width: 150px;	
height: 40px;	
margin-left: 0px;	
}	
#infographic .sns_button img {	
float: left;	
margin-right: 10px;	
margin-bottom: 0px;	
width: 40px;	
aspect-ratio: auto 40 / 40;	
height: 40px;	
}	
}	







/*# sourceMappingURL=style.css.map */