@charset "UTF-8";

/*======================================================================
Reset CSS for HTML5
======================================================================*/
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,
main,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    display: block;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

ul {
    list-style: none;
}

a,
a:link,
a:visited {
    color: inherit;
    text-decoration: none;
}

a {
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    background: transparent;
    transition: .2s;
    text-decoration: none;
}

img {
    line-height: 1;
    vertical-align: bottom;
}

* {
    box-sizing: border-box;
}

/*======================================================================
    BASIC
======================================================================*/
html {
    font-size: 10px;
}

html,
body {
    box-sizing: border-box;
    height: 100%;
}

body {
    line-height: 1.5;
    font-family: "Yu Gothic", "Yu Gothic UI", "Segoe UI", "游ゴシック", "Meiryo", "Meiryo UI", "メイリオ", "Hiragino Sans", "Sanfrancisco", "Hiragino Kaku", "Gothic ProN", "Helvetica Neue", "Noto Sans CJK JP", "Roboto", sans-serif;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
}

p {
    line-height: 1.5;
}

body a:hover {
    opacity: 0.5;
}


body {
    color: #333333;
}

/*======================================================================
  COMMON
======================================================================*/
.inner {
    width: 100%;
    max-width: 768px;
    margin-inline: auto;
    padding-inline: 24px;
}

.h2_section {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border: 1px solid #EA5514;
    border-radius: 999px;
    width: fit-content;
    margin: 0 auto;
}

.h2_section_title {
    font-size: 2rem;
    font-weight: bold;
    padding: 16px 24px;
}

.h3_section h3 {
    font-size: 20px;
    font-weight: bold;
}

@media screen and (max-width:465px) {
    .h3_section h3 {
        font-size: 1.6rem;
    }
}

@media screen and (max-width:465px) {
    .h2_section {
        border-radius: 24px;
        width: 100%;
    }

    .h2_section_title {
        font-size: 1.8rem;
        padding: 8px 12px;
    }
}

/*======================================================================
  HEADER
======================================================================*/

.header_content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-top: 12px;
    position: relative;
}

.header h1 {
    font-weight: bold;
    font-size: 1.6rem;
    color: #EA5514;
    line-height: 1.5;
}

/* mv */

.mv_wrap {
    width: 100%;
    position: relative;
}

.mv {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: url(images/mv.png) no-repeat center;
    background-size: cover;
}

.mv_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(calc(-50% - 40px), -50%);
}

.mv_logo img {
    display: block;
    width: 100%;
    height: auto;
    padding: 12px;
    background-color: #EA5514;
}

@media screen and (max-width:670px) {
    .mv_logo {
        transform: translate(calc(-50% - 10px), -170%);
    }

    .mv_logo img {
        height: auto;
        max-width: 100%;
    }
}

/*====== gnav ======*/
/* hamburger */
.header .flexBox:has(.hamburger) {
    padding-top: var(--margin-md);
    flex-direction: column;
    align-items: center;
}

.hamburger {
    display: flex;
    justify-content: center;
    flex-direction: column;
    background: #fff;
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(calc(50% + 100px), -50%);
}

.hamburger_inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 64px;
    height: 64px;
    background-color: #fff;
}

.hamburger span {
    display: block;
    width: 32px;
    height: 3px;
    /*border太さ*/
    font-size: 0;
    background-color: #333333;
    /*border色*/
    transition: transform 0.3s, opacity 0.3s;
}

@media screen and (max-width:670px) {
    .hamburger {
        transform: translate(calc(-50%), -50%);
    }

    .hamburger span {
        width: 24px;
    }

    .hamburger_inner {
        width: 42px;
        height: 42px;
    }
}

@media (hover: hover) {
    .hamburger:hover span {
        opacity: 0.5;
    }
}

/* mainMenu */
.mainMenu {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
    position: absolute;
    top: 56%;
    left: 5%;
    width: calc(100% - 10%);
    background: #fff;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.mainMenu.open {
    max-height: 500px;
}

.mainMenu ul {
    writing-mode: horizontal-tb;
    display: block;
}

.mainMenu ul li {
    writing-mode: horizontal-tb;
    display: block;
}

.mainMenu ul li:not(:last-child) {
    border-bottom: 1px solid #EA5514;
}

.mainMenu ul li a {
    display: block;
    padding: 1.5rem;
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
    color: #EA5514;
}

@media (hover: hover) {
    .mainMenu ul li a:hover {
        opacity: 0.5;
    }
}

@media screen and (max-width: 670px) {
    .mainMenu {
        top: 62%;
        left: 10%;
        width: calc(100% - 20%);
    }
        .mv_logo {
        transform: translate(-50%, -170%);
    }
}

/* breadcrumb */
.breadcrumb ul {
    display: block;
    max-width: 768px;
    margin: 0 auto;
    padding: 1.5rem;
    box-sizing: border-box;
    text-align: left;
    font-size: 1.6rem;
}

.breadcrumb ul li {
    display: inline-block;
    margin-left: 0.5rem;
}

.breadcrumb ul li:first-child {
    margin-left: 0;
}

.breadcrumb ul li a span {
    font-weight: bold;
}

/*======================================================================
  FOOTER
======================================================================*/
.footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 48px;
    background-color: #EA5514;
    padding-block: 40px;

}

.footer_content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.f-logo {
    margin: 0 auto;
}

.fnav ul {
    display: flex;
    align-items: flex-start;
    gap: 12px 24px;
    flex-wrap: wrap;
}

.fnav a {
    display: block;
    text-align: center;
    font-weight: bold;
    font-size: 1.6rem;
    color: #fff;
}

.f-copy {
    display: block;
    text-align: center;
    font-size: 1.6rem;
    color: #fff;
}

.f-logo {
    background-color: #fff;
    padding: 12px;
}

@media screen and (max-width:465px) {
    .f-logo img {
        height: auto;
        max-width: 100%;
    }
    .f-copy{
        padding: 0 24px;
    }
}

/*======================================================================
  RECOMMEND
======================================================================*/

.recommend {
    background-color: #FCEFD9;
}

.recommend_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding-block: 40px;
}

.recommend_post {
    display: flex;
    flex-direction: column;
    align-self: flex-start;
    gap: 24px;
}

.recommend_post_item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 24px;
    border-bottom: 1px solid #333333;
}

.recommend_post_item h3 {
    font-size: 2rem;
    font-weight: bold;
    color: #EA5514;
}

.recommend_post_item p {
    font-size: 1.6rem;
}

.recommend_post_item_inner {
    display: block;
    width: 100%;
    position: relative;
    height: 215px;
    overflow: hidden;
}

.recommend_post_item_inner img {
    width: 100%;
    height: auto;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.recommend_post_time {
    position: absolute;
    right: 20px;
    bottom: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.recommend_post_item {
    border-bottom: 1px solid #333333;
}

.recommend_post_item:last-child {
    border-bottom: none;
}

.date {
    font-size: 1.6rem;
    font-weight: bold;
    color: #fff;
    padding-block: 4px;
    padding-inline: 12px;
    background-color: #EA5514;
    border-radius: 999px;
}

.rec_btn {
    font-size: 1.6rem;
    font-weight: bold;
    color: #EA5514;
    background-color: #fff;
    border: 1px solid #EA5514;
    border-radius: 8px;
    padding: 11px 16px;
}

/*======================================================================
INDEX
======================================================================*/

/* about */

.about {
    background-color: #FCEFD9;
    margin-top: 24px;
    background-image: linear-gradient(0deg, transparent calc(100% - 1px), #EFE0B7 calc(100% - 1px)),
        linear-gradient(90deg, transparent calc(100% - 1px), #EFE0B7 calc(100% - 1px));
    background-size: 28px 28px;
    background-repeat: repeat;
    background-position: center center;
}

.about_content {
    position: relative;
}

.about_content_item {
    display: inline-flex;
    background-color: #fff;
    margin: 24px 40px 95px 40px;
    border-radius: 40px;
    padding: 48px 72px;
    border: 1px solid #EA5514;
}

.about_content_item_title {
    font-size: 2.4rem;
    font-weight: bold;
    color: #EA5514;
}

.about_content_item_img {
    position: absolute;
    display: flex;
    justify-content: space-between;
    align-self: start;
    right: 24px;
    bottom: 24px;
    padding-block: 11px;
    padding-inline: 15px;
    background-color: #FCDE9E;
    border-radius: 7px;
}

@media screen and (max-width:768px) {
    .about_content_item {
        margin: 40px 0px 140px 0px;
        border-radius: 24px;
        padding: 24px 32px;
    }

    .about_content_item_img {
        position: absolute;
        right: 48px;
        bottom: 40px;
    }
}

@media screen and (max-width:465px) {
    .about_content_item {
        margin: 12px 0px 140px 0px;
        border-radius: 24px;
        padding: 24px 32px;
    }

    .about_content_item_title {
        font-size: 1.8rem;
    }
}

/* post_list */

.post_list_content {
    display: flex;
    flex-direction: column;
    align-self: start;
    gap: 24px;
    padding-block: 40px;
}

.post_list_content_list {
    display: flex;
    flex-direction: column;
    align-self: flex-end;
    gap: 24px;
}

.post_list_content_list :last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.post_list_content_list_item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 24px;
    border-bottom: 1px solid #333333;
}

.post_list_content_list_item p {
    font-size: 1.6rem;
}

/*======================================================================
CATEGORY
======================================================================*/

.category_content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding-top: 24px;
    padding-bottom: 40px;
}

.category_content_read {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 8px;
    border-bottom: 1px solid #EA5514;
}

.category_content_read_title {
    font-size: 1.6rem;
    font-weight: bold;
    color: #EA5514;
}

.category_content_list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
}

.category_content_list_item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-bottom: 24px;
    border-bottom: 1px solid #333333;
}

.category_content_list_item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.category_content_list_item_wrop {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.category_content_list_item_wrop p {
    font-size: 1.6rem;
}

.category_content_list_item img {
    width: 179px;
    height: 224px;
    object-fit: cover;
    display: block;
}

.category_content_list_item_box {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 8px;
}

.cate_date {
    font-size: 1.6rem;
    font-weight: bold;
    color: #EA5514;
}

.category_content_list_item_box_btn {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 4px;
}

.category_content_list_item_box_btn::before {
    display: block;
    content: "";
    width: 6px;
    height: 10px;
    background: url(images/arrow.svg) no-repeat center;
}

.category_content_list_item_box_btn p {
    font-size: 1.6rem;
    font-weight: bold;
    color: #EA5514;
    margin: 0;
}

@media screen and (max-width:465px) {
    .category_content_list_item_wrop {
        display: flex;
        flex-direction: column;
    }

    .category_content_list_item img {
        width: 100%;
        height: auto;
    }
}

/*======================================================================
  DETAIL
======================================================================*/

.detail_content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 24px;
    padding-bottom: 40px;
}

.detail_content_title {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.detail_content_title h2 {
    font-size: 2.4rem;
    font-weight: bold;
    text-align: center;
}

.detail_content_title p {
    font-size: 1.6rem;
    text-align: center;
}

.detail_content_item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


.detail_content_item h3 {
    font-size: 2rem;
    font-weight: bold;
    color: #EA5514;
    padding: 32px 0 16px 0;
}

.detail_content_item img {
    height: 215px;
    object-fit: cover;
    max-width: 100%;
    margin-bottom: 16px;
}

.detail_content_item p {
    font-size: 1.6rem;
}

.detail_content_item_list p {
    font-size: 1.6rem;
}

.detail_content_item a {
    font-size: 1.6rem;
    font-weight: bold;
    color: #00A99D;
}

.detail_content_item p + ul li{
    font-size: 1.6rem;
}

/* リンク設置 */
.linkItem {
    margin: 1em 0;
}

.linkItem li:last-child {
    margin-top: 1em;
}

.linkItem img {
    display: block;
    max-width: 100%;
    height: auto;
    margin-bottom: 0;
}

/* 引用 */

blockquote {
    position: relative;
    padding: 35px 15px 10px 15px;
    box-sizing: border-box;
    font-style: italic;
    background: #f5f5f5;
    color: #777777;
    border-left: 4px solid #EA5514;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.14);
    width: 100%;
    margin: 1em 0;
}

blockquote:before {
    display: inline-block;
    position: absolute;
    top: 5px;
    left: 3px;
    content: "“";
    font-family: sans-serif;
    color: #EA5514;
    font-size: 70px;
    line-height: 1;
}

blockquote p {
    padding: 0;
    margin: 7px 0;
    line-height: 1.7;
}

blockquote cite {
    display: block;
    text-align: right;
    color: #888888;
    font-size: 0.9em;
}